ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library) - Version 2.0.10

Version Description

Wordpress 4.9+

Download this release

Release Info

Developer ataurr
Plugin Icon wp plugin ElementsKit Elementor addons (Header Footer Builder, Mega Menu Builder, Free Elementor Widgets & Elementor Templates Library)
Version 2.0.10
Comparing to
See all releases

Code changes from version 1.5.10 to 2.0.10

Files changed (57) hide show
  1. autoloader.php +58 -62
  2. compatibility/backward/module-list.php +9 -0
  3. compatibility/backward/plugin-class-backward-compatibility.php +53 -0
  4. compatibility/backward/utils-backward-compablity.php +14 -0
  5. compatibility/backward/walker-nav-menu-backward-compatiblity.php +6 -0
  6. compatibility/backward/widget-list.php +9 -0
  7. compatibility/conflicts/init.php +55 -55
  8. compatibility/conflicts/scripts.php +74 -74
  9. compatibility/data-migration/translate-file.php +88 -0
  10. compatibility/wpml/init.php +662 -662
  11. compatibility/wpml/widgets/accordion.php +87 -87
  12. compatibility/wpml/widgets/advanced-accordion.php +79 -79
  13. compatibility/wpml/widgets/advanced-tab.php +87 -87
  14. compatibility/wpml/widgets/business-hours.php +87 -87
  15. compatibility/wpml/widgets/cat-list.php +79 -79
  16. compatibility/wpml/widgets/chart.php +79 -79
  17. compatibility/wpml/widgets/faq.php +87 -87
  18. compatibility/wpml/widgets/gallery.php +79 -79
  19. compatibility/wpml/widgets/header-info.php +79 -79
  20. compatibility/wpml/widgets/hotspot.php +87 -87
  21. compatibility/wpml/widgets/image-accordion.php +87 -87
  22. compatibility/wpml/widgets/page-list.php +87 -87
  23. compatibility/wpml/widgets/post-list.php +79 -79
  24. compatibility/wpml/widgets/pricing.php +79 -79
  25. compatibility/wpml/widgets/social-share.php +79 -79
  26. compatibility/wpml/widgets/social.php +79 -79
  27. compatibility/wpml/widgets/tab.php +87 -87
  28. compatibility/wpml/widgets/table.php +79 -79
  29. compatibility/wpml/widgets/testimonial.php +95 -95
  30. compatibility/wpml/widgets/timeline.php +111 -111
  31. config/module-list.php +124 -0
  32. config/widget-list.php +442 -0
  33. core.php +0 -393
  34. core/build-inline-scripts.php +52 -87
  35. core/build-modules.php +61 -97
  36. core/build-widgets.php +100 -128
  37. core/handler-api.php +38 -36
  38. core/handler-widget.php +55 -52
  39. core/hook-activation.php +0 -30
  40. elementskit-lite.php +386 -32
  41. handler.php +0 -257
  42. helpers/notice.php +0 -185
  43. helpers/utils.php +273 -289
  44. helpers/widget-list.php +442 -0
  45. languages/elementskit.pot +10469 -0
  46. libs/announcements/init.php +319 -0
  47. libs/announcements/views/template.php +148 -0
  48. libs/banner/init.php +257 -119
  49. libs/framework/assets/css/admin-global.css +1 -84
  50. libs/framework/assets/css/admin-lib.css +1 -0
  51. libs/framework/assets/css/admin-style-ems-dev.css +1 -172
  52. libs/framework/assets/css/admin-style.css +1 -140
  53. libs/framework/assets/css/bootstrap/bootstrap.css +0 -4216
  54. libs/framework/assets/css/bootstrap/utilities/_align.css +0 -17
  55. libs/framework/assets/css/bootstrap/utilities/_visibility.css +0 -5
  56. libs/framework/assets/css/customizer.css +0 -623
  57. libs/framework/assets/css/framework.css +1 -1
autoloader.php CHANGED
@@ -1,62 +1,58 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * ElementsKit autoloader.
8
- * Handles dynamically loading classes only when needed.
9
- *
10
- * @since 1.0.0
11
- */
12
- if(!class_exists('\ElementsKit\Autoloader')):
13
-
14
- class Autoloader {
15
-
16
- /**
17
- * Run autoloader.
18
- * Register a function as `__autoload()` implementation.
19
- *
20
- * @since 1.0.0
21
- * @access public
22
- */
23
- public static function run() {
24
- spl_autoload_register( [ __CLASS__, 'autoload' ] );
25
- }
26
-
27
- /**
28
- * Autoload.
29
- * For a given class, check if it exist and load it.
30
- *
31
- * @since 1.0.0
32
- * @access private
33
- * @param string $class Class name.
34
- */
35
- private static function autoload( $class_name ) {
36
-
37
- // If the class being requested does not start with our prefix
38
- // we know it's not one in our project.
39
- if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
40
- return;
41
- }
42
-
43
- $file_name = strtolower(
44
- preg_replace(
45
- [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
46
- [ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
47
- $class_name
48
- )
49
- );
50
-
51
- // Compile our path from the corosponding location.
52
- $file = trailingslashit(plugin_dir_path( __FILE__ )) . $file_name . '.php';
53
-
54
- // If a file is found.
55
- if ( file_exists( $file ) ) {
56
- // Then load it up!
57
- require_once( $file );
58
- }
59
- }
60
- }
61
-
62
- endif;
1
+ <?php
2
+ namespace ElementsKit_Lite;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * ElementsKit_Lite autoloader.
8
+ * Handles dynamically loading classes only when needed.
9
+ *
10
+ * @since 1.0.0
11
+ */
12
+ class Autoloader {
13
+
14
+ /**
15
+ * Run autoloader.
16
+ * Register a function as `__autoload()` implementation.
17
+ *
18
+ * @since 1.0.0
19
+ * @access public
20
+ */
21
+ public static function run() {
22
+ spl_autoload_register( [ __CLASS__, 'autoload' ] );
23
+ }
24
+
25
+ /**
26
+ * Autoload.
27
+ * For a given class, check if it exist and load it.
28
+ *
29
+ * @since 1.0.0
30
+ * @access private
31
+ * @param string $class Class name.
32
+ */
33
+ private static function autoload( $class_name ) {
34
+
35
+ // If the class being requested does not start with our prefix
36
+ // we know it's not one in our project.
37
+ if ( 0 !== strpos( $class_name, __NAMESPACE__ ) ) {
38
+ return;
39
+ }
40
+
41
+ $file_name = strtolower(
42
+ preg_replace(
43
+ [ '/\b'.__NAMESPACE__.'\\\/', '/([a-z])([A-Z])/', '/_/', '/\\\/' ],
44
+ [ '', '$1-$2', '-', DIRECTORY_SEPARATOR],
45
+ $class_name
46
+ )
47
+ );
48
+
49
+ // Compile our path from the corosponding location.
50
+ $file = \ElementsKit_Lite::plugin_dir() . $file_name . '.php';
51
+
52
+ // If a file is found.
53
+ if ( file_exists( $file ) ) {
54
+ // Then load it up!
55
+ require_once( $file );
56
+ }
57
+ }
58
+ }
 
 
 
 
compatibility/backward/module-list.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Module_List extends \ElementsKit_Lite\Config\Module_List{
8
+ //
9
+ }
compatibility/backward/plugin-class-backward-compatibility.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ if(!class_exists('ElementsKit')){
3
+ class ElementsKit{
4
+ // for backward compatibility
5
+
6
+ const VERSION = '1.5.9';
7
+
8
+ const PACKAGE_TYPE = 'pro';
9
+
10
+ const PRODUCT_ID = '9';
11
+
12
+ const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
13
+
14
+ const MINIMUM_PHP_VERSION = '5.6';
15
+
16
+ static function api_url(){
17
+ return 'https://api.wpmet.com/public/';
18
+ }
19
+
20
+ static function plugin_url(){
21
+ return trailingslashit(plugin_dir_url( __FILE__ ));
22
+ }
23
+
24
+ static function plugin_dir(){
25
+ return trailingslashit(plugin_dir_path( __FILE__ ));
26
+ }
27
+
28
+ static function widget_dir(){
29
+ return self::plugin_dir() . 'widgets/';
30
+ }
31
+
32
+ static function widget_url(){
33
+ return self::plugin_url() . 'widgets/';
34
+ }
35
+
36
+ static function module_dir(){
37
+ return self::plugin_dir() . 'modules/';
38
+ }
39
+
40
+ static function module_url(){
41
+ return self::plugin_url() . 'modules/';
42
+ }
43
+
44
+ static function lib_dir(){
45
+ return self::plugin_dir() . 'libs/';
46
+ }
47
+
48
+ static function lib_url(){
49
+ return self::plugin_url() . 'libs/';
50
+ }
51
+
52
+ }
53
+ }
compatibility/backward/utils-backward-compablity.php ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Global helper class.
8
+ *
9
+ * @since 1.0.0
10
+ */
11
+
12
+ class Utils extends \ElementsKit_Lite\Utils {
13
+ //
14
+ }
compatibility/backward/walker-nav-menu-backward-compatiblity.php ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
1
+ <?php
2
+ namespace ElementsKit;
3
+
4
+ class Elementskit_Menu_Walker extends \ElementsKit_Lite\ElementsKit_Menu_Walker{
5
+ //
6
+ }
compatibility/backward/widget-list.php ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Widget_List extends \ElementsKit_Lite\Config\Widget_List{
8
+ //
9
+ }
compatibility/conflicts/init.php CHANGED
@@ -1,56 +1,56 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\Conflicts;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Init {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
- Scripts::instance();
53
- }
54
-
55
-
56
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Init {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+ Scripts::instance();
53
+ }
54
+
55
+
56
  }
compatibility/conflicts/scripts.php CHANGED
@@ -1,75 +1,75 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\Conflicts;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Scripts {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
-
53
- add_action( 'admin_enqueue_scripts', [$this, 'deregister_from_admin'] );
54
-
55
- }
56
-
57
-
58
- /**
59
- * Conflicted script deregister function
60
- *
61
- * @since 1.2.6
62
- * @access public
63
- */
64
- public function deregister_from_admin(){
65
-
66
- $screen = get_current_screen();
67
-
68
- if( in_array( $screen->id, ['edit-elementskit_template', 'toplevel_page_elementskit', 'elementskit_page_elementskit-license', 'nav-menus'] ) ){
69
- wp_deregister_script('wpsp_wp_admin_jquery2');
70
- }
71
-
72
- }
73
-
74
-
75
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Scripts {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+
53
+ add_action( 'admin_enqueue_scripts', [$this, 'deregister_from_admin'] );
54
+
55
+ }
56
+
57
+
58
+ /**
59
+ * Conflicted script deregister function
60
+ *
61
+ * @since 1.2.6
62
+ * @access public
63
+ */
64
+ public function deregister_from_admin(){
65
+
66
+ $screen = get_current_screen();
67
+
68
+ if( in_array( $screen->id, ['edit-elementskit_template', 'toplevel_page_elementskit', 'elementskit_page_elementskit-license', 'nav-menus'] ) ){
69
+ wp_deregister_script('wpsp_wp_admin_jquery2');
70
+ }
71
+
72
+ }
73
+
74
+
75
  }
compatibility/data-migration/translate-file.php ADDED
@@ -0,0 +1,88 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Compatibility\Data_Migration;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Translate_File {
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+ private $OK_Translate_File = 'ekit_translate_file_checked';
12
+
13
+ public static function load_filesystem() {
14
+
15
+ require_once ABSPATH .'wp-admin/includes/file.php';
16
+
17
+ WP_Filesystem();
18
+ }
19
+
20
+ public function init() {
21
+
22
+ $option = get_option($this->OK_Translate_File, 'no');
23
+
24
+ if($option == 'no') {
25
+
26
+ self::load_filesystem();
27
+
28
+ global $wp_filesystem;
29
+
30
+
31
+ $the_dir = WP_LANG_DIR.'/plugins/';
32
+ $files = $wp_filesystem->dirlist($the_dir);
33
+
34
+ $o_dom = 'elementskit-';
35
+ $n_dom = 'elementskit-lite-';
36
+
37
+
38
+ $file_pattern = 'elementskit-';
39
+ $ln = strlen($file_pattern);
40
+ $invalid_pattern = '/elementskit\-.+\-.+/';
41
+
42
+ if(!empty($files)) {
43
+ foreach($files as $file) {
44
+
45
+ $nm = $file['name'];
46
+
47
+ $dbg['cont']['pahase0'][] = 9;
48
+
49
+ /**
50
+ * Checking if file name is started with elementskit-
51
+ */
52
+ if(substr($nm, 0, $ln) == $file_pattern) {
53
+
54
+ /**
55
+ * Checking if file name is like this pattern elementskit-blabla-
56
+ * If so we will not process it
57
+ *
58
+ */
59
+ if(preg_match($invalid_pattern, $nm)) {
60
+
61
+ continue;
62
+ }
63
+
64
+ /**
65
+ * Preparing a new name for the file
66
+ * and copying it i the same directory
67
+ *
68
+ */
69
+ $new_name = str_replace($o_dom, $n_dom, $nm);
70
+ $wp_filesystem->copy($the_dir.$nm, $the_dir.$new_name, true);
71
+ }
72
+ }
73
+ }
74
+
75
+
76
+ /**
77
+ * As we have copied all the files
78
+ * we do not want to run this every time
79
+ * so we are updating the flag in wordpress option
80
+ */
81
+
82
+ update_option($this->OK_Translate_File, 'yes');
83
+
84
+ }
85
+
86
+ return true;
87
+ }
88
+ }
compatibility/wpml/init.php CHANGED
@@ -1,663 +1,663 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\Wpml;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * Init
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.2.6
12
- */
13
- class Init {
14
-
15
- /**
16
- * Member Variable
17
- *
18
- * @var instance
19
- */
20
- private static $instance;
21
-
22
-
23
- /**
24
- * Instance.
25
- *
26
- * Ensures only one instance of the plugin class is loaded or can be loaded.
27
- *
28
- * @since 1.2.6
29
- * @access public
30
- * @static
31
- *
32
- * @return Init An instance of the class.
33
- */
34
- public static function instance() {
35
- if ( is_null( self::$instance ) ) {
36
-
37
- // Fire when ElementsKit instance.
38
- self::$instance = new self();
39
- }
40
-
41
- return self::$instance;
42
- }
43
-
44
-
45
- /**
46
- * Construct the plugin object.
47
- *
48
- * @since 1.2.6
49
- * @access public
50
- */
51
- public function __construct() {
52
- // WPML String Translation plugin exist check.
53
- if ( self::is_wpml_active() ) {
54
-
55
- $this->includes();
56
-
57
- add_filter( 'wpml_elementor_widgets_to_translate', [ $this, 'translatable_widgets' ] );
58
- }
59
- }
60
-
61
-
62
- /**
63
- * WPML String Translation plugin active check
64
- *
65
- * @since 1.2.6
66
- * @access public
67
- */
68
- public static function is_wpml_active() {
69
-
70
- include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
71
-
72
- $wpml_active = is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' );
73
-
74
- $string_translation_active = is_plugin_active( 'wpml-string-translation/plugin.php' );
75
-
76
- return $wpml_active && $string_translation_active;
77
-
78
- }
79
-
80
-
81
- /**
82
- * includes
83
- *
84
- * Integrations class for complex widgets.
85
- *
86
- * @since 1.2.6
87
- * @access public
88
- */
89
- public function includes() {
90
-
91
- include_once( 'widgets/image-accordion.php' );
92
- include_once( 'widgets/accordion.php' );
93
- include_once( 'widgets/faq.php' );
94
- include_once( 'widgets/testimonial.php' );
95
- include_once( 'widgets/pricing.php' );
96
- include_once( 'widgets/social.php' );
97
- include_once( 'widgets/tab.php' );
98
- include_once( 'widgets/business-hours.php' );
99
- include_once( 'widgets/social-share.php' );
100
- include_once( 'widgets/advanced-accordion.php' );
101
- include_once( 'widgets/advanced-tab.php' );
102
- include_once( 'widgets/hotspot.php' );
103
- include_once( 'widgets/gallery.php' );
104
- include_once( 'widgets/chart.php' );
105
- include_once( 'widgets/table.php' );
106
- include_once( 'widgets/timeline.php' );
107
- include_once( 'widgets/cat-list.php' );
108
- include_once( 'widgets/page-list.php' );
109
- include_once( 'widgets/post-list.php' );
110
- include_once( 'widgets/header-info.php' );
111
-
112
- }
113
-
114
-
115
- /**
116
- * Widgets to translate
117
- *
118
- * @since 1.2.6
119
- * @param array $widgets Widget array.
120
- * @return array
121
- */
122
- function translatable_widgets( $widgets ) {
123
-
124
- $widgets['elementskit-image-accordion'] = [
125
- 'conditions' => [ 'widgetType' => 'elementskit-image-accordion' ],
126
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Image_Accordion',
127
- ];
128
-
129
- $widgets['elementskit-accordion'] = [
130
- 'conditions' => [ 'widgetType' => 'elementskit-accordion' ],
131
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Accordion',
132
- ];
133
-
134
- $widgets['elementskit-button'] = [
135
- 'conditions' => [ 'widgetType' => 'elementskit-button' ],
136
- 'fields' => [
137
- [
138
- 'field' => 'ekit_btn_text',
139
- 'type' => esc_html__( 'Label (Button)', 'elementskit' ),
140
- 'editor_type' => 'LINE',
141
- ],
142
- ],
143
- ];
144
-
145
- $widgets['elementskit-heading'] = [
146
- 'conditions' => [ 'widgetType' => 'elementskit-heading' ],
147
- 'fields' => [
148
- [
149
- 'field' => 'ekit_heading_title',
150
- 'type' => esc_html__( 'Title (Heading)', 'elementskit' ),
151
- 'editor_type' => 'LINE',
152
- ],
153
- [
154
- 'field' => 'ekit_heading_sub_title',
155
- 'type' => esc_html__( 'Sub Title (Heading)', 'elementskit' ),
156
- 'editor_type' => 'LINE',
157
- ],
158
- [
159
- 'field' => 'ekit_heading_extra_title',
160
- 'type' => esc_html__( 'Description (Heading)', 'elementskit' ),
161
- 'editor_type' => 'VISUAL',
162
- ],
163
- ],
164
- ];
165
-
166
- $widgets['elementskit-icon-box'] = [
167
- 'conditions' => [ 'widgetType' => 'elementskit-icon-box' ],
168
- 'fields' => [
169
- [
170
- 'field' => 'ekit_icon_box_title_text',
171
- 'type' => esc_html__( 'Title (Icon Box)', 'elementskit' ),
172
- 'editor_type' => 'LINE',
173
- ],
174
- [
175
- 'field' => 'ekit_icon_box_description_text',
176
- 'type' => esc_html__( 'Content (Icon Box)', 'elementskit' ),
177
- 'editor_type' => 'AREA',
178
- ],
179
- [
180
- 'field' => 'ekit_icon_box_btn_text',
181
- 'type' => esc_html__( 'Button Label (Icon Box)', 'elementskit' ),
182
- 'editor_type' => 'LINE',
183
- ],
184
- [
185
- 'field' => 'ekit_icon_box_badge_title',
186
- 'type' => esc_html__( 'Badge Text (Icon Box)', 'elementskit' ),
187
- 'editor_type' => 'LINE',
188
- ],
189
- ],
190
- ];
191
-
192
- $widgets['elementskit-image-box'] = [
193
- 'conditions' => [ 'widgetType' => 'elementskit-image-box' ],
194
- 'fields' => [
195
- [
196
- 'field' => 'ekit_image_box_title_text',
197
- 'type' => esc_html__( 'Title (Image Box)', 'elementskit' ),
198
- 'editor_type' => 'LINE',
199
- ],
200
- [
201
- 'field' => 'ekit_image_box_description_text',
202
- 'type' => esc_html__( 'Description (Image Box)', 'elementskit' ),
203
- 'editor_type' => 'AREA',
204
- ],
205
- [
206
- 'field' => 'ekit_image_box_btn_text',
207
- 'type' => esc_html__( 'Button Label (Image Box)', 'elementskit' ),
208
- 'editor_type' => 'LINE',
209
- ],
210
- ],
211
- ];
212
-
213
- $widgets['elementskit-countdown-timer'] = [
214
- 'conditions' => [ 'widgetType' => 'elementskit-countdown-timer' ],
215
- 'fields' => [
216
- [
217
- 'field' => 'ekit_countdown_timer_weeks_label',
218
- 'type' => esc_html__( 'Weeks (Countdown Timer)', 'elementskit' ),
219
- 'editor_type' => 'LINE',
220
- ],
221
- [
222
- 'field' => 'ekit_countdown_timer_days_label',
223
- 'type' => esc_html__( 'Days (Countdown Timer)', 'elementskit' ),
224
- 'editor_type' => 'LINE',
225
- ],
226
- [
227
- 'field' => 'ekit_countdown_timer_hours_label',
228
- 'type' => esc_html__( 'Hours (Countdown Timer)', 'elementskit' ),
229
- 'editor_type' => 'LINE',
230
- ],
231
- [
232
- 'field' => 'ekit_countdown_timer_minutes_hours_label',
233
- 'type' => esc_html__( 'Minutes (Countdown Timer)', 'elementskit' ),
234
- 'editor_type' => 'LINE',
235
- ],
236
- [
237
- 'field' => 'ekit_countdown_timer_seconds_hours_label',
238
- 'type' => esc_html__( 'Seconds (Countdown Timer)', 'elementskit' ),
239
- 'editor_type' => 'LINE',
240
- ],
241
- [
242
- 'field' => 'ekit_countdown_timer_title',
243
- 'type' => esc_html__( 'On Expiry Title (Countdown Timer)', 'elementskit' ),
244
- 'editor_type' => 'AREA',
245
- ],
246
- [
247
- 'field' => 'ekit_countdown_timer_expiry_content',
248
- 'type' => esc_html__( 'On Expiry Content (Countdown Timer)', 'elementskit' ),
249
- 'editor_type' => 'AREA',
250
- ],
251
- ],
252
- ];
253
-
254
- $widgets['elementskit-faq'] = [
255
- 'conditions' => [ 'widgetType' => 'elementskit-faq' ],
256
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Faq',
257
- ];
258
-
259
- $widgets['elementskit-funfact'] = [
260
- 'conditions' => [ 'widgetType' => 'elementskit-funfact' ],
261
- 'fields' => [
262
- [
263
- 'field' => 'ekit_funfact_number_suffix',
264
- 'type' => esc_html__( 'Number Suffix (Funfact)', 'elementskit' ),
265
- 'editor_type' => 'LINE',
266
- ],
267
- [
268
- 'field' => 'ekit_funfact_title_text',
269
- 'type' => esc_html__( 'Title (Funfact)', 'elementskit' ),
270
- 'editor_type' => 'LINE',
271
- ],
272
- [
273
- 'field' => 'ekit_funfact_super_text',
274
- 'type' => esc_html__( 'Super (Funfact)', 'elementskit' ),
275
- 'editor_type' => 'LINE',
276
- ],
277
- ],
278
- ];
279
-
280
- $widgets['elementskit-image-comparison'] = [
281
- 'conditions' => [ 'widgetType' => 'elementskit-image-comparison' ],
282
- 'fields' => [
283
- [
284
- 'field' => 'ekit_img_comparison_label_before',
285
- 'type' => esc_html__( 'Before Label (Image Comparison)', 'elementskit' ),
286
- 'editor_type' => 'LINE',
287
- ],
288
- [
289
- 'field' => 'ekit_img_comparison_label_after',
290
- 'type' => esc_html__( 'After Label (Image Comparison)', 'elementskit' ),
291
- 'editor_type' => 'LINE',
292
- ],
293
- ],
294
- ];
295
-
296
- $widgets['elementskit-testimonial'] = [
297
- 'conditions' => [ 'widgetType' => 'elementskit-testimonial' ],
298
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Testimonial',
299
- ];
300
-
301
- $widgets['elementskit-pricing'] = [
302
- 'conditions' => [ 'widgetType' => 'elementskit-pricing' ],
303
- 'fields' => [
304
- [
305
- 'field' => 'ekit_pricing_table_title',
306
- 'type' => esc_html__( 'Table Title (Pricing Table)', 'elementskit' ),
307
- 'editor_type' => 'LINE',
308
- ],
309
- [
310
- 'field' => 'ekit_pricing_table_subtitle',
311
- 'type' => esc_html__( 'Table Subtitle (Pricing Table)', 'elementskit' ),
312
- 'editor_type' => 'AREA',
313
- ],
314
- [
315
- 'field' => 'ekit_pricing_currency_icon',
316
- 'type' => esc_html__( 'Currency (Pricing Table)', 'elementskit' ),
317
- 'editor_type' => 'LINE',
318
- ],
319
- [
320
- 'field' => 'ekit_pricing_table_price', // Doesn't work for numbers
321
- 'type' => esc_html__( 'Price (Pricing Table)', 'elementskit' ),
322
- 'editor_type' => 'LINE',
323
- ],
324
- [
325
- 'field' => 'ekit_pricing_table_duration',
326
- 'type' => esc_html__( 'Duration (Pricing Table)', 'elementskit' ),
327
- 'editor_type' => 'LINE',
328
- ],
329
- [
330
- 'field' => 'ekit_pricing_table_content',
331
- 'type' => esc_html__( 'Table Content (Pricing Table)', 'elementskit' ),
332
- 'editor_type' => 'AREA',
333
- ],
334
- [
335
- 'field' => 'ekit_pricing_btn_text',
336
- 'type' => esc_html__( 'Button Label (Pricing Table)', 'elementskit' ),
337
- 'editor_type' => 'LINE',
338
- ],
339
- ],
340
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Pricing',
341
- ];
342
-
343
- $widgets['elementskit-team'] = [
344
- 'conditions' => [ 'widgetType' => 'elementskit-team' ],
345
- 'fields' => [
346
- [
347
- 'field' => 'ekit_team_name',
348
- 'type' => esc_html__( 'Member Name (Team)', 'elementskit' ),
349
- 'editor_type' => 'LINE',
350
- ],
351
- [
352
- 'field' => 'ekit_team_position',
353
- 'type' => esc_html__( 'Member Position (Team)', 'elementskit' ),
354
- 'editor_type' => 'LINE',
355
- ],
356
- [
357
- 'field' => 'ekit_team_short_description',
358
- 'type' => esc_html__( 'Short Description (Team)', 'elementskit' ),
359
- 'editor_type' => 'AREA',
360
- ],
361
- [
362
- 'field' => 'ekit_team_description',
363
- 'type' => esc_html__( 'Popup Description (Team)', 'elementskit' ),
364
- 'editor_type' => 'AREA',
365
- ],
366
- [
367
- 'field' => 'ekit_team_phone',
368
- 'type' => esc_html__( 'Phone (Team)', 'elementskit' ),
369
- 'editor_type' => 'LINE',
370
- ],
371
- [
372
- 'field' => 'ekit_team_email',
373
- 'type' => esc_html__( 'Email (Team)', 'elementskit' ),
374
- 'editor_type' => 'LINE',
375
- ],
376
- ],
377
- ];
378
-
379
- $widgets['elementskit-social-media'] = [
380
- 'conditions' => [ 'widgetType' => 'elementskit-social-media' ],
381
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Social',
382
- ];
383
-
384
- $widgets['elementskit-progressbar'] = [
385
- 'conditions' => [ 'widgetType' => 'elementskit-progressbar' ],
386
- 'fields' => [
387
- [
388
- 'field' => 'ekit_progressbar_title',
389
- 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit' ),
390
- 'editor_type' => 'LINE',
391
- ],
392
- ],
393
- ];
394
-
395
- $widgets['elementskit-mail-chimp'] = [
396
- 'conditions' => [ 'widgetType' => 'elementskit-mail-chimp' ],
397
- 'fields' => [
398
- [
399
- 'field' => 'ekit_mail_chimp_first_name_label',
400
- 'type' => esc_html__( 'First Name (Mail Chimp)', 'elementskit' ),
401
- 'editor_type' => 'LINE',
402
- ],
403
- [
404
- 'field' => 'ekit_mail_chimp_first_name_placeholder',
405
- 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit' ),
406
- 'editor_type' => 'LINE',
407
- ],
408
- [
409
- 'field' => 'ekit_mail_chimp_last_name_label',
410
- 'type' => esc_html__( 'Last Name (Mail Chimp)', 'elementskit' ),
411
- 'editor_type' => 'LINE',
412
- ],
413
- [
414
- 'field' => 'ekit_mail_chimp_last_name_placeholder',
415
- 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit' ),
416
- 'editor_type' => 'LINE',
417
- ],
418
- [
419
- 'field' => 'ekit_mail_chimp_phone_label',
420
- 'type' => esc_html__( 'Phone (Mail Chimp)', 'elementskit' ),
421
- 'editor_type' => 'LINE',
422
- ],
423
- [
424
- 'field' => 'ekit_mail_chimp_phone_placeholder',
425
- 'type' => esc_html__( 'Phone Placeholder (Mail Chimp)', 'elementskit' ),
426
- 'editor_type' => 'LINE',
427
- ],
428
- [
429
- 'field' => 'ekit_mail_chimp_email_address_label',
430
- 'type' => esc_html__( 'Email (Mail Chimp)', 'elementskit' ),
431
- 'editor_type' => 'LINE',
432
- ],
433
- [
434
- 'field' => 'ekit_mail_chimp_email_address_placeholder',
435
- 'type' => esc_html__( 'Email Placeholder (Mail Chimp)', 'elementskit' ),
436
- 'editor_type' => 'LINE',
437
- ],
438
- [
439
- 'field' => 'ekit_mail_chimp_submit',
440
- 'type' => esc_html__( 'Submit Button Text (Mail Chimp)', 'elementskit' ),
441
- 'editor_type' => 'LINE',
442
- ],
443
- [
444
- 'field' => 'ekit_mail_chimp_success_message',
445
- 'type' => esc_html__( 'Success Message (Mail Chimp)', 'elementskit' ),
446
- 'editor_type' => 'AREA',
447
- ],
448
- ],
449
- ];
450
-
451
- $widgets['elementskit-piechart'] = [
452
- 'conditions' => [ 'widgetType' => 'elementskit-piechart' ],
453
- 'fields' => [
454
- [
455
- 'field' => 'ekit_piechart_title',
456
- 'type' => esc_html__( 'Title (Pie Chart)', 'elementskit' ),
457
- 'editor_type' => 'LINE',
458
- ],
459
- [
460
- 'field' => 'ekit_piechart_item_description',
461
- 'type' => esc_html__( 'Description (Pie Chart)', 'elementskit' ),
462
- 'editor_type' => 'LINE',
463
- ],
464
- ],
465
- ];
466
-
467
- $widgets['elementskit-simple-tab'] = [
468
- 'conditions' => [ 'widgetType' => 'elementskit-simple-tab' ],
469
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Tab',
470
- ];
471
-
472
- $widgets['elementskit-video'] = [
473
- 'conditions' => [ 'widgetType' => 'elementskit-video' ],
474
- 'fields' => [
475
- [
476
- 'field' => 'ekit_video_popup_button_title',
477
- 'type' => esc_html__( 'Button Title (Video)', 'elementskit' ),
478
- 'editor_type' => 'LINE',
479
- ],
480
- ],
481
- ];
482
-
483
- $widgets['elementskit-business-hours'] = [
484
- 'conditions' => [ 'widgetType' => 'elementskit-business-hours' ],
485
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Business_Hours',
486
- ];
487
-
488
- $widgets['elementskit-drop-caps'] = [
489
- 'conditions' => [ 'widgetType' => 'elementskit-drop-caps' ],
490
- 'fields' => [
491
- [
492
- 'field' => 'ekit_dropcaps_text',
493
- 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit' ),
494
- 'editor_type' => 'AREA',
495
- ],
496
- ],
497
- ];
498
-
499
- $widgets['elementskit-social-share'] = [
500
- 'conditions' => [ 'widgetType' => 'elementskit-social-share' ],
501
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Social_Share',
502
- ];
503
-
504
- $widgets['elementskit-advance-accordion'] = [
505
- 'conditions' => [ 'widgetType' => 'elementskit-advance-accordion' ],
506
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Advanced_Accordion',
507
- ];
508
-
509
- $widgets['elementskit-tab'] = [
510
- 'conditions' => [ 'widgetType' => 'elementskit-tab' ],
511
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Advanced_Tab',
512
- ];
513
-
514
- $widgets['elementskit-hotspot'] = [
515
- 'conditions' => [ 'widgetType' => 'elementskit-hotspot' ],
516
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Hotspot',
517
- ];
518
-
519
- $widgets['elementskit-motion-text'] = [
520
- 'conditions' => [ 'widgetType' => 'elementskit-motion-text' ],
521
- 'fields' => [
522
- [
523
- 'field' => 'ekit_motion_text_content_text',
524
- 'type' => esc_html__( 'Title (Motion Text)', 'elementskit' ),
525
- 'editor_type' => 'AREA',
526
- ],
527
- ],
528
- ];
529
-
530
- $widgets['elementskit-twitter-feed'] = [
531
- 'conditions' => [ 'widgetType' => 'elementskit-twitter-feed' ],
532
- 'fields' => [
533
- [
534
- 'field' => 'ekit_twitter_follow_btn_text',
535
- 'type' => esc_html__( 'Label (Twitter)', 'elementskit' ),
536
- 'editor_type' => 'LINE',
537
- ],
538
- ],
539
- ];
540
-
541
- $widgets['elementskit-instagram-feed'] = [
542
- 'conditions' => [ 'widgetType' => 'elementskit-instagram-feed' ],
543
- 'fields' => [
544
- [
545
- 'field' => 'ekit_instagram_feed_ins_follow_text',
546
- 'type' => esc_html__( 'Follow Button Text (Instagram Feed)', 'elementskit' ),
547
- 'editor_type' => 'LINE',
548
- ],
549
- ],
550
- ];
551
-
552
- $widgets['elementskit-gallery'] = [
553
- 'conditions' => [ 'widgetType' => 'elementskit-gallery' ],
554
- 'fields' => [
555
- [
556
- 'field' => 'ekit_gallery_filter_all_label',
557
- 'type' => esc_html__( '"All" Filter Label (Gallery)', 'elementskit' ),
558
- 'editor_type' => 'LINE',
559
- ],
560
- ],
561
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Gallery',
562
- ];
563
-
564
- $widgets['elementskit-chart'] = [
565
- 'conditions' => [ 'widgetType' => 'elementskit-chart' ],
566
- 'fields' => [
567
- [
568
- 'field' => 'ekit_charts_title_text',
569
- 'type' => esc_html__( 'Title (Chart)', 'elementskit' ),
570
- 'editor_type' => 'LINE',
571
- ],
572
- ],
573
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Chart',
574
- ];
575
-
576
- $widgets['elementskit-table'] = [
577
- 'conditions' => [ 'widgetType' => 'elementskit-table' ],
578
- 'fields' => [
579
- [
580
- 'field' => 'ekit_table_navigation_prev_text',
581
- 'type' => esc_html__( 'Prev Text (Table)', 'elementskit' ),
582
- 'editor_type' => 'LINE',
583
- ],
584
- [
585
- 'field' => 'ekit_table_navigation_next_text',
586
- 'type' => esc_html__( 'Next Text (Table)', 'elementskit' ),
587
- 'editor_type' => 'LINE',
588
- ],
589
- ],
590
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Table',
591
- ];
592
-
593
- $widgets['elementskit-timeline'] = [
594
- 'conditions' => [ 'widgetType' => 'elementskit-timeline' ],
595
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Timeline',
596
- ];
597
-
598
- $widgets['elementskit-dual-button'] = [
599
- 'conditions' => [ 'widgetType' => 'elementskit-dual-button' ],
600
- 'fields' => [
601
- [
602
- 'field' => 'ekit_button_middle_text',
603
- 'type' => esc_html__( 'Middle Text (Dual Button)', 'elementskit' ),
604
- 'editor_type' => 'LINE',
605
- ],
606
- [
607
- 'field' => 'ekit_button_one_text',
608
- 'type' => esc_html__( 'Button One Text (Dual Button)', 'elementskit' ),
609
- 'editor_type' => 'LINE',
610
- ],
611
- [
612
- 'field' => 'ekit_button_two_text',
613
- 'type' => esc_html__( 'Button Two Text (Dual Button)', 'elementskit' ),
614
- 'editor_type' => 'LINE',
615
- ],
616
- ],
617
- ];
618
-
619
- $widgets['elementskit-creative-button'] = [
620
- 'conditions' => [ 'widgetType' => 'elementskit-creative-button' ],
621
- 'fields' => [
622
- [
623
- 'field' => 'ekit_btn_text',
624
- 'type' => esc_html__( 'Label (Creative Button)', 'elementskit' ),
625
- 'editor_type' => 'LINE',
626
- ],
627
- ],
628
- ];
629
-
630
- $widgets['elementskit-category-list'] = [
631
- 'conditions' => [ 'widgetType' => 'elementskit-category-list' ],
632
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Cat_List',
633
- ];
634
-
635
- $widgets['elementskit-page-list'] = [
636
- 'conditions' => [ 'widgetType' => 'elementskit-page-list' ],
637
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Page_List',
638
- ];
639
-
640
- $widgets['elementskit-post-list'] = [
641
- 'conditions' => [ 'widgetType' => 'elementskit-post-list' ],
642
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Post_List',
643
- ];
644
-
645
- $widgets['elementskit-header-info'] = [
646
- 'conditions' => [ 'widgetType' => 'elementskit-header-info' ],
647
- 'integration-class' => 'ElementsKit\Compatibility\WPML\Widgets\Ekit_Header_Info',
648
- ];
649
-
650
- $widgets['elementskit-header-search'] = [
651
- 'conditions' => [ 'widgetType' => 'elementskit-header-search' ],
652
- 'fields' => [
653
- [
654
- 'field' => 'ekit_search_placeholder_text',
655
- 'type' => esc_html__( 'Placeholder Text (Header Search)', 'elementskit' ),
656
- 'editor_type' => 'LINE',
657
- ],
658
- ],
659
- ];
660
-
661
- return $widgets;
662
- }
663
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\Wpml;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+
7
+ /**
8
+ * Init
9
+ * Initiate all necessary classes, hooks, configs.
10
+ *
11
+ * @since 1.2.6
12
+ */
13
+ class Init {
14
+
15
+ /**
16
+ * Member Variable
17
+ *
18
+ * @var instance
19
+ */
20
+ private static $instance;
21
+
22
+
23
+ /**
24
+ * Instance.
25
+ *
26
+ * Ensures only one instance of the plugin class is loaded or can be loaded.
27
+ *
28
+ * @since 1.2.6
29
+ * @access public
30
+ * @static
31
+ *
32
+ * @return Init An instance of the class.
33
+ */
34
+ public static function instance() {
35
+ if ( is_null( self::$instance ) ) {
36
+
37
+ // Fire when ElementsKit_Lite instance.
38
+ self::$instance = new self();
39
+ }
40
+
41
+ return self::$instance;
42
+ }
43
+
44
+
45
+ /**
46
+ * Construct the plugin object.
47
+ *
48
+ * @since 1.2.6
49
+ * @access public
50
+ */
51
+ public function __construct() {
52
+ // WPML String Translation plugin exist check.
53
+ if ( self::is_wpml_active() ) {
54
+
55
+ $this->includes();
56
+
57
+ add_filter( 'wpml_elementor_widgets_to_translate', [ $this, 'translatable_widgets' ] );
58
+ }
59
+ }
60
+
61
+
62
+ /**
63
+ * WPML String Translation plugin active check
64
+ *
65
+ * @since 1.2.6
66
+ * @access public
67
+ */
68
+ public static function is_wpml_active() {
69
+
70
+ include_once( ABSPATH . 'wp-admin/includes/plugin.php' );
71
+
72
+ $wpml_active = is_plugin_active( 'sitepress-multilingual-cms/sitepress.php' );
73
+
74
+ $string_translation_active = is_plugin_active( 'wpml-string-translation/plugin.php' );
75
+
76
+ return $wpml_active && $string_translation_active;
77
+
78
+ }
79
+
80
+
81
+ /**
82
+ * includes
83
+ *
84
+ * Integrations class for complex widgets.
85
+ *
86
+ * @since 1.2.6
87
+ * @access public
88
+ */
89
+ public function includes() {
90
+
91
+ include_once( 'widgets/image-accordion.php' );
92
+ include_once( 'widgets/accordion.php' );
93
+ include_once( 'widgets/faq.php' );
94
+ include_once( 'widgets/testimonial.php' );
95
+ include_once( 'widgets/pricing.php' );
96
+ include_once( 'widgets/social.php' );
97
+ include_once( 'widgets/tab.php' );
98
+ include_once( 'widgets/business-hours.php' );
99
+ include_once( 'widgets/social-share.php' );
100
+ include_once( 'widgets/advanced-accordion.php' );
101
+ include_once( 'widgets/advanced-tab.php' );
102
+ include_once( 'widgets/hotspot.php' );
103
+ include_once( 'widgets/gallery.php' );
104
+ include_once( 'widgets/chart.php' );
105
+ include_once( 'widgets/table.php' );
106
+ include_once( 'widgets/timeline.php' );
107
+ include_once( 'widgets/cat-list.php' );
108
+ include_once( 'widgets/page-list.php' );
109
+ include_once( 'widgets/post-list.php' );
110
+ include_once( 'widgets/header-info.php' );
111
+
112
+ }
113
+
114
+
115
+ /**
116
+ * Widgets to translate
117
+ *
118
+ * @since 1.2.6
119
+ * @param array $widgets Widget array.
120
+ * @return array
121
+ */
122
+ function translatable_widgets( $widgets ) {
123
+
124
+ $widgets['elementskit-image-accordion'] = [
125
+ 'conditions' => [ 'widgetType' => 'elementskit-image-accordion' ],
126
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Image_Accordion',
127
+ ];
128
+
129
+ $widgets['elementskit-accordion'] = [
130
+ 'conditions' => [ 'widgetType' => 'elementskit-accordion' ],
131
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Accordion',
132
+ ];
133
+
134
+ $widgets['elementskit-button'] = [
135
+ 'conditions' => [ 'widgetType' => 'elementskit-button' ],
136
+ 'fields' => [
137
+ [
138
+ 'field' => 'ekit_btn_text',
139
+ 'type' => esc_html__( 'Label (Button)', 'elementskit-lite' ),
140
+ 'editor_type' => 'LINE',
141
+ ],
142
+ ],
143
+ ];
144
+
145
+ $widgets['elementskit-heading'] = [
146
+ 'conditions' => [ 'widgetType' => 'elementskit-heading' ],
147
+ 'fields' => [
148
+ [
149
+ 'field' => 'ekit_heading_title',
150
+ 'type' => esc_html__( 'Title (Heading)', 'elementskit-lite' ),
151
+ 'editor_type' => 'LINE',
152
+ ],
153
+ [
154
+ 'field' => 'ekit_heading_sub_title',
155
+ 'type' => esc_html__( 'Sub Title (Heading)', 'elementskit-lite' ),
156
+ 'editor_type' => 'LINE',
157
+ ],
158
+ [
159
+ 'field' => 'ekit_heading_extra_title',
160
+ 'type' => esc_html__( 'Description (Heading)', 'elementskit-lite' ),
161
+ 'editor_type' => 'VISUAL',
162
+ ],
163
+ ],
164
+ ];
165
+
166
+ $widgets['elementskit-icon-box'] = [
167
+ 'conditions' => [ 'widgetType' => 'elementskit-icon-box' ],
168
+ 'fields' => [
169
+ [
170
+ 'field' => 'ekit_icon_box_title_text',
171
+ 'type' => esc_html__( 'Title (Icon Box)', 'elementskit-lite' ),
172
+ 'editor_type' => 'LINE',
173
+ ],
174
+ [
175
+ 'field' => 'ekit_icon_box_description_text',
176
+ 'type' => esc_html__( 'Content (Icon Box)', 'elementskit-lite' ),
177
+ 'editor_type' => 'AREA',
178
+ ],
179
+ [
180
+ 'field' => 'ekit_icon_box_btn_text',
181
+ 'type' => esc_html__( 'Button Label (Icon Box)', 'elementskit-lite' ),
182
+ 'editor_type' => 'LINE',
183
+ ],
184
+ [
185
+ 'field' => 'ekit_icon_box_badge_title',
186
+ 'type' => esc_html__( 'Badge Text (Icon Box)', 'elementskit-lite' ),
187
+ 'editor_type' => 'LINE',
188
+ ],
189
+ ],
190
+ ];
191
+
192
+ $widgets['elementskit-image-box'] = [
193
+ 'conditions' => [ 'widgetType' => 'elementskit-image-box' ],
194
+ 'fields' => [
195
+ [
196
+ 'field' => 'ekit_image_box_title_text',
197
+ 'type' => esc_html__( 'Title (Image Box)', 'elementskit-lite' ),
198
+ 'editor_type' => 'LINE',
199
+ ],
200
+ [
201
+ 'field' => 'ekit_image_box_description_text',
202
+ 'type' => esc_html__( 'Description (Image Box)', 'elementskit-lite' ),
203
+ 'editor_type' => 'AREA',
204
+ ],
205
+ [
206
+ 'field' => 'ekit_image_box_btn_text',
207
+ 'type' => esc_html__( 'Button Label (Image Box)', 'elementskit-lite' ),
208
+ 'editor_type' => 'LINE',
209
+ ],
210
+ ],
211
+ ];
212
+
213
+ $widgets['elementskit-countdown-timer'] = [
214
+ 'conditions' => [ 'widgetType' => 'elementskit-countdown-timer' ],
215
+ 'fields' => [
216
+ [
217
+ 'field' => 'ekit_countdown_timer_weeks_label',
218
+ 'type' => esc_html__( 'Weeks (Countdown Timer)', 'elementskit-lite' ),
219
+ 'editor_type' => 'LINE',
220
+ ],
221
+ [
222
+ 'field' => 'ekit_countdown_timer_days_label',
223
+ 'type' => esc_html__( 'Days (Countdown Timer)', 'elementskit-lite' ),
224
+ 'editor_type' => 'LINE',
225
+ ],
226
+ [
227
+ 'field' => 'ekit_countdown_timer_hours_label',
228
+ 'type' => esc_html__( 'Hours (Countdown Timer)', 'elementskit-lite' ),
229
+ 'editor_type' => 'LINE',
230
+ ],
231
+ [
232
+ 'field' => 'ekit_countdown_timer_minutes_hours_label',
233
+ 'type' => esc_html__( 'Minutes (Countdown Timer)', 'elementskit-lite' ),
234
+ 'editor_type' => 'LINE',
235
+ ],
236
+ [
237
+ 'field' => 'ekit_countdown_timer_seconds_hours_label',
238
+ 'type' => esc_html__( 'Seconds (Countdown Timer)', 'elementskit-lite' ),
239
+ 'editor_type' => 'LINE',
240
+ ],
241
+ [
242
+ 'field' => 'ekit_countdown_timer_title',
243
+ 'type' => esc_html__( 'On Expiry Title (Countdown Timer)', 'elementskit-lite' ),
244
+ 'editor_type' => 'AREA',
245
+ ],
246
+ [
247
+ 'field' => 'ekit_countdown_timer_expiry_content',
248
+ 'type' => esc_html__( 'On Expiry Content (Countdown Timer)', 'elementskit-lite' ),
249
+ 'editor_type' => 'AREA',
250
+ ],
251
+ ],
252
+ ];
253
+
254
+ $widgets['elementskit-faq'] = [
255
+ 'conditions' => [ 'widgetType' => 'elementskit-faq' ],
256
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Faq',
257
+ ];
258
+
259
+ $widgets['elementskit-funfact'] = [
260
+ 'conditions' => [ 'widgetType' => 'elementskit-funfact' ],
261
+ 'fields' => [
262
+ [
263
+ 'field' => 'ekit_funfact_number_suffix',
264
+ 'type' => esc_html__( 'Number Suffix (Funfact)', 'elementskit-lite' ),
265
+ 'editor_type' => 'LINE',
266
+ ],
267
+ [
268
+ 'field' => 'ekit_funfact_title_text',
269
+ 'type' => esc_html__( 'Title (Funfact)', 'elementskit-lite' ),
270
+ 'editor_type' => 'LINE',
271
+ ],
272
+ [
273
+ 'field' => 'ekit_funfact_super_text',
274
+ 'type' => esc_html__( 'Super (Funfact)', 'elementskit-lite' ),
275
+ 'editor_type' => 'LINE',
276
+ ],
277
+ ],
278
+ ];
279
+
280
+ $widgets['elementskit-image-comparison'] = [
281
+ 'conditions' => [ 'widgetType' => 'elementskit-image-comparison' ],
282
+ 'fields' => [
283
+ [
284
+ 'field' => 'ekit_img_comparison_label_before',
285
+ 'type' => esc_html__( 'Before Label (Image Comparison)', 'elementskit-lite' ),
286
+ 'editor_type' => 'LINE',
287
+ ],
288
+ [
289
+ 'field' => 'ekit_img_comparison_label_after',
290
+ 'type' => esc_html__( 'After Label (Image Comparison)', 'elementskit-lite' ),
291
+ 'editor_type' => 'LINE',
292
+ ],
293
+ ],
294
+ ];
295
+
296
+ $widgets['elementskit-testimonial'] = [
297
+ 'conditions' => [ 'widgetType' => 'elementskit-testimonial' ],
298
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Testimonial',
299
+ ];
300
+
301
+ $widgets['elementskit-pricing'] = [
302
+ 'conditions' => [ 'widgetType' => 'elementskit-pricing' ],
303
+ 'fields' => [
304
+ [
305
+ 'field' => 'ekit_pricing_table_title',
306
+ 'type' => esc_html__( 'Table Title (Pricing Table)', 'elementskit-lite' ),
307
+ 'editor_type' => 'LINE',
308
+ ],
309
+ [
310
+ 'field' => 'ekit_pricing_table_subtitle',
311
+ 'type' => esc_html__( 'Table Subtitle (Pricing Table)', 'elementskit-lite' ),
312
+ 'editor_type' => 'AREA',
313
+ ],
314
+ [
315
+ 'field' => 'ekit_pricing_currency_icon',
316
+ 'type' => esc_html__( 'Currency (Pricing Table)', 'elementskit-lite' ),
317
+ 'editor_type' => 'LINE',
318
+ ],
319
+ [
320
+ 'field' => 'ekit_pricing_table_price', // Doesn't work for numbers
321
+ 'type' => esc_html__( 'Price (Pricing Table)', 'elementskit-lite' ),
322
+ 'editor_type' => 'LINE',
323
+ ],
324
+ [
325
+ 'field' => 'ekit_pricing_table_duration',
326
+ 'type' => esc_html__( 'Duration (Pricing Table)', 'elementskit-lite' ),
327
+ 'editor_type' => 'LINE',
328
+ ],
329
+ [
330
+ 'field' => 'ekit_pricing_table_content',
331
+ 'type' => esc_html__( 'Table Content (Pricing Table)', 'elementskit-lite' ),
332
+ 'editor_type' => 'AREA',
333
+ ],
334
+ [
335
+ 'field' => 'ekit_pricing_btn_text',
336
+ 'type' => esc_html__( 'Button Label (Pricing Table)', 'elementskit-lite' ),
337
+ 'editor_type' => 'LINE',
338
+ ],
339
+ ],
340
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Pricing',
341
+ ];
342
+
343
+ $widgets['elementskit-team'] = [
344
+ 'conditions' => [ 'widgetType' => 'elementskit-team' ],
345
+ 'fields' => [
346
+ [
347
+ 'field' => 'ekit_team_name',
348
+ 'type' => esc_html__( 'Member Name (Team)', 'elementskit-lite' ),
349
+ 'editor_type' => 'LINE',
350
+ ],
351
+ [
352
+ 'field' => 'ekit_team_position',
353
+ 'type' => esc_html__( 'Member Position (Team)', 'elementskit-lite' ),
354
+ 'editor_type' => 'LINE',
355
+ ],
356
+ [
357
+ 'field' => 'ekit_team_short_description',
358
+ 'type' => esc_html__( 'Short Description (Team)', 'elementskit-lite' ),
359
+ 'editor_type' => 'AREA',
360
+ ],
361
+ [
362
+ 'field' => 'ekit_team_description',
363
+ 'type' => esc_html__( 'Popup Description (Team)', 'elementskit-lite' ),
364
+ 'editor_type' => 'AREA',
365
+ ],
366
+ [
367
+ 'field' => 'ekit_team_phone',
368
+ 'type' => esc_html__( 'Phone (Team)', 'elementskit-lite' ),
369
+ 'editor_type' => 'LINE',
370
+ ],
371
+ [
372
+ 'field' => 'ekit_team_email',
373
+ 'type' => esc_html__( 'Email (Team)', 'elementskit-lite' ),
374
+ 'editor_type' => 'LINE',
375
+ ],
376
+ ],
377
+ ];
378
+
379
+ $widgets['elementskit-social-media'] = [
380
+ 'conditions' => [ 'widgetType' => 'elementskit-social-media' ],
381
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social',
382
+ ];
383
+
384
+ $widgets['elementskit-progressbar'] = [
385
+ 'conditions' => [ 'widgetType' => 'elementskit-progressbar' ],
386
+ 'fields' => [
387
+ [
388
+ 'field' => 'ekit_progressbar_title',
389
+ 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit-lite' ),
390
+ 'editor_type' => 'LINE',
391
+ ],
392
+ ],
393
+ ];
394
+
395
+ $widgets['elementskit-mail-chimp'] = [
396
+ 'conditions' => [ 'widgetType' => 'elementskit-mail-chimp' ],
397
+ 'fields' => [
398
+ [
399
+ 'field' => 'ekit_mail_chimp_first_name_label',
400
+ 'type' => esc_html__( 'First Name (Mail Chimp)', 'elementskit-lite' ),
401
+ 'editor_type' => 'LINE',
402
+ ],
403
+ [
404
+ 'field' => 'ekit_mail_chimp_first_name_placeholder',
405
+ 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
406
+ 'editor_type' => 'LINE',
407
+ ],
408
+ [
409
+ 'field' => 'ekit_mail_chimp_last_name_label',
410
+ 'type' => esc_html__( 'Last Name (Mail Chimp)', 'elementskit-lite' ),
411
+ 'editor_type' => 'LINE',
412
+ ],
413
+ [
414
+ 'field' => 'ekit_mail_chimp_last_name_placeholder',
415
+ 'type' => esc_html__( 'First Name Placeholder (Mail Chimp)', 'elementskit-lite' ),
416
+ 'editor_type' => 'LINE',
417
+ ],
418
+ [
419
+ 'field' => 'ekit_mail_chimp_phone_label',
420
+ 'type' => esc_html__( 'Phone (Mail Chimp)', 'elementskit-lite' ),
421
+ 'editor_type' => 'LINE',
422
+ ],
423
+ [
424
+ 'field' => 'ekit_mail_chimp_phone_placeholder',
425
+ 'type' => esc_html__( 'Phone Placeholder (Mail Chimp)', 'elementskit-lite' ),
426
+ 'editor_type' => 'LINE',
427
+ ],
428
+ [
429
+ 'field' => 'ekit_mail_chimp_email_address_label',
430
+ 'type' => esc_html__( 'Email (Mail Chimp)', 'elementskit-lite' ),
431
+ 'editor_type' => 'LINE',
432
+ ],
433
+ [
434
+ 'field' => 'ekit_mail_chimp_email_address_placeholder',
435
+ 'type' => esc_html__( 'Email Placeholder (Mail Chimp)', 'elementskit-lite' ),
436
+ 'editor_type' => 'LINE',
437
+ ],
438
+ [
439
+ 'field' => 'ekit_mail_chimp_submit',
440
+ 'type' => esc_html__( 'Submit Button Text (Mail Chimp)', 'elementskit-lite' ),
441
+ 'editor_type' => 'LINE',
442
+ ],
443
+ [
444
+ 'field' => 'ekit_mail_chimp_success_message',
445
+ 'type' => esc_html__( 'Success Message (Mail Chimp)', 'elementskit-lite' ),
446
+ 'editor_type' => 'AREA',
447
+ ],
448
+ ],
449
+ ];
450
+
451
+ $widgets['elementskit-piechart'] = [
452
+ 'conditions' => [ 'widgetType' => 'elementskit-piechart' ],
453
+ 'fields' => [
454
+ [
455
+ 'field' => 'ekit_piechart_title',
456
+ 'type' => esc_html__( 'Title (Pie Chart)', 'elementskit-lite' ),
457
+ 'editor_type' => 'LINE',
458
+ ],
459
+ [
460
+ 'field' => 'ekit_piechart_item_description',
461
+ 'type' => esc_html__( 'Description (Pie Chart)', 'elementskit-lite' ),
462
+ 'editor_type' => 'LINE',
463
+ ],
464
+ ],
465
+ ];
466
+
467
+ $widgets['elementskit-simple-tab'] = [
468
+ 'conditions' => [ 'widgetType' => 'elementskit-simple-tab' ],
469
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Tab',
470
+ ];
471
+
472
+ $widgets['elementskit-video'] = [
473
+ 'conditions' => [ 'widgetType' => 'elementskit-video' ],
474
+ 'fields' => [
475
+ [
476
+ 'field' => 'ekit_video_popup_button_title',
477
+ 'type' => esc_html__( 'Button Title (Video)', 'elementskit-lite' ),
478
+ 'editor_type' => 'LINE',
479
+ ],
480
+ ],
481
+ ];
482
+
483
+ $widgets['elementskit-business-hours'] = [
484
+ 'conditions' => [ 'widgetType' => 'elementskit-business-hours' ],
485
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Business_Hours',
486
+ ];
487
+
488
+ $widgets['elementskit-drop-caps'] = [
489
+ 'conditions' => [ 'widgetType' => 'elementskit-drop-caps' ],
490
+ 'fields' => [
491
+ [
492
+ 'field' => 'ekit_dropcaps_text',
493
+ 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit-lite' ),
494
+ 'editor_type' => 'AREA',
495
+ ],
496
+ ],
497
+ ];
498
+
499
+ $widgets['elementskit-social-share'] = [
500
+ 'conditions' => [ 'widgetType' => 'elementskit-social-share' ],
501
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Social_Share',
502
+ ];
503
+
504
+ $widgets['elementskit-advance-accordion'] = [
505
+ 'conditions' => [ 'widgetType' => 'elementskit-advance-accordion' ],
506
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Accordion',
507
+ ];
508
+
509
+ $widgets['elementskit-tab'] = [
510
+ 'conditions' => [ 'widgetType' => 'elementskit-tab' ],
511
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Advanced_Tab',
512
+ ];
513
+
514
+ $widgets['elementskit-hotspot'] = [
515
+ 'conditions' => [ 'widgetType' => 'elementskit-hotspot' ],
516
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Hotspot',
517
+ ];
518
+
519
+ $widgets['elementskit-motion-text'] = [
520
+ 'conditions' => [ 'widgetType' => 'elementskit-motion-text' ],
521
+ 'fields' => [
522
+ [
523
+ 'field' => 'ekit_motion_text_content_text',
524
+ 'type' => esc_html__( 'Title (Motion Text)', 'elementskit-lite' ),
525
+ 'editor_type' => 'AREA',
526
+ ],
527
+ ],
528
+ ];
529
+
530
+ $widgets['elementskit-twitter-feed'] = [
531
+ 'conditions' => [ 'widgetType' => 'elementskit-twitter-feed' ],
532
+ 'fields' => [
533
+ [
534
+ 'field' => 'ekit_twitter_follow_btn_text',
535
+ 'type' => esc_html__( 'Label (Twitter)', 'elementskit-lite' ),
536
+ 'editor_type' => 'LINE',
537
+ ],
538
+ ],
539
+ ];
540
+
541
+ $widgets['elementskit-instagram-feed'] = [
542
+ 'conditions' => [ 'widgetType' => 'elementskit-instagram-feed' ],
543
+ 'fields' => [
544
+ [
545
+ 'field' => 'ekit_instagram_feed_ins_follow_text',
546
+ 'type' => esc_html__( 'Follow Button Text (Instagram Feed)', 'elementskit-lite' ),
547
+ 'editor_type' => 'LINE',
548
+ ],
549
+ ],
550
+ ];
551
+
552
+ $widgets['elementskit-gallery'] = [
553
+ 'conditions' => [ 'widgetType' => 'elementskit-gallery' ],
554
+ 'fields' => [
555
+ [
556
+ 'field' => 'ekit_gallery_filter_all_label',
557
+ 'type' => esc_html__( '"All" Filter Label (Gallery)', 'elementskit-lite' ),
558
+ 'editor_type' => 'LINE',
559
+ ],
560
+ ],
561
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Gallery',
562
+ ];
563
+
564
+ $widgets['elementskit-chart'] = [
565
+ 'conditions' => [ 'widgetType' => 'elementskit-chart' ],
566
+ 'fields' => [
567
+ [
568
+ 'field' => 'ekit_charts_title_text',
569
+ 'type' => esc_html__( 'Title (Chart)', 'elementskit-lite' ),
570
+ 'editor_type' => 'LINE',
571
+ ],
572
+ ],
573
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Chart',
574
+ ];
575
+
576
+ $widgets['elementskit-table'] = [
577
+ 'conditions' => [ 'widgetType' => 'elementskit-table' ],
578
+ 'fields' => [
579
+ [
580
+ 'field' => 'ekit_table_navigation_prev_text',
581
+ 'type' => esc_html__( 'Prev Text (Table)', 'elementskit-lite' ),
582
+ 'editor_type' => 'LINE',
583
+ ],
584
+ [
585
+ 'field' => 'ekit_table_navigation_next_text',
586
+ 'type' => esc_html__( 'Next Text (Table)', 'elementskit-lite' ),
587
+ 'editor_type' => 'LINE',
588
+ ],
589
+ ],
590
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Table',
591
+ ];
592
+
593
+ $widgets['elementskit-timeline'] = [
594
+ 'conditions' => [ 'widgetType' => 'elementskit-timeline' ],
595
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Timeline',
596
+ ];
597
+
598
+ $widgets['elementskit-dual-button'] = [
599
+ 'conditions' => [ 'widgetType' => 'elementskit-dual-button' ],
600
+ 'fields' => [
601
+ [
602
+ 'field' => 'ekit_button_middle_text',
603
+ 'type' => esc_html__( 'Middle Text (Dual Button)', 'elementskit-lite' ),
604
+ 'editor_type' => 'LINE',
605
+ ],
606
+ [
607
+ 'field' => 'ekit_button_one_text',
608
+ 'type' => esc_html__( 'Button One Text (Dual Button)', 'elementskit-lite' ),
609
+ 'editor_type' => 'LINE',
610
+ ],
611
+ [
612
+ 'field' => 'ekit_button_two_text',
613
+ 'type' => esc_html__( 'Button Two Text (Dual Button)', 'elementskit-lite' ),
614
+ 'editor_type' => 'LINE',
615
+ ],
616
+ ],
617
+ ];
618
+
619
+ $widgets['elementskit-creative-button'] = [
620
+ 'conditions' => [ 'widgetType' => 'elementskit-creative-button' ],
621
+ 'fields' => [
622
+ [
623
+ 'field' => 'ekit_btn_text',
624
+ 'type' => esc_html__( 'Label (Creative Button)', 'elementskit-lite' ),
625
+ 'editor_type' => 'LINE',
626
+ ],
627
+ ],
628
+ ];
629
+
630
+ $widgets['elementskit-category-list'] = [
631
+ 'conditions' => [ 'widgetType' => 'elementskit-category-list' ],
632
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Cat_List',
633
+ ];
634
+
635
+ $widgets['elementskit-page-list'] = [
636
+ 'conditions' => [ 'widgetType' => 'elementskit-page-list' ],
637
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Page_List',
638
+ ];
639
+
640
+ $widgets['elementskit-post-list'] = [
641
+ 'conditions' => [ 'widgetType' => 'elementskit-post-list' ],
642
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Post_List',
643
+ ];
644
+
645
+ $widgets['elementskit-header-info'] = [
646
+ 'conditions' => [ 'widgetType' => 'elementskit-header-info' ],
647
+ 'integration-class' => 'ElementsKit_Lite\Compatibility\WPML\Widgets\Ekit_Header_Info',
648
+ ];
649
+
650
+ $widgets['elementskit-header-search'] = [
651
+ 'conditions' => [ 'widgetType' => 'elementskit-header-search' ],
652
+ 'fields' => [
653
+ [
654
+ 'field' => 'ekit_search_placeholder_text',
655
+ 'type' => esc_html__( 'Placeholder Text (Header Search)', 'elementskit-lite' ),
656
+ 'editor_type' => 'LINE',
657
+ ],
658
+ ],
659
+ ];
660
+
661
+ return $widgets;
662
+ }
663
  }
compatibility/wpml/widgets/accordion.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'acc_title',
36
- 'acc_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'acc_title':
52
- return esc_html__( 'Title (Accordion)', 'elementskit' );
53
- break;
54
-
55
- case 'acc_content':
56
- return esc_html__( 'Description (Accordion)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'acc_title':
77
- return 'LINE';
78
-
79
- case 'acc_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'acc_title',
36
+ 'acc_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'acc_title':
52
+ return esc_html__( 'Title (Accordion)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'acc_content':
56
+ return esc_html__( 'Description (Accordion)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'acc_title':
77
+ return 'LINE';
78
+
79
+ case 'acc_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/advanced-accordion.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Advanced_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'acc_title',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'acc_title':
51
- return esc_html__( 'Title (Advanced Accordion)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'acc_title':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Advanced_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'acc_title',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'acc_title':
51
+ return esc_html__( 'Title (Advanced Accordion)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'acc_title':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/advanced-tab.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Advanced_Tab extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_tab_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_tab_title',
36
- 'ekit_tab_sub_title',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_tab_title':
52
- return esc_html__( 'Title (Advanced Tab)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_tab_sub_title':
56
- return esc_html__( 'Sub-Title (Advanced Tab)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_tab_title':
77
- return 'LINE';
78
-
79
- case 'ekit_tab_sub_title':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Advanced_Tab extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_tab_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_tab_title',
36
+ 'ekit_tab_sub_title',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_tab_title':
52
+ return esc_html__( 'Title (Advanced Tab)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_tab_sub_title':
56
+ return esc_html__( 'Sub-Title (Advanced Tab)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_tab_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_tab_sub_title':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/business-hours.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Business_Hours extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_business_openday_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_business_day',
36
- 'ekit_business_time',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_business_day':
52
- return esc_html__( 'Day (Business Hours)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_business_time':
56
- return esc_html__( 'Time (Business Hours)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_business_day':
77
- return 'LINE';
78
-
79
- case 'ekit_business_time':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Business_Hours extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_business_openday_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_business_day',
36
+ 'ekit_business_time',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_business_day':
52
+ return esc_html__( 'Day (Business Hours)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_business_time':
56
+ return esc_html__( 'Time (Business Hours)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_business_day':
77
+ return 'LINE';
78
+
79
+ case 'ekit_business_time':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/cat-list.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Cat_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'text':
51
- return esc_html__( 'Test (Category List)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Cat_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'text':
51
+ return esc_html__( 'Test (Category List)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/chart.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Chart extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_charts_labels_data';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_chart_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_chart_label':
51
- return esc_html__( 'Name (Chart)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_chart_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Chart extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_charts_labels_data';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_chart_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_chart_label':
51
+ return esc_html__( 'Name (Chart)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_chart_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/faq.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Faq extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_faq_content_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_faq_title',
36
- 'ekit_faq_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_faq_title':
52
- return esc_html__( 'Title (FAQ)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_faq_content':
56
- return esc_html__( 'Content (FAQ)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_faq_title':
77
- return 'LINE';
78
-
79
- case 'ekit_faq_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Faq extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_faq_content_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_faq_title',
36
+ 'ekit_faq_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_faq_title':
52
+ return esc_html__( 'Title (FAQ)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_faq_content':
56
+ return esc_html__( 'Content (FAQ)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_faq_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_faq_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/gallery.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Gallery extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_gallery_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_gallery_filter_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_gallery_filter_label':
51
- return esc_html__( 'Filter Label (Gallery)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_gallery_filter_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Gallery extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_gallery_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_gallery_filter_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_gallery_filter_label':
51
+ return esc_html__( 'Filter Label (Gallery)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_gallery_filter_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/header-info.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Header_Info extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_headerinfo_group';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_headerinfo_text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_headerinfo_text':
51
- return esc_html__( 'Text (Header Info)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_headerinfo_text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Header_Info extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_headerinfo_group';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_headerinfo_text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_headerinfo_text':
51
+ return esc_html__( 'Text (Header Info)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_headerinfo_text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/hotspot.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Hotspot extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_location_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_hotspot_title',
36
- 'ekit_hotspot_address',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_hotspot_title':
52
- return esc_html__( 'Title (Hotspot)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_hotspot_address':
56
- return esc_html__( 'Address (Hotspot)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_hotspot_title':
77
- return 'LINE';
78
-
79
- case 'ekit_hotspot_address':
80
- return 'AREA';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Hotspot extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_location_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_hotspot_title',
36
+ 'ekit_hotspot_address',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_hotspot_title':
52
+ return esc_html__( 'Title (Hotspot)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_hotspot_address':
56
+ return esc_html__( 'Address (Hotspot)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_hotspot_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_hotspot_address':
80
+ return 'AREA';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/image-accordion.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Image_Accordion extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_img_accordion_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_img_accordion_title',
36
- 'ekit_img_accordion_button_label',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_img_accordion_title':
52
- return esc_html__( 'Title (Image Accordion)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_img_accordion_button_label':
56
- return esc_html__( 'Button Label (Image Accordion)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_img_accordion_title':
77
- return 'LINE';
78
-
79
- case 'ekit_img_accordion_button_label':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Image_Accordion extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_img_accordion_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_img_accordion_title',
36
+ 'ekit_img_accordion_button_label',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_img_accordion_title':
52
+ return esc_html__( 'Title (Image Accordion)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_img_accordion_button_label':
56
+ return esc_html__( 'Button Label (Image Accordion)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_img_accordion_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_img_accordion_button_label':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/page-list.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Page_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- 'ekit_menu_widget_sub_title',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'text':
52
- return esc_html__( 'Title (Page List)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_menu_widget_sub_title':
56
- return esc_html__( 'Sub-Title (Page List)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'text':
77
- return 'LINE';
78
-
79
- case 'ekit_menu_widget_sub_title':
80
- return 'LINE';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Page_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ 'ekit_menu_widget_sub_title',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'text':
52
+ return esc_html__( 'Title (Page List)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_menu_widget_sub_title':
56
+ return esc_html__( 'Sub-Title (Page List)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'text':
77
+ return 'LINE';
78
+
79
+ case 'ekit_menu_widget_sub_title':
80
+ return 'LINE';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/post-list.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Post_List extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'icon_list';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'text',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'text':
51
- return esc_html__( 'Title (Post List)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'text':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Post_List extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'icon_list';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'text',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'text':
51
+ return esc_html__( 'Title (Post List)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'text':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/pricing.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Pricing extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_pricing_table_content_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_pricing_list',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_pricing_list':
51
- return esc_html__( 'List text (Pricing Table)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_pricing_list':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Pricing extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_pricing_table_content_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_pricing_list',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_pricing_list':
51
+ return esc_html__( 'List text (Pricing Table)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_pricing_list':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/social-share.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Social_Share extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_socialshare_add_icons';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_socialshare_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_socialshare_label':
51
- return esc_html__( 'Label (Social Share)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_socialshare_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Social_Share extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_socialshare_add_icons';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_socialshare_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_socialshare_label':
51
+ return esc_html__( 'Label (Social Share)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_socialshare_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/social.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Social extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_socialmedia_add_icons';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_socialmedia_label',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'ekit_socialmedia_label':
51
- return esc_html__( 'Label (Social Media)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'ekit_socialmedia_label':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Social extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_socialmedia_add_icons';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_socialmedia_label',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'ekit_socialmedia_label':
51
+ return esc_html__( 'Label (Social Media)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'ekit_socialmedia_label':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/tab.php CHANGED
@@ -1,87 +1,87 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Tab extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_tab_items';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_tab_title',
36
- 'ekit_tab_content',
37
- );
38
- }
39
-
40
- /**
41
- * Method for setting the title for each translatable field
42
- *
43
- * @since 1.2.6
44
- *
45
- * @param string $field The name of the field.
46
- * @return string
47
- */
48
- protected function get_title( $field ) {
49
-
50
- switch ( $field ) {
51
- case 'ekit_tab_title':
52
- return esc_html__( 'Title (Tab)', 'elementskit' );
53
- break;
54
-
55
- case 'ekit_tab_content':
56
- return esc_html__( 'Content (Tab)', 'elementskit' );
57
- break;
58
-
59
- default:
60
- return '';
61
- }
62
-
63
- }
64
-
65
- /**
66
- * Method for determining the editor type for each field
67
- *
68
- * @since 1.2.6
69
- *
70
- * @param string $field Name of the field.
71
- * @return string
72
- */
73
- protected function get_editor_type( $field ) {
74
-
75
- switch ( $field ) {
76
- case 'ekit_tab_title':
77
- return 'LINE';
78
-
79
- case 'ekit_tab_content':
80
- return 'VISUAL';
81
-
82
- default:
83
- return '';
84
- }
85
-
86
- }
87
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Tab extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_tab_items';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_tab_title',
36
+ 'ekit_tab_content',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Method for setting the title for each translatable field
42
+ *
43
+ * @since 1.2.6
44
+ *
45
+ * @param string $field The name of the field.
46
+ * @return string
47
+ */
48
+ protected function get_title( $field ) {
49
+
50
+ switch ( $field ) {
51
+ case 'ekit_tab_title':
52
+ return esc_html__( 'Title (Tab)', 'elementskit-lite' );
53
+ break;
54
+
55
+ case 'ekit_tab_content':
56
+ return esc_html__( 'Content (Tab)', 'elementskit-lite' );
57
+ break;
58
+
59
+ default:
60
+ return '';
61
+ }
62
+
63
+ }
64
+
65
+ /**
66
+ * Method for determining the editor type for each field
67
+ *
68
+ * @since 1.2.6
69
+ *
70
+ * @param string $field Name of the field.
71
+ * @return string
72
+ */
73
+ protected function get_editor_type( $field ) {
74
+
75
+ switch ( $field ) {
76
+ case 'ekit_tab_title':
77
+ return 'LINE';
78
+
79
+ case 'ekit_tab_content':
80
+ return 'VISUAL';
81
+
82
+ default:
83
+ return '';
84
+ }
85
+
86
+ }
87
+ }
compatibility/wpml/widgets/table.php CHANGED
@@ -1,79 +1,79 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Table extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_table_build_header';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'table_header_content',
36
- );
37
- }
38
-
39
- /**
40
- * Method for setting the title for each translatable field
41
- *
42
- * @since 1.2.6
43
- *
44
- * @param string $field The name of the field.
45
- * @return string
46
- */
47
- protected function get_title( $field ) {
48
-
49
- switch ( $field ) {
50
- case 'table_header_content':
51
- return esc_html__( 'Text (Table)', 'elementskit' );
52
- break;
53
-
54
- default:
55
- return '';
56
- }
57
-
58
- }
59
-
60
- /**
61
- * Method for determining the editor type for each field
62
- *
63
- * @since 1.2.6
64
- *
65
- * @param string $field Name of the field.
66
- * @return string
67
- */
68
- protected function get_editor_type( $field ) {
69
-
70
- switch ( $field ) {
71
- case 'table_header_content':
72
- return 'LINE';
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Table extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_table_build_header';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'table_header_content',
36
+ );
37
+ }
38
+
39
+ /**
40
+ * Method for setting the title for each translatable field
41
+ *
42
+ * @since 1.2.6
43
+ *
44
+ * @param string $field The name of the field.
45
+ * @return string
46
+ */
47
+ protected function get_title( $field ) {
48
+
49
+ switch ( $field ) {
50
+ case 'table_header_content':
51
+ return esc_html__( 'Text (Table)', 'elementskit-lite' );
52
+ break;
53
+
54
+ default:
55
+ return '';
56
+ }
57
+
58
+ }
59
+
60
+ /**
61
+ * Method for determining the editor type for each field
62
+ *
63
+ * @since 1.2.6
64
+ *
65
+ * @param string $field Name of the field.
66
+ * @return string
67
+ */
68
+ protected function get_editor_type( $field ) {
69
+
70
+ switch ( $field ) {
71
+ case 'table_header_content':
72
+ return 'LINE';
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+ }
compatibility/wpml/widgets/testimonial.php CHANGED
@@ -1,95 +1,95 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Testimonial extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_testimonial_data';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'client_name',
36
- 'designation',
37
- 'review',
38
- );
39
- }
40
-
41
- /**
42
- * Method for setting the title for each translatable field
43
- *
44
- * @since 1.2.6
45
- *
46
- * @param string $field The name of the field.
47
- * @return string
48
- */
49
- protected function get_title( $field ) {
50
-
51
- switch ( $field ) {
52
- case 'client_name':
53
- return esc_html__( 'Client Name (Testimonial)', 'elementskit' );
54
- break;
55
-
56
- case 'designation':
57
- return esc_html__( 'Designation (Testimonial)', 'elementskit' );
58
- break;
59
-
60
- case 'review':
61
- return esc_html__( 'Testimonial Review (Testimonial)', 'elementskit' );
62
- break;
63
-
64
- default:
65
- return '';
66
- }
67
-
68
- }
69
-
70
- /**
71
- * Method for determining the editor type for each field
72
- *
73
- * @since 1.2.6
74
- *
75
- * @param string $field Name of the field.
76
- * @return string
77
- */
78
- protected function get_editor_type( $field ) {
79
-
80
- switch ( $field ) {
81
- case 'client_name':
82
- return 'LINE';
83
-
84
- case 'designation':
85
- return 'LINE';
86
-
87
- case 'review':
88
- return 'AREA';
89
-
90
- default:
91
- return '';
92
- }
93
-
94
- }
95
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Testimonial extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_testimonial_data';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'client_name',
36
+ 'designation',
37
+ 'review',
38
+ );
39
+ }
40
+
41
+ /**
42
+ * Method for setting the title for each translatable field
43
+ *
44
+ * @since 1.2.6
45
+ *
46
+ * @param string $field The name of the field.
47
+ * @return string
48
+ */
49
+ protected function get_title( $field ) {
50
+
51
+ switch ( $field ) {
52
+ case 'client_name':
53
+ return esc_html__( 'Client Name (Testimonial)', 'elementskit-lite' );
54
+ break;
55
+
56
+ case 'designation':
57
+ return esc_html__( 'Designation (Testimonial)', 'elementskit-lite' );
58
+ break;
59
+
60
+ case 'review':
61
+ return esc_html__( 'Testimonial Review (Testimonial)', 'elementskit-lite' );
62
+ break;
63
+
64
+ default:
65
+ return '';
66
+ }
67
+
68
+ }
69
+
70
+ /**
71
+ * Method for determining the editor type for each field
72
+ *
73
+ * @since 1.2.6
74
+ *
75
+ * @param string $field Name of the field.
76
+ * @return string
77
+ */
78
+ protected function get_editor_type( $field ) {
79
+
80
+ switch ( $field ) {
81
+ case 'client_name':
82
+ return 'LINE';
83
+
84
+ case 'designation':
85
+ return 'LINE';
86
+
87
+ case 'review':
88
+ return 'AREA';
89
+
90
+ default:
91
+ return '';
92
+ }
93
+
94
+ }
95
+ }
compatibility/wpml/widgets/timeline.php CHANGED
@@ -1,111 +1,111 @@
1
- <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
-
4
- use WPML_Elementor_Module_With_Items;
5
-
6
- if ( ! defined( 'ABSPATH' ) ) exit;
7
-
8
-
9
- /**
10
- * Ekit_Image_Accordion
11
- *
12
- * @since 1.2.6
13
- */
14
- class Ekit_Timeline extends WPML_Elementor_Module_With_Items {
15
-
16
- /**
17
- * Retrieve the field name.
18
- *
19
- * @since 1.2.6
20
- * @return string
21
- */
22
- public function get_items_field() {
23
- return 'ekit_timelinehr_content_repeater';
24
- }
25
-
26
- /**
27
- * Retrieve the fields inside the repeater
28
- *
29
- * @since 1.2.6
30
- *
31
- * @return array
32
- */
33
- public function get_fields() {
34
- return array(
35
- 'ekit_timeline_line_subtitle',
36
- 'ekit_timeline_line_title',
37
- 'ekit_timeline_line_content',
38
- 'ekit_timeline_content_date',
39
- 'ekit_timelinehr_content_address',
40
- );
41
- }
42
-
43
- /**
44
- * Method for setting the title for each translatable field
45
- *
46
- * @since 1.2.6
47
- *
48
- * @param string $field The name of the field.
49
- * @return string
50
- */
51
- protected function get_title( $field ) {
52
-
53
- switch ( $field ) {
54
- case 'ekit_timeline_line_subtitle':
55
- return esc_html__( 'Sub Title (Timeline)', 'elementskit' );
56
- break;
57
-
58
- case 'ekit_timeline_line_title':
59
- return esc_html__( 'Title (Timeline)', 'elementskit' );
60
- break;
61
-
62
- case 'ekit_timeline_line_content':
63
- return esc_html__( 'Description (Timeline)', 'elementskit' );
64
- break;
65
-
66
- case 'ekit_timeline_content_date':
67
- return esc_html__( 'Date (Timeline)', 'elementskit' );
68
- break;
69
-
70
- case 'ekit_timelinehr_content_address':
71
- return esc_html__( 'Address (Timeline)', 'elementskit' );
72
- break;
73
-
74
- default:
75
- return '';
76
- }
77
-
78
- }
79
-
80
- /**
81
- * Method for determining the editor type for each field
82
- *
83
- * @since 1.2.6
84
- *
85
- * @param string $field Name of the field.
86
- * @return string
87
- */
88
- protected function get_editor_type( $field ) {
89
-
90
- switch ( $field ) {
91
- case 'ekit_timeline_line_subtitle':
92
- return 'LINE';
93
-
94
- case 'ekit_timeline_line_title':
95
- return 'LINE';
96
-
97
- case 'ekit_timeline_line_content':
98
- return 'AREA';
99
-
100
- case 'ekit_timeline_content_date':
101
- return 'LINE';
102
-
103
- case 'ekit_timelinehr_content_address':
104
- return 'LINE';
105
-
106
- default:
107
- return '';
108
- }
109
-
110
- }
111
- }
1
+ <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
+
4
+ use WPML_Elementor_Module_With_Items;
5
+
6
+ if ( ! defined( 'ABSPATH' ) ) exit;
7
+
8
+
9
+ /**
10
+ * Ekit_Image_Accordion
11
+ *
12
+ * @since 1.2.6
13
+ */
14
+ class Ekit_Timeline extends WPML_Elementor_Module_With_Items {
15
+
16
+ /**
17
+ * Retrieve the field name.
18
+ *
19
+ * @since 1.2.6
20
+ * @return string
21
+ */
22
+ public function get_items_field() {
23
+ return 'ekit_timelinehr_content_repeater';
24
+ }
25
+
26
+ /**
27
+ * Retrieve the fields inside the repeater
28
+ *
29
+ * @since 1.2.6
30
+ *
31
+ * @return array
32
+ */
33
+ public function get_fields() {
34
+ return array(
35
+ 'ekit_timeline_line_subtitle',
36
+ 'ekit_timeline_line_title',
37
+ 'ekit_timeline_line_content',
38
+ 'ekit_timeline_content_date',
39
+ 'ekit_timelinehr_content_address',
40
+ );
41
+ }
42
+
43
+ /**
44
+ * Method for setting the title for each translatable field
45
+ *
46
+ * @since 1.2.6
47
+ *
48
+ * @param string $field The name of the field.
49
+ * @return string
50
+ */
51
+ protected function get_title( $field ) {
52
+
53
+ switch ( $field ) {
54
+ case 'ekit_timeline_line_subtitle':
55
+ return esc_html__( 'Sub Title (Timeline)', 'elementskit-lite' );
56
+ break;
57
+
58
+ case 'ekit_timeline_line_title':
59
+ return esc_html__( 'Title (Timeline)', 'elementskit-lite' );
60
+ break;
61
+
62
+ case 'ekit_timeline_line_content':
63
+ return esc_html__( 'Description (Timeline)', 'elementskit-lite' );
64
+ break;
65
+
66
+ case 'ekit_timeline_content_date':
67
+ return esc_html__( 'Date (Timeline)', 'elementskit-lite' );
68
+ break;
69
+
70
+ case 'ekit_timelinehr_content_address':
71
+ return esc_html__( 'Address (Timeline)', 'elementskit-lite' );
72
+ break;
73
+
74
+ default:
75
+ return '';
76
+ }
77
+
78
+ }
79
+
80
+ /**
81
+ * Method for determining the editor type for each field
82
+ *
83
+ * @since 1.2.6
84
+ *
85
+ * @param string $field Name of the field.
86
+ * @return string
87
+ */
88
+ protected function get_editor_type( $field ) {
89
+
90
+ switch ( $field ) {
91
+ case 'ekit_timeline_line_subtitle':
92
+ return 'LINE';
93
+
94
+ case 'ekit_timeline_line_title':
95
+ return 'LINE';
96
+
97
+ case 'ekit_timeline_line_content':
98
+ return 'AREA';
99
+
100
+ case 'ekit_timeline_content_date':
101
+ return 'LINE';
102
+
103
+ case 'ekit_timelinehr_content_address':
104
+ return 'LINE';
105
+
106
+ default:
107
+ return '';
108
+ }
109
+
110
+ }
111
+ }
config/module-list.php ADDED
@@ -0,0 +1,124 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Config;
4
+
5
+ use ElementsKit_Lite\Libs\Framework\Attr;
6
+
7
+ defined('ABSPATH') || exit;
8
+
9
+ class Module_List{
10
+ use \ElementsKit_Lite\Traits\Singleton;
11
+
12
+ /*
13
+ todo: format the comment appropiatly
14
+ Usage:
15
+ get full list >> get_list() []
16
+
17
+ get full list of active modules >> get_list(true, '', 'active') // []
18
+
19
+ get specific module data >> get_list(true, 'image-accordion') [] or false
20
+
21
+ get specific module data (if active) >> get_list(true, 'header-footer', 'active') [] or false
22
+ */
23
+ public function get_list($filtered = true, $module = '', $check_mathod = 'list') {
24
+ $all_list = self::$list;
25
+
26
+ if($filtered == true) {
27
+ $all_list = apply_filters('elementskit/modules/list', self::$list);
28
+ }
29
+
30
+ if($check_mathod == 'active') {
31
+ $active_list = Attr::instance()->utils->get_option('module_list', array_keys($all_list));
32
+ $active_list = array_merge($active_list, self::$system_modules);
33
+
34
+ // checking active widgets
35
+
36
+ foreach($all_list as $widget_slug => $info) {
37
+ if(!in_array($widget_slug, $active_list)) {
38
+ unset($all_list[$widget_slug]);
39
+ }
40
+ }
41
+ }
42
+
43
+ if($module != '') {
44
+ return (!isset($all_list[$module]) ? false : $all_list[$module]);
45
+ }
46
+
47
+ return $all_list;
48
+ }
49
+
50
+
51
+ /**
52
+ * Check if a module is active or not, pro-disabled package are considered inactive
53
+ *
54
+ * Usage : \ElementsKit_Lite\Config\Module_List::instance()->is_active('facebook-messenger')
55
+ *
56
+ * @param $module_slug
57
+ *
58
+ * @return bool
59
+ */
60
+ public function is_active($module_slug) {
61
+
62
+ $act = Module_List::instance()->get_list(true, $module_slug, 'active');
63
+
64
+ return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
65
+ }
66
+
67
+ private static $system_modules = [
68
+ 'dynamic-content',
69
+ 'library',
70
+ 'controls',
71
+ ];
72
+
73
+ private static $list = [
74
+ 'header-footer' => [
75
+ 'slug' => 'header-footer',
76
+ 'title' => 'Header Footer',
77
+ 'package' => 'free', // free, pro, pro-disabled
78
+ //'path' => null,
79
+ //'base_class_name' => null,
80
+ //'live' => null
81
+ ],
82
+ 'megamenu' => [
83
+ 'slug' => 'megamenu',
84
+ 'package' => 'free',
85
+ 'title' => 'Mega Menu'
86
+ ],
87
+ 'onepage-scroll' => [
88
+ 'slug' => 'onepage-scroll',
89
+ 'package' => 'free',
90
+ 'title' => 'Onepage Scroll'
91
+ ],
92
+ 'widget-builder' => [
93
+ 'slug' => 'widget-builder',
94
+ 'package' => 'free',
95
+ 'title' => 'Widget Builder'
96
+ ],
97
+ 'parallax' => [
98
+ 'slug' => 'parallax',
99
+ 'package' => 'pro-disabled',
100
+ 'title' => 'Parallax Effects'
101
+ ],
102
+ 'sticky-content' => [
103
+ 'slug' => 'sticky-content',
104
+ 'package' => 'pro-disabled',
105
+ 'title' => 'Sticky Content'
106
+ ],
107
+ 'facebook-messenger' => [
108
+ 'slug' => 'facebook-messenger',
109
+ 'package' => 'pro-disabled',
110
+ 'title' => 'Facebook Messenger',
111
+ ],
112
+ 'conditional-content' => [
113
+ 'slug' => 'conditional-content',
114
+ 'package' => 'pro-disabled',
115
+ 'title' => 'Conditional Content',
116
+ ],
117
+ 'copy-paste-cross-domain' => [
118
+ 'slug' => 'copy-paste-cross-domain',
119
+ 'package' => 'pro-disabled',
120
+ 'title' => 'Cross-Domain Copy Paste'
121
+ ],
122
+ ];
123
+
124
+ }
config/widget-list.php ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Config;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Widget_List {
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+
12
+ /**
13
+ * todo: format the comment appropriately
14
+ *
15
+ * Usage :
16
+ * get full list >> get_list() []
17
+ * get full list of active widgets >> get_list(true, '', 'active') // []
18
+ * get specific widget data >> get_list(true, 'image-accordion') [] or false
19
+ * get specific widget data (if active) >> get_list(true, 'image-accordion', 'active') [] or false
20
+ *
21
+ * @param bool $filtered
22
+ * @param string $widget
23
+ * @param string $check_method - active|list
24
+ *
25
+ * @return array|bool|mixed
26
+ */
27
+ public function get_list($filtered = true, $widget = '', $check_method = 'list') {
28
+ $all_list = self::$list;
29
+
30
+ if($filtered == true) {
31
+ $all_list = apply_filters('elementskit/widgets/list', self::$list);
32
+ }
33
+
34
+ if($check_method == 'active') {
35
+ $active_list = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option('widget_list', array_keys($all_list));
36
+
37
+ foreach($all_list as $widget_slug => $info) {
38
+ if(!in_array($widget_slug, $active_list)) {
39
+ unset($all_list[$widget_slug]);
40
+ }
41
+ }
42
+ }
43
+
44
+ if($widget != '') {
45
+ return (isset($all_list[$widget]) ? $all_list[$widget] : false);
46
+ }
47
+
48
+ return $all_list;
49
+ }
50
+
51
+
52
+ /**
53
+ * Check if a widget is active or not, free package are considered inactive
54
+ *
55
+ * Usage : \ElementsKit_Lite\Config\Widget_List::instance()->is_active('facebook-review')
56
+ *
57
+ *
58
+ * @param $widget - widget slug
59
+ *
60
+ * @return bool
61
+ */
62
+ public function is_active($widget) {
63
+
64
+ $act = Widget_List::instance()->get_list(true, $widget, 'active');
65
+
66
+ return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
67
+ }
68
+
69
+
70
+ private static $list = [
71
+ 'image-accordion' => [
72
+ 'slug' => 'image-accordion',
73
+ 'title' => 'Image Accordion',
74
+ 'package' => 'free', // free, pro, free
75
+ //'path' => 'path to the widget directory',
76
+ //'base_class_name' => 'main class name',
77
+ //'title' => 'widget title',
78
+ //'live' => 'live demo url'
79
+ ],
80
+ 'accordion' => [
81
+ 'slug' => 'accordion',
82
+ 'title' => 'Accordion',
83
+ 'package' => 'free',
84
+ ],
85
+ 'button' => [
86
+ 'slug' => 'button',
87
+ 'title' => 'Button',
88
+ 'package' => 'free',
89
+ ],
90
+ 'heading' => [
91
+ 'slug' => 'heading',
92
+ 'title' => 'Heading',
93
+ 'package' => 'free',
94
+ ],
95
+ 'blog-posts' => [
96
+ 'slug' => 'blog-posts',
97
+ 'title' => 'Blog Posts',
98
+ 'package' => 'free',
99
+ ],
100
+ 'icon-box' => [
101
+ 'slug' => 'icon-box',
102
+ 'title' => 'Icon Box',
103
+ 'package' => 'free',
104
+ ],
105
+ 'image-box' => [
106
+ 'slug' => 'image-box',
107
+ 'title' => 'Image Box',
108
+ 'package' => 'free',
109
+ ],
110
+ 'countdown-timer' => [
111
+ 'slug' => 'countdown-timer',
112
+ 'title' => 'Countdown Timer',
113
+ 'package' => 'free',
114
+ ],
115
+ 'client-logo' => [
116
+ 'slug' => 'client-logo',
117
+ 'title' => 'Client Logo',
118
+ 'package' => 'free',
119
+ ],
120
+ 'faq' => [
121
+ 'slug' => 'faq',
122
+ 'title' => 'Faq',
123
+ 'package' => 'free',
124
+ ],
125
+ 'funfact' => [
126
+ 'slug' => 'funfact',
127
+ 'title' => 'Funfact',
128
+ 'package' => 'free',
129
+ ],
130
+ 'image-comparison' => [
131
+ 'slug' => 'image-comparison',
132
+ 'title' => 'Image Comparison',
133
+ 'package' => 'free',
134
+ ],
135
+ 'lottie' => [
136
+ 'slug' => 'lottie',
137
+ 'title' => 'Lottie',
138
+ 'package' => 'free',
139
+ ],
140
+ 'testimonial' => [
141
+ 'slug' => 'testimonial',
142
+ 'title' => 'Testimonial',
143
+ 'package' => 'free',
144
+ ],
145
+ 'pricing' => [
146
+ 'slug' => 'pricing',
147
+ 'title' => 'Pricing',
148
+ 'package' => 'free',
149
+ ],
150
+ 'team' => [
151
+ 'slug' => 'team',
152
+ 'title' => 'Team',
153
+ 'package' => 'free',
154
+ ],
155
+ 'social' => [
156
+ 'slug' => 'social',
157
+ 'title' => 'Social',
158
+ 'package' => 'free',
159
+ ],
160
+ 'progressbar' => [
161
+ 'slug' => 'progressbar',
162
+ 'title' => 'Progressbar',
163
+ 'package' => 'free',
164
+ ],
165
+ 'category-list' => [
166
+ 'slug' => 'category-list',
167
+ 'title' => 'Category List',
168
+ 'package' => 'free',
169
+ ],
170
+ 'page-list' => [
171
+ 'slug' => 'page-list',
172
+ 'title' => 'Page List',
173
+ 'package' => 'free',
174
+ ],
175
+ 'post-grid' => [
176
+ 'slug' => 'post-grid',
177
+ 'title' => 'Post Grid',
178
+ 'package' => 'free',
179
+ ],
180
+ 'post-list' => [
181
+ 'slug' => 'post-list',
182
+ 'title' => 'Post List',
183
+ 'package' => 'free',
184
+ ],
185
+ 'post-tab' => [
186
+ 'slug' => 'post-tab',
187
+ 'title' => 'Post Tab',
188
+ 'package' => 'free',
189
+ ],
190
+ 'nav-menu' => [
191
+ 'slug' => 'nav-menu',
192
+ 'title' => 'Nav Menu',
193
+ 'package' => 'free',
194
+ ],
195
+ 'mail-chimp' => [
196
+ 'slug' => 'mail-chimp',
197
+ 'title' => 'Mail Chimp',
198
+ 'package' => 'free',
199
+ ],
200
+ 'header-info' => [
201
+ 'slug' => 'header-info',
202
+ 'title' => 'Header Info',
203
+ 'package' => 'free',
204
+ ],
205
+ 'piechart' => [
206
+ 'slug' => 'piechart',
207
+ 'title' => 'Piechart',
208
+ 'package' => 'free',
209
+ ],
210
+ 'header-search' => [
211
+ 'slug' => 'header-search',
212
+ 'title' => 'Header Search',
213
+ 'package' => 'free',
214
+ ],
215
+ 'header-offcanvas' => [
216
+ 'slug' => 'header-offcanvas',
217
+ 'title' => 'Header Offcanvas',
218
+ 'package' => 'free',
219
+ ],
220
+ 'tab' => [
221
+ 'slug' => 'tab',
222
+ 'title' => 'Tab',
223
+ 'package' => 'free',
224
+ ],
225
+ 'contact-form7' => [
226
+ 'slug' => 'contact-form7',
227
+ 'title' => 'Contact Form7',
228
+ 'package' => 'free',
229
+ ],
230
+ 'video' => [
231
+ 'slug' => 'video',
232
+ 'title' => 'Video',
233
+ 'package' => 'free',
234
+ ],
235
+ 'business-hours' => [
236
+ 'slug' => 'business-hours',
237
+ 'title' => 'Business Hours',
238
+ 'package' => 'free',
239
+ ],
240
+ 'drop-caps' => [
241
+ 'slug' => 'drop-caps',
242
+ 'title' => 'Drop Caps',
243
+ 'package' => 'free',
244
+ ],
245
+ 'social-share' => [
246
+ 'slug' => 'social-share',
247
+ 'title' => 'Social Share',
248
+ 'package' => 'free',
249
+ ],
250
+ 'dual-button' => [
251
+ 'slug' => 'dual-button',
252
+ 'title' => 'Dual Button',
253
+ 'package' => 'free',
254
+ ],
255
+ 'caldera-forms' => [
256
+ 'slug' => 'caldera-forms',
257
+ 'title' => 'Caldera Forms',
258
+ 'package' => 'free',
259
+ ],
260
+ 'we-forms' => [
261
+ 'slug' => 'we-forms',
262
+ 'title' => 'We Forms',
263
+ 'package' => 'free',
264
+ ],
265
+ 'wp-forms' => [
266
+ 'slug' => 'wp-forms',
267
+ 'title' => 'Wp Forms',
268
+ 'package' => 'free',
269
+ ],
270
+
271
+ 'ninja-forms' => [
272
+ 'slug' => 'ninja-forms',
273
+ 'title' => 'Ninja Forms',
274
+ 'package' => 'free',
275
+ ],
276
+ 'tablepress' => [
277
+ 'slug' => 'tablepress',
278
+ 'title' => 'Tablepress',
279
+ 'package' => 'free',
280
+ ],
281
+ 'advanced-accordion' => [
282
+ 'slug' => 'advanced-accordion',
283
+ 'title' => 'Advanced Accordion',
284
+ 'package' => 'pro-disabled',
285
+ ],
286
+ 'advanced-tab' => [
287
+ 'slug' => 'advanced-tab',
288
+ 'title' => 'Advanced Tab',
289
+ 'package' => 'pro-disabled',
290
+ ],
291
+ 'hotspot' => [
292
+ 'slug' => 'hotspot',
293
+ 'title' => 'Hotspot',
294
+ 'package' => 'pro-disabled',
295
+ ],
296
+ 'motion-text' => [
297
+ 'slug' => 'motion-text',
298
+ 'title' => 'Motion Text',
299
+ 'package' => 'pro-disabled',
300
+ ],
301
+ 'twitter-feed' => [
302
+ 'slug' => 'twitter-feed',
303
+ 'title' => 'Twitter Feed',
304
+ 'package' => 'pro-disabled',
305
+ ],
306
+
307
+ 'instagram-feed' => [
308
+ 'slug' => 'instagram-feed',
309
+ 'title' => 'Instagram Feed',
310
+ 'package' => 'pro-disabled',
311
+ ],
312
+ 'gallery' => [
313
+ 'slug' => 'gallery',
314
+ 'title' => 'Gallery',
315
+ 'package' => 'pro-disabled',
316
+ ],
317
+ 'chart' => [
318
+ 'slug' => 'chart',
319
+ 'title' => 'Chart',
320
+ 'package' => 'pro-disabled',
321
+ ],
322
+ 'woo-category-list' => [
323
+ 'slug' => 'woo-category-list',
324
+ 'title' => 'Woo Category List',
325
+ 'package' => 'pro-disabled',
326
+ ],
327
+ 'woo-mini-cart' => [
328
+ 'slug' => 'woo-mini-cart',
329
+ 'title' => 'Woo Mini Cart',
330
+ 'package' => 'pro-disabled',
331
+ ],
332
+ 'woo-product-carousel' => [
333
+ 'slug' => 'woo-product-carousel',
334
+ 'title' => 'Woo Product Carousel',
335
+ 'package' => 'pro-disabled',
336
+ ],
337
+ 'woo-product-list' => [
338
+ 'slug' => 'woo-product-list',
339
+ 'title' => 'Woo Product List',
340
+ 'package' => 'pro-disabled',
341
+ ],
342
+ 'table' => [
343
+ 'slug' => 'table',
344
+ 'title' => 'Table',
345
+ 'package' => 'pro-disabled',
346
+ ],
347
+ 'timeline' => [
348
+ 'slug' => 'timeline',
349
+ 'title' => 'Timeline',
350
+ 'package' => 'pro-disabled',
351
+ ],
352
+ 'creative-button' => [
353
+ 'slug' => 'creative-button',
354
+ 'title' => 'Creative Button',
355
+ 'package' => 'pro-disabled',
356
+ ],
357
+ 'vertical-menu' => [
358
+ 'slug' => 'vertical-menu',
359
+ 'title' => 'Vertical Menu',
360
+ 'package' => 'pro-disabled',
361
+ ],
362
+ 'advanced-toggle' => [
363
+ 'slug' => 'advanced-toggle',
364
+ 'title' => 'Advanced Toggle',
365
+ 'package' => 'pro-disabled',
366
+ ],
367
+ 'video-gallery' => [
368
+ 'slug' => 'video-gallery',
369
+ 'title' => 'Video Gallery',
370
+ 'package' => 'pro-disabled',
371
+ ],
372
+ 'zoom' => [
373
+ 'slug' => 'zoom',
374
+ 'title' => 'Zoom',
375
+ 'package' => 'pro-disabled',
376
+ ],
377
+ 'behance-feed' => [
378
+ 'slug' => 'behance-feed',
379
+ 'title' => 'Behance Feed',
380
+ 'package' => 'pro-disabled',
381
+ ],
382
+
383
+ 'breadcrumb' => [
384
+ 'slug' => 'breadcrumb',
385
+ 'title' => 'Breadcrumb',
386
+ 'package' => 'pro-disabled',
387
+ ],
388
+
389
+ 'dribble-feed' => [
390
+ 'slug' => 'dribble-feed',
391
+ 'title' => 'Dribble Feed',
392
+ 'package' => 'pro-disabled',
393
+ ],
394
+
395
+ 'facebook-feed' => [
396
+ 'slug' => 'facebook-feed',
397
+ 'title' => 'Facebook feed',
398
+ 'package' => 'pro-disabled',
399
+ ],
400
+
401
+ 'facebook-review' => [
402
+ 'slug' => 'facebook-review',
403
+ 'title' => 'Facebook review',
404
+ 'package' => 'pro-disabled',
405
+ ],
406
+
407
+ 'trustpilot' => [
408
+ 'slug' => 'trustpilot',
409
+ 'title' => 'Trustpilot',
410
+ 'package' => 'pro-disabled',
411
+ ],
412
+
413
+ 'yelp' => [
414
+ 'slug' => 'yelp',
415
+ 'title' => 'Yelp',
416
+ 'package' => 'pro-disabled',
417
+ ],
418
+
419
+ 'pinterest-feed' => [
420
+ 'slug' => 'pinterest-feed',
421
+ 'title' => 'Pinterest Feed',
422
+ 'package' => 'pro-disabled',
423
+ ],
424
+
425
+ // 'popup-modal' => [
426
+ // 'slug' => 'popup-modal',
427
+ // 'title' => 'Popup Modal',
428
+ // 'package' => 'pro-disabled',
429
+ // ],
430
+
431
+ 'google-map' => [
432
+ 'slug' => 'google-map',
433
+ 'title' => 'Google Map',
434
+ 'package' => 'pro-disabled',
435
+ ],
436
+ 'unfold' => [
437
+ 'slug' => 'unfold',
438
+ 'title' => 'Unfold',
439
+ 'package' => 'pro-disabled',
440
+ ],
441
+ ];
442
+ }
core.php DELETED
@@ -1,393 +0,0 @@
1
- <?php
2
-
3
- defined( 'ABSPATH' ) || exit;
4
-
5
- if(!class_exists('ElementsKit')):
6
- final class ElementsKit{
7
- /**
8
- * Plugin Version
9
- *
10
- * @since 1.0.0
11
- * @var string The plugin version.
12
- */
13
- const VERSION = '1.5.9';
14
-
15
- /**
16
- * Package type
17
- *
18
- * @since 1.1.0
19
- * @var string The plugin purchase type [pro/ free].
20
- */
21
- const PACKAGE_TYPE = 'free';
22
-
23
- /**
24
- * Product ID
25
- *
26
- * @since 1.2.6
27
- * @var string The plugin ID in our server.
28
- */
29
- const PRODUCT_ID = '9';
30
-
31
- /**
32
- * Minimum Elementor Version
33
- *
34
- * @since 1.0.0
35
- * @var string Minimum Elementor version required to run the plugin.
36
- */
37
-
38
- const MINIMUM_ELEMENTOR_VERSION = '2.4.0';
39
-
40
- /**
41
- * Minimum PHP Version
42
- *
43
- * @since 1.0.0
44
- * @var string Minimum PHP version required to run the plugin.
45
- */
46
- const MINIMUM_PHP_VERSION = '5.6';
47
-
48
- /**
49
- * API url
50
- *
51
- * @since 1.0.0
52
- * @var string plugins's root url.
53
- */
54
- static function api_url(){
55
- return 'https://api.wpmet.com/public/';
56
- }
57
-
58
- /**
59
- * Plugin url
60
- *
61
- * @since 1.0.0
62
- * @var string plugins's root url.
63
- */
64
- static function plugin_url(){
65
- return trailingslashit(plugin_dir_url( __FILE__ ));
66
- }
67
-
68
- /**
69
- * Plugin dir
70
- *
71
- * @since 1.0.0
72
- * @var string plugins's root directory.
73
- */
74
- static function plugin_dir(){
75
- return trailingslashit(plugin_dir_path( __FILE__ ));
76
- }
77
-
78
- /**
79
- * Plugin's widget directory.
80
- *
81
- * @since 1.0.0
82
- * @var string widget's root directory.
83
- */
84
- static function widget_dir(){
85
- return self::plugin_dir() . 'widgets/';
86
- }
87
-
88
- /**
89
- * Plugin's widget url.
90
- *
91
- * @since 1.0.0
92
- * @var string widget's root url.
93
- */
94
- static function widget_url(){
95
- return self::plugin_url() . 'widgets/';
96
- }
97
-
98
-
99
- /**
100
- * Plugin's widget image choose url.
101
- *
102
- * @since 1.0.0
103
- * @var string widget image choose's root url.
104
- */
105
-
106
- /**
107
- * Plugin's module directory.
108
- *
109
- * @since 1.0.0
110
- * @var string module's root directory.
111
- */
112
- static function module_dir(){
113
- return self::plugin_dir() . 'modules/';
114
- }
115
-
116
- /**
117
- * Plugin's module url.
118
- *
119
- * @since 1.0.0
120
- * @var string module's root url.
121
- */
122
- static function module_url(){
123
- return self::plugin_url() . 'modules/';
124
- }
125
-
126
-
127
- /**
128
- * Plugin's lib directory.
129
- *
130
- * @since 1.0.0
131
- * @var string lib's root directory.
132
- */
133
- static function lib_dir(){
134
- return self::plugin_dir() . 'libs/';
135
- }
136
-
137
- /**
138
- * Plugin's lib url.
139
- *
140
- * @since 1.0.0
141
- * @var string lib's root url.
142
- */
143
- static function lib_url(){
144
- return self::plugin_url() . 'libs/';
145
- }
146
-
147
- /**
148
- * Constructor
149
- *
150
- * @since 1.0.0
151
- * @access public
152
- */
153
- public function __construct() {
154
- // Load translation
155
- add_action( 'init', array( $this, 'i18n' ) );
156
- // Init Plugin
157
- $this->init();
158
- }
159
-
160
- /**
161
- * Load Textdomain
162
- *
163
- * Load plugin localization files.
164
- * Fired by `init` action hook.
165
- *
166
- * @since 1.0.0
167
- * @access public
168
- */
169
- public function i18n() {
170
- load_plugin_textdomain( 'elementskit', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
171
- }
172
-
173
- /**
174
- * Initialize the plugin
175
- *
176
- * Checks for basic plugin requirements, if one check fail don't continue,
177
- * if all check have passed include the plugin class.
178
- *
179
- * Fired by `plugins_loaded` action hook.
180
- *
181
- * @since 1.0.0
182
- * @access public
183
- */
184
- public function init() {
185
- // Load the main static helper class.
186
- require_once self::plugin_dir() . 'helpers/notice.php';
187
- require_once self::plugin_dir() . 'helpers/utils.php';
188
-
189
- // Check if Elementor installed and activated.
190
- if ( ! did_action( 'elementor/loaded' ) ) {
191
- add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
192
- return;
193
- }
194
- // Check for required Elementor version.
195
- if ( ! version_compare( ELEMENTOR_VERSION, self::MINIMUM_ELEMENTOR_VERSION, '>=' ) ) {
196
- add_action( 'admin_notices', array( $this, 'failed_elementor_version' ) );
197
- return;
198
- }
199
- // Check for required PHP version.
200
- if ( version_compare( PHP_VERSION, self::MINIMUM_PHP_VERSION, '<' ) ) {
201
- add_action( 'admin_notices', array( $this, 'failed_php_version' ) );
202
- return;
203
- }
204
- // Once we get here, We have passed all validation checks so we can safely include our plugin.
205
-
206
- // Register ElementsKit widget category
207
- add_action('elementor/init', [$this, 'elementor_widget_category']);
208
-
209
- add_action( 'elementor/init', function(){
210
- // Load the Handler class, it's the core class of ElementsKit.
211
- require_once self::plugin_dir() . 'handler.php';
212
- });
213
-
214
- }
215
-
216
- /**
217
- * Admin notice
218
- *
219
- * Warning when the site doesn't have required Elementor.
220
- *
221
- * @since 1.0.0
222
- * @access public
223
- */
224
- public function missing_elementor() {
225
- if ( isset( $_GET['activate'] ) ) {
226
- unset( $_GET['activate'] );
227
- }
228
-
229
- if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
230
- $btn['label'] = esc_html__('Activate Elementor', 'elementskit');
231
- $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
232
- } else {
233
- $btn['label'] = esc_html__('Install Elementor', 'elementskit');
234
- $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
235
- }
236
-
237
- \ElementsKit\Notice::push(
238
- [
239
- 'id' => 'unsupported-elementor-version',
240
- 'type' => 'error',
241
- 'dismissible' => true,
242
- 'btn' => $btn,
243
- 'message' => sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit' ), self::MINIMUM_ELEMENTOR_VERSION ),
244
- ]
245
- );
246
- }
247
-
248
-
249
- /**
250
- * Admin notice
251
- *
252
- * Warning when the site doesn't have a minimum required PHP version.
253
- *
254
- * @since 1.0.0
255
- * @access public
256
- */
257
- public function admin_notice_minimum_php_version() {
258
- \ElementsKit\Notice::push(
259
- [
260
- 'id' => 'unsupported-php-version',
261
- 'type' => 'error',
262
- 'dismissible' => true,
263
- 'message' => sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit' ), self::MINIMUM_PHP_VERSION ),
264
- ]
265
- );
266
- }
267
-
268
- /**
269
- * Add category.
270
- *
271
- * Register custom widget category in Elementor's editor
272
- *
273
- * @since 1.0.0
274
- * @access public
275
- */
276
- public function elementor_widget_category($widgets_manager){
277
- \Elementor\Plugin::$instance->elements_manager->add_category(
278
- 'elementskit',
279
- [
280
- 'title' =>esc_html__( 'ElementsKit', 'elementskit' ),
281
- 'icon' => 'fa fa-plug',
282
- ],
283
- 1
284
- );
285
- \Elementor\Plugin::$instance->elements_manager->add_category(
286
- 'elementskit_headerfooter',
287
- [
288
- 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit' ),
289
- 'icon' => 'fa fa-plug',
290
- ],
291
- 1
292
- );
293
- }
294
-
295
-
296
- static function default_widgets($package = null){
297
- $package = ($package != null) ? $package : self::PACKAGE_TYPE;
298
-
299
- $default_list = [
300
- 'image-accordion',
301
- 'accordion',
302
- 'button',
303
- 'heading',
304
- 'blog-posts',
305
- 'icon-box',
306
- 'image-box',
307
- 'countdown-timer',
308
- 'client-logo',
309
- 'faq',
310
- 'funfact',
311
- 'image-comparison',
312
- 'lottie',
313
- 'testimonial',
314
- 'pricing',
315
- 'team',
316
- 'social',
317
- 'progressbar',
318
- 'category-list',
319
- 'page-list',
320
- 'post-grid',
321
- 'post-list',
322
- 'post-tab',
323
- 'nav-menu',
324
- 'mail-chimp',
325
- 'header-info',
326
- 'piechart',
327
- 'header-search',
328
- 'header-offcanvas',
329
- 'tab',
330
- 'contact-form7',
331
- 'video',
332
- 'business-hours',
333
- 'drop-caps',
334
- 'social-share',
335
- 'dual-button',
336
- 'caldera-forms',
337
- 'we-forms',
338
- 'wp-forms',
339
- 'ninja-forms',
340
- ];
341
-
342
- $optional_list = [
343
- 'advanced-accordion',
344
- 'advanced-tab',
345
- 'hotspot',
346
- 'motion-text',
347
- 'twitter-feed',
348
- 'facebook-feed',
349
- 'instagram-feed',
350
- 'gallery',
351
- 'chart',
352
- 'woo-category-list',
353
- 'woo-mini-cart',
354
- 'woo-product-carousel',
355
- 'woo-product-list',
356
- 'table',
357
- 'timeline',
358
- 'creative-button',
359
- 'vertical-menu',
360
- 'advanced-toggle'
361
- ];
362
-
363
- if(class_exists('\ElementsKit_Widget_Config')){
364
- $default_list = \ElementsKit_Widget_Config::instance()->get_default_widgets();
365
- $optional_list = \ElementsKit_Widget_Config::instance()->get_widgets();
366
-
367
- return (array_merge($default_list, $optional_list));
368
- }else{
369
- return ($package == 'pro') ? array_merge($default_list, $optional_list) : $default_list;
370
- }
371
- }
372
-
373
- static function default_modules($package = null){
374
- $package = ($package != null) ? $package : self::PACKAGE_TYPE;
375
- $default_list = [
376
- 'header-footer',
377
- 'megamenu',
378
- 'onepage-scroll',
379
- 'widget-builder'
380
- ];
381
-
382
- $optional_list =[
383
- 'parallax',
384
- 'sticky-content',
385
- ];
386
-
387
- return ($package == 'pro') ? array_merge($default_list, $optional_list) : $default_list;
388
- }
389
- }
390
-
391
- new ElementsKit();
392
-
393
- endif;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
core/build-inline-scripts.php CHANGED
@@ -1,88 +1,53 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- /**
7
- * Inline script registrar.
8
- *
9
- * Returns all necessary inline js & css.
10
- *
11
- * @since 1.0.0
12
- * @access public
13
- */
14
- class Build_Inline_Scripts{
15
-
16
- /**
17
- * The class instance.
18
- *
19
- * @since 1.0.0
20
- * @access public
21
- * @static
22
- *
23
- * @var Build_Modules
24
- */
25
- public static $instance = null;
26
-
27
- function __construct(){
28
- add_action('wp_enqueue_scripts', [$this, 'frontend_js']);
29
- add_action('admin_print_scripts', [$this, 'admin_js']);
30
- }
31
-
32
-
33
- // scripts for common end, admin & frontend
34
- public function common_js(){
35
- ob_start(); ?>
36
-
37
- //console.log(window.elementskit);
38
-
39
- var elementskit = {
40
- resturl: '<?php echo get_rest_url() . 'elementskit/v1/'; ?>',
41
- }
42
-
43
- //console.log(window.elementskit);
44
- <?php
45
- $output = ob_get_contents();
46
- ob_end_clean();
47
- return $output;
48
- }
49
-
50
-
51
-
52
- // scripts for frontend
53
- public function frontend_js(){
54
- $js = $this->common_js();
55
- wp_add_inline_script('elementskit-framework-js-frontend', $js);
56
- }
57
-
58
-
59
- // scripts for admin
60
- public function admin_js(){
61
- echo "<script type='text/javascript'>\n";
62
- echo \ElementsKit\Utils::render($this->common_js());
63
- echo "\n</script>";
64
- }
65
-
66
-
67
-
68
- /**
69
- * Instance.
70
- *
71
- * Ensures only one instance of the class is loaded or can be loaded.
72
- *
73
- * @since 1.0.0
74
- * @access public
75
- * @static
76
- *
77
- * @return Build_Widgets An instance of the class.
78
- */
79
- public static function instance() {
80
- if ( is_null( self::$instance ) ) {
81
-
82
- // Fire the class instance
83
- self::$instance = new self();
84
- }
85
-
86
- return self::$instance;
87
- }
88
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Inline script registrar.
8
+ *
9
+ * Returns all necessary inline js & css.
10
+ *
11
+ * @since 1.0.0
12
+ * @access public
13
+ */
14
+ class Build_Inline_Scripts{
15
+
16
+ use \ElementsKit_Lite\Traits\Singleton;
17
+
18
+ function __construct(){
19
+ add_action('wp_enqueue_scripts', [$this, 'frontend_js']);
20
+ add_action('admin_print_scripts', [$this, 'admin_js']);
21
+ }
22
+
23
+
24
+ // scripts for common end, admin & frontend
25
+ public function common_js(){
26
+ ob_start(); ?>
27
+
28
+ var elementskit = {
29
+ resturl: '<?php echo get_rest_url() . 'elementskit/v1/'; ?>',
30
+ }
31
+
32
+ <?php
33
+ $output = ob_get_contents();
34
+ ob_end_clean();
35
+ return $output;
36
+ }
37
+
38
+
39
+
40
+ // scripts for frontend
41
+ public function frontend_js(){
42
+ $js = $this->common_js();
43
+ wp_add_inline_script('elementskit-framework-js-frontend', $js);
44
+ }
45
+
46
+
47
+ // scripts for admin
48
+ public function admin_js(){
49
+ echo "<script type='text/javascript'>\n";
50
+ echo \ElementsKit_Lite\Utils::render($this->common_js());
51
+ echo "\n</script>";
52
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  }
core/build-modules.php CHANGED
@@ -1,98 +1,62 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
- use ElementsKit\Libs\Framework\Attr;
4
-
5
- defined( 'ABSPATH' ) || exit;
6
-
7
- /**
8
- * Module registrar.
9
- *
10
- * Call assosiated classes of every modules.
11
- *
12
- * @since 1.0.0
13
- * @access public
14
- */
15
- class Build_Modules{
16
-
17
- private $module_dir;
18
-
19
- /**
20
- * Hold the module list.
21
- *
22
- * @since 1.0.0
23
- * @access public
24
- * @static
25
- */
26
-
27
- /**
28
- * The class instance.
29
- *
30
- * @since 1.0.0
31
- * @access public
32
- * @static
33
- *
34
- * @var Build_Modules
35
- */
36
- public static $instance = null;
37
-
38
-
39
- private $system_modules = [
40
- 'dynamic-content',
41
- 'library',
42
- 'controls',
43
- ];
44
-
45
- private $core_modules;
46
-
47
- private $active_modules;
48
-
49
- public function __construct(){
50
- $hotfix = apply_filters('elementskit/modules/list', []);
51
- $this->system_modules = array_merge($this->system_modules, array_keys($hotfix));
52
-
53
- $this->core_modules = array_merge($this->system_modules, \ElementsKit::default_modules());
54
- $this->active_modules = Attr::instance()->utils->get_option('module_list', $this->core_modules);
55
- $this->active_modules = array_merge($this->active_modules, $this->system_modules);
56
-
57
- foreach($this->active_modules as $module){
58
- if(in_array($module, $this->core_modules)){
59
-
60
- if(isset($hotfix[$module]) && isset($hotfix[$module]['path'])){
61
- include_once $hotfix[$module]['path'] . 'init.php';
62
- }
63
-
64
- if(isset($hotfix[$module]) && isset($hotfix[$module]['base_class_name'])){
65
- $class_name = $hotfix[$module]['base_class_name'];
66
- }else{
67
- $class_name = '\ElementsKit\Modules\\'. \ElementsKit\Utils::make_classname($module) .'\Init';
68
- }
69
-
70
- // make the class name and call it.
71
- if(class_exists($class_name)){
72
- new $class_name();
73
- }
74
- }
75
- }
76
- }
77
-
78
- /**
79
- * Instance.
80
- *
81
- * Ensures only one instance of the class is loaded or can be loaded.
82
- *
83
- * @since 1.0.0
84
- * @access public
85
- * @static
86
- *
87
- * @return Build_Widgets An instance of the class.
88
- */
89
- public static function instance() {
90
- if ( is_null( self::$instance ) ) {
91
-
92
- // Fire the class instance
93
- self::$instance = new self();
94
- }
95
-
96
- return self::$instance;
97
- }
98
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+ use ElementsKit_Lite\Libs\Framework\Attr;
4
+
5
+ defined( 'ABSPATH' ) || exit;
6
+
7
+ /**
8
+ * Module registrar.
9
+ *
10
+ * Call assosiated classes of every modules.
11
+ *
12
+ * @since 1.0.0
13
+ * @access public
14
+ */
15
+ class Build_Modules{
16
+
17
+ private $all_modules;
18
+
19
+ private $active_modules;
20
+
21
+ use \ElementsKit_Lite\Traits\Singleton;
22
+
23
+ /**
24
+ * Hold the module list.
25
+ *
26
+ * @since 1.0.0
27
+ * @access public
28
+ * @static
29
+ */
30
+
31
+ private $system_modules = [
32
+ 'dynamic-content',
33
+ 'library',
34
+ 'controls',
35
+ ];
36
+
37
+ public function __construct(){
38
+ $this->all_modules = \ElementsKit_Lite\Config\Module_List::instance()->get_list();
39
+ $this->active_modules = Attr::instance()->utils->get_option('module_list', array_keys($this->all_modules));
40
+ $this->active_modules = array_merge($this->active_modules, $this->system_modules);
41
+
42
+ foreach($this->active_modules as $module_slug){
43
+ if(isset($this->all_modules[$module_slug]['package']) && $this->all_modules[$module_slug]['package'] == 'pro-disabled'){
44
+ continue;
45
+ }
46
+
47
+ if(isset($this->all_modules[$module_slug]['path'])){
48
+ include_once $this->all_modules[$module_slug]['path'] . 'init.php';
49
+ }
50
+
51
+ // make the class name and call it.
52
+ $class_name = (
53
+ isset($this->all_modules[$module_slug]['base_class_name'])
54
+ ? $this->all_modules[$module_slug]['base_class_name']
55
+ : '\ElementsKit_Lite\Modules\\'. \ElementsKit_Lite\Utils::make_classname($module_slug) .'\Init'
56
+ );
57
+ if(class_exists($class_name)){
58
+ new $class_name();
59
+ }
60
+ }
61
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  }
core/build-widgets.php CHANGED
@@ -1,129 +1,101 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
- use ElementsKit\Libs\Framework\Attr;
4
-
5
- defined( 'ABSPATH' ) || exit;
6
-
7
- class Build_Widgets{
8
-
9
- /**
10
- * Collection of default widgets.
11
- *
12
- * @since 1.0.0
13
- * @access private
14
- */
15
- private $active_widgets;
16
- private $core_widgets;
17
-
18
- /**
19
- * The class instance.
20
- *
21
- * @since 1.0.0
22
- * @access public
23
- * @static
24
- *
25
- * @var Build_Widgets
26
- */
27
- public static $instance = null;
28
-
29
-
30
- public function __construct() {
31
-
32
- new \ElementsKit\Widgets\Init\Enqueue_Scripts;
33
-
34
- $hotfix = apply_filters('elementskit/widgets/list', []);
35
-
36
- $this->core_widgets = array_merge(\ElementsKit::default_widgets(), array_keys($hotfix));
37
- $this->active_widgets = Attr::instance()->utils->get_option('widget_list', $this->core_widgets);
38
- $this->active_widgets = array_merge($this->active_widgets, array_keys($hotfix));
39
-
40
- // check if the widget is exists
41
- foreach($this->active_widgets as $widget){
42
- if(in_array($widget, $this->core_widgets)){
43
-
44
- if(isset($hotfix[$widget]) && isset($hotfix[$widget]['path'])){
45
- $wdir = $hotfix[$widget]['path'];
46
- }else{
47
- $wdir = (class_exists('\ElementsKit_Widget_Config')) ? \ElementsKit_Widget_Config::instance()->get_dir() . 'widgets/' : \ElementsKit::widget_dir();
48
- $wdir = $wdir . $widget .'/';
49
- }
50
-
51
- include_once $wdir . $widget . '.php';
52
- include_once $wdir . $widget . '-handler.php';
53
-
54
- if(isset($hotfix[$widget]) && isset($hotfix[$widget]['base_class_name'])){
55
- $base_class_name = $hotfix[$widget]['base_class_name'];
56
- }else{
57
- $base_class_name = '\ElementsKit\ElementsKit_Widget_' . \ElementsKit\Utils::make_classname($widget);
58
- }
59
-
60
- $this->init_widget($base_class_name);
61
- }
62
- }
63
-
64
- add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widget']);
65
- }
66
-
67
-
68
- public function init_widget($base_class_name){
69
- $handler_class = $base_class_name . '_Handler';
70
-
71
- $widget = new $handler_class();
72
-
73
- if($widget->scripts() != false){
74
- add_action( 'wp_enqueue_scripts', [$widget, 'scripts'] );
75
- }
76
-
77
- if($widget->inline_css() != false){
78
- wp_add_inline_style( 'elementskit-init-css', $widget->inline_css());
79
- }
80
-
81
- if($widget->inline_js() != false){
82
- wp_add_inline_script( 'elementskit-init-js', $widget->inline_js());
83
- }
84
-
85
- if($widget->register_api() != false){
86
- include_once $widget->register_api();
87
- $api_class = $base_class_name . '_Api';
88
- new $api_class();
89
- }
90
-
91
- if($widget->wp_init() != false){
92
- add_action('init', [$widget, 'wp_init']);
93
- }
94
- }
95
-
96
-
97
- public function register_widget($widgets_manager){
98
-
99
- foreach($this->active_widgets as $widget){
100
- if(in_array($widget, $this->core_widgets)){
101
- $class_name = '\Elementor\ElementsKit_Widget_' . \ElementsKit\Utils::make_classname($widget);
102
- if(class_exists($class_name)){
103
- $widgets_manager->register_widget_type(new $class_name());
104
- }
105
- }
106
- }
107
- }
108
-
109
- /**
110
- * Instance.
111
- *
112
- * Ensures only one instance of the class is loaded or can be loaded.
113
- *
114
- * @since 1.0.0
115
- * @access public
116
- * @static
117
- *
118
- * @return Build_Widgets An instance of the class.
119
- */
120
- public static function instance() {
121
- if ( is_null( self::$instance ) ) {
122
-
123
- // Fire the class instance
124
- self::$instance = new self();
125
- }
126
-
127
- return self::$instance;
128
- }
129
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ use ElementsKit_Lite\Libs\Framework\Attr;
5
+
6
+ defined( 'ABSPATH' ) || exit;
7
+
8
+ class Build_Widgets{
9
+
10
+ /**
11
+ * Collection of default widgets.
12
+ *
13
+ * @since 1.0.0
14
+ * @access private
15
+ */
16
+ private $active_widgets;
17
+ private $all_widgets;
18
+
19
+ use \ElementsKit_Lite\Traits\Singleton;
20
+
21
+ public function __construct() {
22
+
23
+ new \ElementsKit_Lite\Widgets\Init\Enqueue_Scripts;
24
+
25
+ $this->all_widgets = \ElementsKit_Lite\Config\Widget_List::instance()->get_list();
26
+ $this->active_widgets = Attr::instance()->utils->get_option('widget_list', array_keys($this->all_widgets));
27
+
28
+ // check if the widget is exists
29
+ foreach($this->active_widgets as $widget_slug){
30
+ if(array_key_exists($widget_slug, $this->all_widgets)){
31
+ if($this->all_widgets[$widget_slug]['package'] != 'pro-disabled'){
32
+ $this->add_widget($this->all_widgets[$widget_slug]);
33
+ }
34
+ }
35
+ }
36
+
37
+ add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widget']);
38
+ }
39
+
40
+
41
+ public function add_widget($widget_config){
42
+
43
+ $widget_dir = (
44
+ isset($widget_config['path'])
45
+ ? $widget_config['path']
46
+ : \ElementsKit_Lite::widget_dir() . $widget_config['slug'] . '/'
47
+ );
48
+
49
+ include $widget_dir . $widget_config['slug'] . '.php';
50
+ include $widget_dir . $widget_config['slug'] . '-handler.php';
51
+
52
+ $base_class_name = (
53
+ (isset($widget_config['base_class_name']))
54
+ ? $widget_config['base_class_name']
55
+ : '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_config['slug'])
56
+ );
57
+
58
+ $handler = $base_class_name . '_Handler';
59
+ $handler_class = new $handler();
60
+
61
+ if($handler_class->scripts() != false){
62
+ add_action( 'wp_enqueue_scripts', [$handler_class, 'scripts'] );
63
+ }
64
+
65
+ if($handler_class->styles() != false){
66
+ add_action( 'wp_enqueue_scripts', [$handler_class, 'styles'] );
67
+ }
68
+
69
+ if($handler_class->inline_css() != false){
70
+ wp_add_inline_style( 'elementskit-init-css', $handler_class->inline_css());
71
+ }
72
+
73
+ if($handler_class->inline_js() != false){
74
+ wp_add_inline_script( 'elementskit-init-js', $handler_class->inline_js());
75
+ }
76
+
77
+ if($handler_class->register_api() != false){
78
+ if(\file_exists($handler_class->register_api())){
79
+ include_once $handler_class->register_api();
80
+ $api = $base_class_name . '_Api';
81
+ new $api();
82
+ }
83
+ }
84
+
85
+ if($handler_class->wp_init() != false){
86
+ add_action('init', [$handler_class, 'wp_init']);
87
+ }
88
+ }
89
+
90
+
91
+ public function register_widget($widgets_manager){
92
+ foreach($this->active_widgets as $widget_slug){
93
+ if(array_key_exists($widget_slug, $this->all_widgets)){
94
+ $class_name = '\Elementor\ElementsKit_Widget_' . \ElementsKit_Lite\Utils::make_classname($widget_slug);
95
+ if(class_exists($class_name)){
96
+ $widgets_manager->register_widget_type(new $class_name());
97
+ }
98
+ }
99
+ }
100
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
  }
core/handler-api.php CHANGED
@@ -1,37 +1,39 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
-
4
- class Handler_Api{
5
-
6
- public $prefix = '';
7
- public $param = '';
8
- public $request = null;
9
-
10
- public function __construct(){
11
- $this->config();
12
- $this->init();
13
- }
14
-
15
- public function config(){
16
-
17
- }
18
-
19
- public function init(){
20
- add_action( 'rest_api_init', function () {
21
- register_rest_route( untrailingslashit('elementskit/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
22
- 'methods' => \WP_REST_Server::ALLMETHODS,
23
- 'callback' => [$this, 'action'],
24
- ));
25
- });
26
- }
27
-
28
- public function action($request){
29
- $this->request = $request;
30
- $action_class = strtolower($this->request->get_method()) .'_'. sanitize_key($this->request['action']);
31
-
32
- if(method_exists($this, $action_class)){
33
- return $this->{$action_class}();
34
- }
35
- }
36
-
 
 
37
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ class Handler_Api{
5
+
6
+ public $prefix = '';
7
+ public $param = '';
8
+ public $request = null;
9
+
10
+ public function __construct(){
11
+ $this->config();
12
+ $this->init();
13
+ }
14
+
15
+ public function config(){
16
+
17
+ }
18
+
19
+ public function init(){
20
+ add_action( 'rest_api_init', function () {
21
+ register_rest_route( untrailingslashit('elementskit/v1/' . $this->prefix), '/(?P<action>\w+)/' . ltrim($this->param, '/'), array(
22
+ 'methods' => \WP_REST_Server::ALLMETHODS,
23
+ 'callback' => [$this, 'callback'],
24
+ 'permission_callback' => '__return_true',
25
+ // all permissions are implimented inside the callback action
26
+ ));
27
+ });
28
+ }
29
+
30
+ public function callback($request){
31
+ $this->request = $request;
32
+ $action_class = strtolower($this->request->get_method()) .'_'. $this->request['action'];
33
+
34
+ if(method_exists($this, $action_class)){
35
+ return $this->{$action_class}();
36
+ }
37
+ }
38
+
39
  }
core/handler-widget.php CHANGED
@@ -1,53 +1,56 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
-
4
- class Handler_Widget{
5
-
6
- public function wp_init(){
7
- return false;
8
- }
9
-
10
- static function get_name() {
11
- return false;
12
- }
13
-
14
- static function get_title() {
15
- return false;
16
- }
17
-
18
- static function get_icon() {
19
- return false;
20
- }
21
-
22
- static function get_categories() {
23
- return false;
24
- }
25
-
26
- static function get_dir() {
27
- return false;
28
- }
29
-
30
- static function get_url() {
31
- return false;
32
- }
33
-
34
- public function register_api(){
35
- return false;
36
- }
37
-
38
- public function inline_js(){
39
- return false;
40
- }
41
-
42
- public function inline_css(){
43
- return false;
44
- }
45
-
46
- public function sass(){
47
- return false;
48
- }
49
-
50
- public function scripts(){
51
- return false;
52
- }
 
 
 
53
  }
1
+ <?php
2
+ namespace ElementsKit_Lite\Core;
3
+
4
+ class Handler_Widget{
5
+
6
+ public function wp_init(){
7
+ return false;
8
+ }
9
+
10
+ static function get_name() {
11
+ return false;
12
+ }
13
+
14
+ static function get_title() {
15
+ return false;
16
+ }
17
+
18
+ static function get_icon() {
19
+ return false;
20
+ }
21
+
22
+ static function get_categories() {
23
+ return false;
24
+ }
25
+
26
+ static function get_dir() {
27
+ return false;
28
+ }
29
+
30
+ static function get_url() {
31
+ return false;
32
+ }
33
+
34
+ public function register_api(){
35
+ return false;
36
+ }
37
+
38
+ public function inline_js(){
39
+ return false;
40
+ }
41
+
42
+ public function inline_css(){
43
+ return false;
44
+ }
45
+
46
+ public function sass(){
47
+ return false;
48
+ }
49
+
50
+ public function scripts(){
51
+ return false;
52
+ }
53
+ public function styles(){
54
+ return false;
55
+ }
56
  }
core/hook-activation.php DELETED
@@ -1,30 +0,0 @@
1
- <?php
2
- namespace ElementsKit\Core;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
- class Activation_Hook{
7
- /**
8
- * Hooks on plugin activation.
9
- *
10
- * @since 1.0.0
11
- * @access private
12
- */
13
-
14
- public function __construct() {
15
- \ElementsKit\Autoloader::run();
16
- $this->flush();
17
- $this->set_activation_stamp();
18
- }
19
-
20
- public function flush(){
21
- $dynamic_content = new \ElementsKit\Modules\Dynamic_Content\Cpt();
22
- $dynamic_content->flush_rewrites();
23
- }
24
-
25
- public function set_activation_stamp(){
26
- update_option('elementskit_lite_activation_stamp', time());
27
- }
28
- }
29
-
30
- new Activation_Hook();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
elementskit-lite.php CHANGED
@@ -1,32 +1,386 @@
1
- <?php
2
-
3
- defined( 'ABSPATH' ) || exit;
4
- /**
5
- * Plugin Name: ElementsKit Lite
6
- * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
7
- * Plugin URI: https://wpmet.com/
8
- * Author: Wpmet
9
- * Version: 1.5.10
10
- * Author URI: https://products.wpmet.com/elementskit
11
- *
12
- * Text Domain: elementskit
13
- *
14
- * @package ElementsKit
15
- * @category Free
16
- *
17
- * Elementskit is a powerful addon for Elementor page builder.
18
- * It includes most comprehensive modules, such as "header footer builder", "mega menu",
19
- * "layout installer", "quick form builder" etc under the hood.
20
- * It has a tons of widgets to create any sites with an ease. It has some most unique
21
- * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area".
22
- *
23
- */
24
-
25
- register_activation_hook(__FILE__, function(){
26
- include_once plugin_dir_path( __FILE__ ) . 'autoloader.php';
27
- include_once plugin_dir_path( __FILE__ ) . 'core/hook-activation.php';
28
- });
29
-
30
- add_action('plugins_loaded', function(){
31
- include_once plugin_dir_path( __FILE__ ) . 'core.php';
32
- }, 112);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ defined( 'ABSPATH' ) || exit;
3
+
4
+ /**
5
+ * Plugin Name: ElementsKit Lite
6
+ * Description: The most advanced addons for Elementor with tons of widgets, Header builder, Footer builder, Mega menu builder, layout pack and powerful custom controls.
7
+ * Plugin URI: https://products.wpmet.com/elementskit
8
+ * Author: Wpmet
9
+ * Version: 2.0.10
10
+ * Author URI: https://wpmet.com/
11
+ *
12
+ * Text Domain: elementskit-lite
13
+ *
14
+ * ElementsKit is a powerful addon for Elementor page builder.
15
+ * It includes most comprehensive modules, such as "header footer builder", "mega menu",
16
+ * "layout installer", "quick form builder" etc under the hood.
17
+ * It has a tons of widgets to create any sites with an ease. It has some most unique
18
+ * and powerful custom controls for elementor, such as "image picker", "ajax select", "widget area".
19
+ *
20
+ */
21
+
22
+ final class ElementsKit_Lite{
23
+ /**
24
+ * Plugin Version
25
+ *
26
+ * @since 1.0.0
27
+ * @var string The plugin version.
28
+ */
29
+ static function version(){
30
+ return '2.0.10';
31
+ }
32
+
33
+ /**
34
+ * Package type
35
+ *
36
+ * @since 1.1.0
37
+ * @var string The plugin purchase type [pro/ free].
38
+ */
39
+ static function package_type(){
40
+ return apply_filters( 'elementskit/core/package_type', 'free' );
41
+ }
42
+
43
+ /**
44
+ * Product ID
45
+ *
46
+ * @since 1.2.6
47
+ * @var string The plugin ID in our server.
48
+ */
49
+ static function product_id(){
50
+ return '9';
51
+ }
52
+
53
+ /**
54
+ * Author Name
55
+ *
56
+ * @since 1.3.1
57
+ * @var string The plugin author.
58
+ */
59
+ static function author_name(){
60
+ return 'Wpmet';
61
+ }
62
+
63
+ /**
64
+ * Store Name
65
+ *
66
+ * @since 1.3.1
67
+ * @var string The store name: self site, envato.
68
+ */
69
+ static function store_name(){
70
+ return 'wordpressorg';
71
+ }
72
+
73
+ /**
74
+ * Minimum Elementor Version
75
+ *
76
+ * @since 1.0.0
77
+ * @var string Minimum Elementor version required to run the plugin.
78
+ */
79
+ static function min_el_version(){
80
+ return '2.4.0';
81
+ }
82
+
83
+ /**
84
+ * Minimum PHP Version
85
+ *
86
+ * @since 1.0.0
87
+ * @var string Minimum PHP version required to run the plugin.
88
+ */
89
+ static function min_php_version(){
90
+ return '7.0';
91
+ }
92
+
93
+ /**
94
+ * Plugin file
95
+ *
96
+ * @since 1.0.0
97
+ * @var string plugins's root file.
98
+ */
99
+ static function plugin_file(){
100
+ return __FILE__;
101
+ }
102
+
103
+ /**
104
+ * Plugin url
105
+ *
106
+ * @since 1.0.0
107
+ * @var string plugins's root url.
108
+ */
109
+ static function plugin_url(){
110
+ return trailingslashit(plugin_dir_url( __FILE__ ));
111
+ }
112
+
113
+ /**
114
+ * Plugin dir
115
+ *
116
+ * @since 1.0.0
117
+ * @var string plugins's root directory.
118
+ */
119
+ static function plugin_dir(){
120
+ return trailingslashit(plugin_dir_path( __FILE__ ));
121
+ }
122
+
123
+ /**
124
+ * Plugin's widget directory.
125
+ *
126
+ * @since 1.0.0
127
+ * @var string widget's root directory.
128
+ */
129
+ static function widget_dir(){
130
+ return self::plugin_dir() . 'widgets/';
131
+ }
132
+
133
+ /**
134
+ * Plugin's widget url.
135
+ *
136
+ * @since 1.0.0
137
+ * @var string widget's root url.
138
+ */
139
+ static function widget_url(){
140
+ return self::plugin_url() . 'widgets/';
141
+ }
142
+
143
+
144
+ /**
145
+ * API url
146
+ *
147
+ * @since 1.0.0
148
+ * @var string for license, layout notification related functions.
149
+ */
150
+ static function api_url(){
151
+ return 'https://api.wpmet.com/public/';
152
+ }
153
+
154
+ /**
155
+ * Account url
156
+ *
157
+ * @since 1.2.6
158
+ * @var string for plugin update notification, user account page.
159
+ */
160
+ static function account_url(){
161
+ return 'https://account.wpmet.com';
162
+ }
163
+
164
+ /**
165
+ * Plugin's module directory.
166
+ *
167
+ * @since 1.0.0
168
+ * @var string module's root directory.
169
+ */
170
+ static function module_dir(){
171
+ return self::plugin_dir() . 'modules/';
172
+ }
173
+
174
+ /**
175
+ * Plugin's module url.
176
+ *
177
+ * @since 1.0.0
178
+ * @var string module's root url.
179
+ */
180
+ static function module_url(){
181
+ return self::plugin_url() . 'modules/';
182
+ }
183
+
184
+
185
+ /**
186
+ * Plugin's lib directory.
187
+ *
188
+ * @since 1.0.0
189
+ * @var string lib's root directory.
190
+ */
191
+ static function lib_dir(){
192
+ return self::plugin_dir() . 'libs/';
193
+ }
194
+
195
+ /**
196
+ * Plugin's lib url.
197
+ *
198
+ * @since 1.0.0
199
+ * @var string lib's root url.
200
+ */
201
+ static function lib_url(){
202
+ return self::plugin_url() . 'libs/';
203
+ }
204
+
205
+ /**
206
+ * Constructor
207
+ *
208
+ * @since 1.0.0
209
+ * @access public
210
+ */
211
+ public function __construct() {
212
+ // Load the main static helper class.
213
+ require_once self::plugin_dir() . 'libs/notice/notice.php'; // new notice system
214
+ require_once self::plugin_dir() . 'libs/banner/init.php'; // new notice system
215
+ require_once self::plugin_dir() . 'libs/announcements/init.php'; // new announcements system
216
+ require_once self::plugin_dir() . 'libs/pro-awareness/init.php'; // pro menu class file
217
+ require_once self::plugin_dir() . 'helpers/utils.php';
218
+
219
+ // Load translation
220
+ add_action( 'init', array( $this, 'i18n' ) );
221
+ // Init Plugin
222
+ add_action( 'plugins_loaded', array( $this, 'init' ), 100 );
223
+ }
224
+
225
+ /**
226
+ * Load Textdomain
227
+ *
228
+ * Load plugin localization files.
229
+ * Fired by `init` action hook.
230
+ *
231
+ * @since 1.0.0
232
+ * @access public
233
+ */
234
+ public function i18n() {
235
+ load_plugin_textdomain( 'elementskit-lite', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
236
+ }
237
+
238
+ /**
239
+ * Initialize the plugin
240
+ *
241
+ * Checks for basic plugin requirements, if one check fail don't continue,
242
+ * if all check have passed include the plugin class.
243
+ *
244
+ * Fired by `plugins_loaded` action hook.
245
+ *
246
+ * @since 1.0.0
247
+ * @access public
248
+ */
249
+ public function init() {
250
+
251
+ // init notice class
252
+ \Oxaim\Libs\Notice::init();
253
+
254
+ // init pro menu class
255
+ \Wpmet\Libs\Pro_Awareness\Init::init();
256
+
257
+ // Check if Elementor installed and activated.
258
+ if ( ! did_action( 'elementor/loaded' ) ) {
259
+ add_action( 'admin_head', array( $this, 'missing_elementor' ) );
260
+ return;
261
+ }
262
+
263
+ // Check for required PHP version.
264
+ if ( version_compare( PHP_VERSION, self::min_php_version(), '<' ) ) {
265
+ add_action( 'admin_head', array( $this, 'failed_php_version' ) );
266
+ return;
267
+ }
268
+ // Once we get here, We have passed all validation checks so we can safely include our plugin.
269
+
270
+ // Register ElementsKit_Lite widget category
271
+ add_action('elementor/init', [$this, 'elementor_widget_category']);
272
+
273
+ add_action( 'elementor/init', function(){
274
+ if(class_exists('ElementsKit') && !class_exists('ElementsKit_Comp')){
275
+ return;
276
+ }
277
+
278
+ // adding backward classes and mathods for older 14 number themes.
279
+ require_once self::plugin_dir() . 'compatibility/backward/plugin-class-backward-compatibility.php';
280
+ require_once self::plugin_dir() . 'compatibility/backward/utils-backward-compablity.php';
281
+
282
+ // Load the Plugin class, it's the core class of ElementsKit_Lite.
283
+ require_once self::plugin_dir() . 'plugin.php';
284
+
285
+ // adding backward classes and mathods for older 14 number themes.
286
+ require_once self::plugin_dir() . 'compatibility/backward/module-list.php';
287
+ require_once self::plugin_dir() . 'compatibility/backward/widget-list.php';
288
+ });
289
+
290
+ }
291
+
292
+
293
+
294
+ /**
295
+ * Admin notice
296
+ *
297
+ * Warning when the site doesn't have required Elementor.
298
+ *
299
+ * @since 1.0.0
300
+ * @access public
301
+ */
302
+ public function missing_elementor() {
303
+ if ( isset( $_GET['activate'] ) ) {
304
+ unset( $_GET['activate'] );
305
+ }
306
+ $btn = [
307
+ 'default_class' => 'button',
308
+ 'class' => 'button-primary ', // button-primary button-secondary button-small button-large button-link
309
+ ];
310
+
311
+ if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
312
+ $btn['text'] = esc_html__('Activate Elementor', 'elementskit-lite');
313
+ $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
314
+ } else {
315
+ $btn['text'] = esc_html__('Install Elementor', 'elementskit-lite');
316
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
317
+ }
318
+
319
+ \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-elementor-version')
320
+ ->set_type('error')
321
+ ->set_message(sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit-lite' ), self::min_el_version() ))
322
+ ->set_button($btn)
323
+ ->call();
324
+ }
325
+
326
+
327
+ /**
328
+ * Admin notice
329
+ *
330
+ * Warning when the site doesn't have a minimum required PHP version.
331
+ *
332
+ * @since 1.0.0
333
+ * @access public
334
+ */
335
+ public function failed_php_version() {
336
+ \Oxaim\Libs\Notice::instance('elementskit-lite', 'unsupported-php-version')
337
+ ->set_type('error')
338
+ ->set_message(sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit-lite' ), self::min_php_version() ))
339
+ ->call();
340
+ }
341
+
342
+ /**
343
+ * Rewrite flush.
344
+ *
345
+ * @since 1.0.7
346
+ * @access public
347
+ */
348
+ public static function flush_rewrites(){
349
+
350
+ require_once self::module_dir() . 'dynamic-content/cpt.php';
351
+
352
+ new ElementsKit_Lite\Modules\Dynamic_Content\Cpt();
353
+
354
+ flush_rewrite_rules();
355
+ }
356
+ /**
357
+ * Add category.
358
+ *
359
+ * Register custom widget category in Elementor's editor
360
+ *
361
+ * @since 1.0.0
362
+ * @access public
363
+ */
364
+ public function elementor_widget_category($widgets_manager){
365
+ \Elementor\Plugin::$instance->elements_manager->add_category(
366
+ 'elementskit',
367
+ [
368
+ 'title' =>esc_html__( 'ElementsKit', 'elementskit-lite' ),
369
+ 'icon' => 'fa fa-plug',
370
+ ],
371
+ 1
372
+ );
373
+ \Elementor\Plugin::$instance->elements_manager->add_category(
374
+ 'elementskit_headerfooter',
375
+ [
376
+ 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit-lite' ),
377
+ 'icon' => 'fa fa-plug',
378
+ ],
379
+ 1
380
+ );
381
+ }
382
+ }
383
+
384
+ new ElementsKit_Lite();
385
+
386
+ register_activation_hook( __FILE__, 'ElementsKit_Lite::flush_rewrites' );
handler.php DELETED
@@ -1,257 +0,0 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
-
6
-
7
- /**
8
- * ElementsKit - the God class.
9
- * Initiate all necessary classes, hooks, configs.
10
- *
11
- * @since 1.1.0
12
- */
13
- class Handler{
14
-
15
-
16
- /**
17
- * The plugin instance.
18
- *
19
- * @since 1.0.0
20
- * @access public
21
- * @static
22
- *
23
- * @var Handler
24
- */
25
- public static $instance = null;
26
-
27
- /**
28
- * Construct the plugin object.
29
- *
30
- * @since 1.0.0
31
- * @access public
32
- */
33
- public function __construct() {
34
-
35
- // Call the method for ElementsKit autoloader.
36
- $this->registrar_autoloader();
37
-
38
- // Enqueue frontend scripts.
39
- add_action( 'wp_enqueue_scripts', [$this, 'enqueue_frontend'] );
40
-
41
- // Enqueue admin scripts.
42
- add_action( 'admin_enqueue_scripts', [$this, 'enqueue_admin'] );
43
-
44
- // Enqueue inline scripts
45
- Core\Build_Inline_Scripts::instance();
46
-
47
- // Register plugin settings pages
48
- Libs\Framework\Attr::instance();
49
-
50
- // Register default widgets
51
- Core\Build_Widgets::instance();
52
-
53
- // Register default modules
54
- Core\Build_Modules::instance();
55
-
56
- // Register ElementsKit supported widgets to Elementor from 3rd party plugins.
57
- add_action( 'elementor/widgets/widgets_registered', [$this, 'register_widgets'], 1050);
58
-
59
- // Adding pro lebel
60
- new Libs\Pro_Label\Init();
61
-
62
- Compatibility\Wpml\Init::instance();
63
- Compatibility\Conflicts\Init::instance();
64
-
65
- add_action('wp_head', [$this, 'add_meta_for_search_excluded']);
66
-
67
- // Add banner class
68
- add_action('admin_notices', function(){
69
- include \ElementsKit::lib_dir() . 'banner/init.php';
70
- \WpMet_Banner::run();
71
- });
72
-
73
- }
74
-
75
- /**
76
- * Enqueue scripts
77
- *
78
- * Enqueue js and css to frontend.
79
- *
80
- * @since 1.0.0
81
- * @access public
82
- */
83
- public function enqueue_frontend(){
84
- wp_enqueue_style( 'elementskit-framework-css-frontend', \ElementsKit::lib_url() . 'framework/assets/css/frontend-style.min.css', [], \ElementsKit::VERSION );
85
- wp_enqueue_script( 'elementskit-framework-js-frontend', \ElementsKit::lib_url() . 'framework/assets/js/frontend-script.js', ['jquery'], \ElementsKit::VERSION, true );
86
- }
87
- public function enqueue_frontend_inline(){
88
- $script_builder = new Core\Build_Inline_scripts();
89
- $script_builder->script_for_frontend();
90
- }
91
-
92
- /**
93
- * Enqueue scripts
94
- *
95
- * Enqueue js and css to admin.
96
- *
97
- * @since 1.0.0
98
- * @access public
99
- */
100
- public function enqueue_admin(){
101
- wp_register_style( 'elementskit-global-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-global.css', \ElementsKit::VERSION );
102
- wp_enqueue_style( 'elementskit-global-css-admin' );
103
-
104
- $screen = get_current_screen();
105
- if(!in_array($screen->id, ['nav-menus', 'toplevel_page_elementskit', 'edit-elementskit_template'])){
106
- return;
107
- }
108
-
109
- wp_register_style( 'fontawesome', \ElementsKit::widget_url() . 'init/assets/css/font-awesome.min.css', \ElementsKit::VERSION );
110
- wp_register_style( 'elementskit-font-css-admin', \ElementsKit::module_url() . 'controls/assets/css/ekiticons.css', \ElementsKit::VERSION );
111
- wp_register_style( 'elementskit-lib-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/framework.css', \ElementsKit::VERSION );
112
- wp_register_style( 'elementskit-init-css-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-style.css', \ElementsKit::VERSION );
113
- wp_register_style( 'elementskit-init-css-ems-admin', \ElementsKit::lib_url() . 'framework/assets/css/admin-style-ems-dev.css', \ElementsKit::VERSION );
114
-
115
-
116
- wp_enqueue_style( 'fontawesome' );
117
- wp_enqueue_style( 'elementskit-font-css-admin' );
118
- wp_enqueue_style( 'elementskit-lib-css-admin' );
119
- wp_enqueue_style( 'elementskit-init-css-ems-admin' );
120
- wp_enqueue_style( 'elementskit-init-css-admin' );
121
-
122
- wp_enqueue_script( 'elementskit-admin-core-ui', \ElementsKit::lib_url() . 'framework/assets/js/core-ui.min.js', \ElementsKit::VERSION, true );
123
- wp_enqueue_script( 'elementskit-init-js-admin', \ElementsKit::lib_url() . 'framework/assets/js/admin-script.js', ['jquery'], \ElementsKit::VERSION, true );
124
- }
125
- public function enqueue_admin_inline(){
126
- $script_builder = new Core\Build_Inline_scripts();
127
- $script_builder->script_for_admin();
128
- }
129
-
130
-
131
- /**
132
- * Control registrar.
133
- *
134
- * Register the custom controls for Elementor
135
- * using `elementskit/widgets/widgets_registered` action.
136
- *
137
- * @since 1.0.0
138
- * @access public
139
- */
140
- public function register_control($widgets_manager){
141
- do_action('elementskit/widgets/widgets_registered', $widgets_manager);
142
- }
143
-
144
-
145
- /**
146
- * Widget registrar.
147
- *
148
- * Retrieve all the registered widgets
149
- * using `elementor/widgets/widgets_registered` action.
150
- *
151
- * @since 1.0.0
152
- * @access public
153
- */
154
- public function register_widgets($widgets_manager){
155
- do_action('elementskit/widgets/widgets_registered', $widgets_manager);
156
- }
157
-
158
-
159
- /**
160
- * Construct the plugin version manager.
161
- *
162
- * @since 1.0.0
163
- * @access public
164
- */
165
- private function registrar_version_manager(){
166
- // run the migration class if current version is greater than old installed version.
167
- if(Helper::current_version() > Helper::old_version()){
168
- // load the update and related migration classes
169
- // new ElementsKit_Version_Manager();
170
- }
171
- }
172
-
173
-
174
- /**
175
- * Excluding ElementsKit template and megamenu content from search engine.
176
- * See - https://wordpress.org/support/topic/google-is-indexing-elementskit-content-as-separate-pages/
177
- *
178
- * @since 1.4.5
179
- * @access public
180
- */
181
- public function add_meta_for_search_excluded(){
182
- if (get_post_type() == 'elementskit_template' || get_post_type() == 'elementskit_content' ) {
183
- echo '<meta name="robots" content="noindex,nofollow" />', "\n";
184
- }
185
- }
186
-
187
-
188
- /**
189
- * Autoloader.
190
- *
191
- * ElementsKit autoloader loads all the classes needed to run the plugin.
192
- *
193
- * @since 1.0.0
194
- * @access private
195
- */
196
- private function registrar_autoloader() {
197
- require_once \ElementsKit::plugin_dir() . '/autoloader.php';
198
- Autoloader::run();
199
- }
200
-
201
-
202
- /**
203
- * Disable class cloning and throw an error on object clone.
204
- *
205
- * The whole idea of the singleton design pattern is that there is a single
206
- * object. Therefore, we don't want the object to be cloned.
207
- *
208
- * @access public
209
- * @since 1.0.0
210
- */
211
- public function __clone() {
212
-
213
- // Cloning instances of the class is forbidden.
214
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Cloning is forbidden.', 'elementskit' ), '1.0.0' );
215
- }
216
-
217
-
218
- /**
219
- * Disable unserializing of the class.
220
- *
221
- * @access public
222
- * @since 1.0.0
223
- */
224
- public function __wakeup() {
225
-
226
- // Unserializing instances of the class is forbidden.
227
- _doing_it_wrong( __FUNCTION__, esc_html__( 'Unserializing instances of this class is forbidden.', 'elementskit' ), '1.0.0' );
228
- }
229
-
230
-
231
- /**
232
- * Instance.
233
- *
234
- * Ensures only one instance of the plugin class is loaded or can be loaded.
235
- *
236
- * @since 1.0.0
237
- * @access public
238
- * @static
239
- *
240
- * @return Handler An instance of the class.
241
- */
242
- public static function instance() {
243
- if ( is_null( self::$instance ) ) {
244
-
245
- // Fire when ElementsKit instance.
246
- self::$instance = new self();
247
-
248
- // Fire when ElementsKit was fully loaded and instantiated.
249
- do_action( 'elementskit/loaded' );
250
- }
251
-
252
- return self::$instance;
253
- }
254
- }
255
-
256
- // Run the instance.
257
- Handler::instance();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
helpers/notice.php DELETED
@@ -1,185 +0,0 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- if ( ! defined( 'ABSPATH' ) ) die( 'Forbidden' );
5
- /**
6
- * ElementsKit notice class.
7
- * Handles dynamically notices for lazy developers.
8
- *
9
- * @author XpeedStudo team: alpha omega sigma
10
- * @since 1.0.0
11
- */
12
-
13
-
14
- class Notice {
15
-
16
- /**
17
- * Constructor
18
- *
19
- * @since 1.0.0
20
- */
21
- public function __construct() {
22
- add_action( 'admin_footer', [ $this, 'enqueue_scripts' ], 9999);
23
- add_action( 'wp_ajax_elementskit-notices', [ $this, 'dismiss' ] );
24
- }
25
-
26
-
27
- /**
28
- * Dismiss Notice.
29
- *
30
- * @since 1.0.0
31
- * @return void
32
- */
33
- public function dismiss() {
34
-
35
- $id = ( isset( $_POST['id'] ) ) ? sanitize_text_field($_POST['id']) : '';
36
- $time = ( isset( $_POST['time'] ) ) ? sanitize_text_field($_POST['time']) : '';
37
- $meta = ( isset( $_POST['meta'] ) ) ? sanitize_text_field($_POST['meta']) : '';
38
-
39
- // Valid inputs?
40
- if ( ! empty( $id ) ) {
41
-
42
- if ( 'user' === $meta ) {
43
- update_user_meta( get_current_user_id(), $id, true );
44
- } else {
45
- set_transient( $id, true, $time );
46
- }
47
-
48
- wp_send_json_success();
49
- }
50
-
51
- wp_send_json_error();
52
- }
53
-
54
- /**
55
- * Enqueue Scripts.
56
- *
57
- * @since 1.0.0
58
- * @return void
59
- */
60
- public function enqueue_scripts() {
61
- echo "
62
- <script>
63
- jQuery(document).ready(function ($) {
64
- $( '.elementskit-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
65
- //console.log('test');
66
- _this = $( this ).parents( '.elementskit-notice' );
67
- var id = _this.attr( 'id' ) || '';
68
- var time = _this.attr( 'dismissible-time' ) || '';
69
- var meta = _this.attr( 'dismissible-meta' ) || '';
70
-
71
- $.ajax({
72
- url: ajaxurl,
73
- type: 'POST',
74
- data: {
75
- action : 'elementskit-notices',
76
- id : id,
77
- meta : meta,
78
- time : time,
79
- },
80
- });
81
-
82
- });
83
-
84
- });
85
- </script>
86
- ";
87
- }
88
-
89
- /**
90
- * Show Notices
91
- *
92
- * @since 1.0.0
93
- * @return void
94
- */
95
- public static function push($notice) {
96
-
97
- $defaults = [
98
- 'id' => '',
99
- 'type' => 'info',
100
- 'show_if' => true,
101
- 'message' => '',
102
- 'class' => 'elementskit-notice',
103
- 'dismissible' => false,
104
- 'btn' => [],
105
- 'dismissible-meta' => 'user',
106
- 'dismissible-time' => WEEK_IN_SECONDS,
107
- 'data' => '',
108
- ];
109
-
110
- $notice = wp_parse_args( $notice, $defaults );
111
-
112
- $classes = [ 'elementskit-notice', 'notice' ];
113
-
114
- $classes[] = $notice['class'];
115
- if ( isset( $notice['type'] ) ) {
116
- $classes[] = 'notice-' . $notice['type'];
117
- }
118
-
119
- // Is notice dismissible?
120
- if ( true === $notice['dismissible'] ) {
121
- $classes[] = 'is-dismissible';
122
-
123
- // Dismissable time.
124
- $notice['data'] = ' dismissible-time=' . esc_attr( $notice['dismissible-time'] ) . ' ';
125
- }
126
-
127
- // Notice ID.
128
- $notice_id = 'elementskit-sites-notice-id-' . $notice['id'];
129
- $notice['id'] = $notice_id;
130
- if ( ! isset( $notice['id'] ) ) {
131
- $notice_id = 'elementskit-sites-notice-id-' . $notice['id'];
132
- $notice['id'] = $notice_id;
133
- } else {
134
- $notice_id = $notice['id'];
135
- }
136
-
137
- $notice['classes'] = implode( ' ', $classes );
138
-
139
- // User meta.
140
- $notice['data'] .= ' dismissible-meta=' . esc_attr( $notice['dismissible-meta'] ) . ' ';
141
- if ( 'user' === $notice['dismissible-meta'] ) {
142
- $expired = get_user_meta( get_current_user_id(), $notice_id, true );
143
- } elseif ( 'transient' === $notice['dismissible-meta'] ) {
144
- $expired = get_transient( $notice_id );
145
- }
146
-
147
- // Notice visible after transient expire.
148
- if ( isset( $notice['show_if'] ) ) {
149
- if ( true === $notice['show_if'] ) {
150
-
151
- // Is transient expired?
152
- if ( false === $expired || empty( $expired ) ) {
153
- self::markup($notice);
154
- }
155
- }
156
- } else {
157
- self::markup($notice);
158
- }
159
- }
160
-
161
- /**
162
- * Markup Notice.
163
- *
164
- * @since 1.0.0
165
- * @param array $notice Notice markup.
166
- * @return void
167
- */
168
- public static function markup( $notice = [] ) {
169
- ?>
170
- <div id="<?php echo esc_attr( $notice['id'] ); ?>" class="<?php echo esc_attr( $notice['classes'] ); ?>" <?php echo \ElementsKit\Utils::render($notice['data']); ?>>
171
- <p>
172
- <?php echo \ElementsKit\Utils::kses($notice['message']); ?>
173
- </p>
174
-
175
- <?php if(!empty($notice['btn'])):?>
176
- <p>
177
- <a href="<?php echo esc_url($notice['btn']['url']); ?>" class="button-primary"><?php echo esc_html($notice['btn']['label']); ?></a>
178
- </p>
179
- <?php endif; ?>
180
- </div>
181
- <?php
182
- }
183
- }
184
-
185
- new Notice();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
helpers/utils.php CHANGED
@@ -1,289 +1,273 @@
1
- <?php
2
- namespace ElementsKit;
3
-
4
- defined( 'ABSPATH' ) || exit;
5
- /**
6
- * Global helper class.
7
- *
8
- * @since 1.0.0
9
- */
10
-
11
- class Utils{
12
-
13
- /**
14
- * Get elementskit older version if has any.
15
- *
16
- * @since 1.0.0
17
- * @access public
18
- */
19
- public static function old_version(){
20
- $version = get_option('elementskit_version');
21
- return null == $version ? -1 : $version;
22
- }
23
-
24
- /**
25
- * Set elementskit installed version as current version.
26
- *
27
- * @since 1.0.0
28
- * @access public
29
- */
30
- public static function set_version(){
31
- //return update_option('elementskit_version', \ElementsKit::plugin_url());
32
- }
33
-
34
- /**
35
- * Auto generate classname from path.
36
- *
37
- * @since 1.0.0
38
- * @access public
39
- */
40
- public static function make_classname( $dirname ) {
41
- $dirname = pathinfo($dirname, PATHINFO_FILENAME);
42
- $class_name = explode( '-', $dirname );
43
- $class_name = array_map( 'ucfirst', $class_name );
44
- $class_name = implode( '_', $class_name );
45
-
46
- return $class_name;
47
- }
48
-
49
- public static function google_fonts($font_families = []) {
50
- $fonts_url = '';
51
- if ( $font_families ) {
52
- $query_args = array(
53
- 'family' => urlencode( implode( '|', $font_families ) )
54
- );
55
-
56
- $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
57
- }
58
-
59
- return esc_url_raw( $fonts_url );
60
- }
61
-
62
- public static function kses( $raw ) {
63
-
64
- $allowed_tags = array(
65
- 'a' => array(
66
- 'class' => array(),
67
- 'href' => array(),
68
- 'rel' => array(),
69
- 'title' => array(),
70
- ),
71
- 'abbr' => array(
72
- 'title' => array(),
73
- ),
74
- 'b' => array(),
75
- 'blockquote' => array(
76
- 'cite' => array(),
77
- ),
78
- 'cite' => array(
79
- 'title' => array(),
80
- ),
81
- 'code' => array(),
82
- 'del' => array(
83
- 'datetime' => array(),
84
- 'title' => array(),
85
- ),
86
- 'dd' => array(),
87
- 'div' => array(
88
- 'class' => array(),
89
- 'title' => array(),
90
- 'style' => array(),
91
- ),
92
- 'dl' => array(),
93
- 'dt' => array(),
94
- 'em' => array(),
95
- 'h1' => array(
96
- 'class' => array(),
97
- ),
98
- 'h2' => array(
99
- 'class' => array(),
100
- ),
101
- 'h3' => array(
102
- 'class' => array(),
103
- ),
104
- 'h4' => array(
105
- 'class' => array(),
106
- ),
107
- 'h5' => array(
108
- 'class' => array(),
109
- ),
110
- 'h6' => array(
111
- 'class' => array(),
112
- ),
113
- 'i' => array(
114
- 'class' => array(),
115
- ),
116
- 'img' => array(
117
- 'alt' => array(),
118
- 'class' => array(),
119
- 'height' => array(),
120
- 'src' => array(),
121
- 'width' => array(),
122
- ),
123
- 'li' => array(
124
- 'class' => array(),
125
- ),
126
- 'ol' => array(
127
- 'class' => array(),
128
- ),
129
- 'p' => array(
130
- 'class' => array(),
131
- ),
132
- 'q' => array(
133
- 'cite' => array(),
134
- 'title' => array(),
135
- ),
136
- 'span' => array(
137
- 'class' => array(),
138
- 'title' => array(),
139
- 'style' => array(),
140
- ),
141
- 'iframe' => array(
142
- 'width' => array(),
143
- 'height' => array(),
144
- 'scrolling' => array(),
145
- 'frameborder' => array(),
146
- 'allow' => array(),
147
- 'src' => array(),
148
- ),
149
- 'strike' => array(),
150
- 'br' => array(),
151
- 'strong' => array(),
152
- 'data-wow-duration' => array(),
153
- 'data-wow-delay' => array(),
154
- 'data-wallpaper-options' => array(),
155
- 'data-stellar-background-ratio' => array(),
156
- 'ul' => array(
157
- 'class' => array(),
158
- ),
159
- );
160
-
161
- if ( function_exists( 'wp_kses' ) ) { // WP is here
162
- return wp_kses( $raw, $allowed_tags );
163
- } else {
164
- return $raw;
165
- }
166
- }
167
-
168
- public static function kspan($text){
169
- return str_replace(['{', '}'], ['<span>', '</span>'], self::kses($text));
170
- }
171
-
172
- public static function ekit_get__forms($post_type) {
173
- $wpuf_form_list = get_posts(array(
174
- 'post_type' => $post_type,
175
- 'showposts' => 999,
176
- ));
177
-
178
- $options = array();
179
-
180
- if (!empty($wpuf_form_list) && !is_wp_error($wpuf_form_list)) {
181
- $options[0] = esc_html__('Select Form', 'elemetskit');
182
- foreach ($wpuf_form_list as $post) {
183
- $options[$post->ID] = $post->post_title;
184
- }
185
- } else {
186
- $options[0] = esc_html__('Create a form first', 'elemetskit');
187
- }
188
-
189
- return $options;
190
- }
191
-
192
- public static function ekit_get_ninja_form() {
193
- $options = array();
194
-
195
- if (class_exists('Ninja_Forms')) {
196
- $contact_forms = Ninja_Forms()->form()->get_forms();
197
-
198
- if (!empty($contact_forms) && !is_wp_error($contact_forms)) {
199
-
200
- $options[0] = esc_html__('Select Ninja Form', 'elementskit');
201
-
202
- foreach ($contact_forms as $form) {
203
- $options[$form->get_id()] = $form->get_setting('title');
204
- }
205
- }
206
- } else {
207
- $options[0] = esc_html__('Create a Form First', 'elementskit');
208
- }
209
-
210
- return $options;
211
- }
212
-
213
- public static function tablepress_table_list() {
214
- $table_options = array();
215
-
216
- if (class_exists('TablePress')) {
217
- $table_ids = \TablePress::$model_table->load_all( false );
218
- $table_options[0] = esc_html__( 'Select Table', 'elemenetskit' );
219
-
220
- foreach ( $table_ids as $table_id ) {
221
- // Load table, without table data, options, and visibility settings.
222
- $table = \TablePress::$model_table->load( $table_id, false, false );
223
-
224
- if ( '' === trim( $table['name'] ) ) {
225
- $table['name'] = __( '(no name)', 'tablepress' );
226
- }
227
-
228
- $table_options[$table['id']] = $table['name'];
229
- }
230
- } else {
231
- $table_options[0] = esc_html__('Create a Table First', 'elementskit');
232
- }
233
-
234
- return $table_options;
235
- }
236
-
237
- public static function ekit_do_shortcode( $tag, array $atts = array(), $content = null ) {
238
- global $shortcode_tags;
239
- if ( ! isset( $shortcode_tags[ $tag ] ) ) {
240
- return false;
241
- }
242
- return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
243
- }
244
-
245
- public static function trim_words($text, $num_words){
246
- return wp_trim_words( $text, $num_words, '' );
247
- }
248
-
249
- public static function array_push_assoc($array, $key, $value){
250
- $array[$key] = $value;
251
- return $array;
252
- }
253
-
254
- public static function render($content){
255
- if (stripos($content, "elementskit-has-lisence") !== false) {
256
- return null;
257
- }
258
-
259
- return $content;
260
- }
261
- public static function render_elementor_content_css($content_id){
262
- if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
263
- $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
264
- $css_file->enqueue();
265
- }
266
- }
267
- public static function render_elementor_content($content_id){
268
- $elementor_instance = \Elementor\Plugin::instance();
269
- return $elementor_instance->frontend->get_builder_content_for_display( $content_id , true);
270
- }
271
- public static function render_tab_content($content, $id){
272
- return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
273
- }
274
-
275
- public static function img_meta($id){
276
- $attachment = get_post($id);
277
- if($attachment == null || $attachment->post_type != 'attachment'){
278
- return null;
279
- }
280
- return [
281
- 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
282
- 'caption' => $attachment->post_excerpt,
283
- 'description' => $attachment->post_content,
284
- 'href' => get_permalink( $attachment->ID ),
285
- 'src' => $attachment->guid,
286
- 'title' => $attachment->post_title
287
- ];
288
- }
289
- }
1
+ <?php
2
+ namespace ElementsKit_Lite;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ /**
7
+ * Global helper class.
8
+ *
9
+ * @since 1.0.0
10
+ */
11
+
12
+ class Utils {
13
+
14
+ /**
15
+ * Auto generate classname from path.
16
+ *
17
+ * @since 1.0.0
18
+ * @access public
19
+ */
20
+ public static function make_classname( $dirname ) {
21
+ $dirname = pathinfo($dirname, PATHINFO_FILENAME);
22
+ $class_name = explode( '-', $dirname );
23
+ $class_name = array_map( 'ucfirst', $class_name );
24
+ $class_name = implode( '_', $class_name );
25
+
26
+ return $class_name;
27
+ }
28
+
29
+ public static function google_fonts($font_families = []) {
30
+ $fonts_url = '';
31
+ if ( $font_families ) {
32
+ $query_args = array(
33
+ 'family' => urlencode( implode( '|', $font_families ) )
34
+ );
35
+
36
+ $fonts_url = add_query_arg( $query_args, 'https://fonts.googleapis.com/css' );
37
+ }
38
+
39
+ return esc_url_raw( $fonts_url );
40
+ }
41
+
42
+ public static function kses( $raw ) {
43
+
44
+ $allowed_tags = array(
45
+ 'a' => array(
46
+ 'class' => array(),
47
+ 'href' => array(),
48
+ 'rel' => array(),
49
+ 'title' => array(),
50
+ 'target' => array(),
51
+ ),
52
+ 'abbr' => array(
53
+ 'title' => array(),
54
+ ),
55
+ 'b' => array(),
56
+ 'blockquote' => array(
57
+ 'cite' => array(),
58
+ ),
59
+ 'cite' => array(
60
+ 'title' => array(),
61
+ ),
62
+ 'code' => array(),
63
+ 'del' => array(
64
+ 'datetime' => array(),
65
+ 'title' => array(),
66
+ ),
67
+ 'dd' => array(),
68
+ 'div' => array(
69
+ 'class' => array(),
70
+ 'title' => array(),
71
+ 'style' => array(),
72
+ ),
73
+ 'dl' => array(),
74
+ 'dt' => array(),
75
+ 'em' => array(),
76
+ 'h1' => array(
77
+ 'class' => array(),
78
+ ),
79
+ 'h2' => array(
80
+ 'class' => array(),
81
+ ),
82
+ 'h3' => array(
83
+ 'class' => array(),
84
+ ),
85
+ 'h4' => array(
86
+ 'class' => array(),
87
+ ),
88
+ 'h5' => array(
89
+ 'class' => array(),
90
+ ),
91
+ 'h6' => array(
92
+ 'class' => array(),
93
+ ),
94
+ 'i' => array(
95
+ 'class' => array(),
96
+ ),
97
+ 'img' => array(
98
+ 'alt' => array(),
99
+ 'class' => array(),
100
+ 'height' => array(),
101
+ 'src' => array(),
102
+ 'width' => array(),
103
+ ),
104
+ 'li' => array(
105
+ 'class' => array(),
106
+ ),
107
+ 'ol' => array(
108
+ 'class' => array(),
109
+ ),
110
+ 'p' => array(
111
+ 'class' => array(),
112
+ ),
113
+ 'q' => array(
114
+ 'cite' => array(),
115
+ 'title' => array(),
116
+ ),
117
+ 'span' => array(
118
+ 'class' => array(),
119
+ 'title' => array(),
120
+ 'style' => array(),
121
+ ),
122
+ 'iframe' => array(
123
+ 'width' => array(),
124
+ 'height' => array(),
125
+ 'scrolling' => array(),
126
+ 'frameborder' => array(),
127
+ 'allow' => array(),
128
+ 'src' => array(),
129
+ ),
130
+ 'strike' => array(),
131
+ 'br' => array(),
132
+ 'strong' => array(),
133
+ 'data-wow-duration' => array(),
134
+ 'data-wow-delay' => array(),
135
+ 'data-wallpaper-options' => array(),
136
+ 'data-stellar-background-ratio' => array(),
137
+ 'ul' => array(
138
+ 'class' => array(),
139
+ ),
140
+ );
141
+
142
+ if ( function_exists( 'wp_kses' ) ) { // WP is here
143
+ return wp_kses( $raw, $allowed_tags );
144
+ } else {
145
+ return $raw;
146
+ }
147
+ }
148
+
149
+ public static function kspan($text){
150
+ return str_replace(['{', '}'], ['<span>', '</span>'], self::kses($text));
151
+ }
152
+
153
+ public static function ekit_get__forms($post_type) {
154
+ $wpuf_form_list = get_posts(array(
155
+ 'post_type' => $post_type,
156
+ 'showposts' => 999,
157
+ ));
158
+
159
+ $options = array();
160
+
161
+ if (!empty($wpuf_form_list) && !is_wp_error($wpuf_form_list)) {
162
+ $options[0] = esc_html__('Select Form', 'elemetskit');
163
+ foreach ($wpuf_form_list as $post) {
164
+ $options[$post->ID] = $post->post_title;
165
+ }
166
+ } else {
167
+ $options[0] = esc_html__('Create a form first', 'elemetskit');
168
+ }
169
+
170
+ return $options;
171
+ }
172
+
173
+ public static function ekit_get_ninja_form() {
174
+ $options = array();
175
+
176
+ if (class_exists('Ninja_Forms')) {
177
+ $contact_forms = Ninja_Forms()->form()->get_forms();
178
+
179
+ if (!empty($contact_forms) && !is_wp_error($contact_forms)) {
180
+
181
+ $options[0] = esc_html__('Select Ninja Form', 'elementskit-lite');
182
+
183
+ foreach ($contact_forms as $form) {
184
+ $options[$form->get_id()] = $form->get_setting('title');
185
+ }
186
+ }
187
+ } else {
188
+ $options[0] = esc_html__('Create a Form First', 'elementskit-lite');
189
+ }
190
+
191
+ return $options;
192
+ }
193
+
194
+ public static function tablepress_table_list() {
195
+ $table_options = array();
196
+
197
+ if (class_exists('TablePress')) {
198
+ $table_ids = \TablePress::$model_table->load_all( false );
199
+ $table_options[0] = esc_html__( 'Select Table', 'elemenetskit' );
200
+
201
+ foreach ( $table_ids as $table_id ) {
202
+ // Load table, without table data, options, and visibility settings.
203
+ $table = \TablePress::$model_table->load( $table_id, false, false );
204
+
205
+ if ( '' === trim( $table['name'] ) ) {
206
+ $table['name'] = __( '(no name)', 'tablepress' );
207
+ }
208
+
209
+ $table_options[$table['id']] = $table['name'];
210
+ }
211
+ } else {
212
+ $table_options[0] = esc_html__('Create a Table First', 'elementskit-lite');
213
+ }
214
+
215
+ return $table_options;
216
+ }
217
+
218
+ public static function ekit_do_shortcode( $tag, array $atts = array(), $content = null ) {
219
+ global $shortcode_tags;
220
+ if ( ! isset( $shortcode_tags[ $tag ] ) ) {
221
+ return false;
222
+ }
223
+ return call_user_func( $shortcode_tags[ $tag ], $atts, $content, $tag );
224
+ }
225
+
226
+ public static function trim_words($text, $num_words){
227
+ return wp_trim_words( $text, $num_words, '' );
228
+ }
229
+
230
+ public static function array_push_assoc($array, $key, $value){
231
+ $array[$key] = $value;
232
+ return $array;
233
+ }
234
+
235
+ public static function render_elementor_content_css($content_id){
236
+ if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
237
+ $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
238
+ $css_file->enqueue();
239
+ }
240
+ }
241
+
242
+ public static function render_elementor_content($content_id){
243
+ $elementor_instance = \Elementor\Plugin::instance();
244
+ return $elementor_instance->frontend->get_builder_content_for_display( $content_id , true);
245
+ }
246
+
247
+ public static function render($content){
248
+ if (stripos($content, "elementskit-has-lisence") !== false) {
249
+ return null;
250
+ }
251
+
252
+ return $content;
253
+ }
254
+
255
+ public static function render_tab_content($content, $id){
256
+ return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
257
+ }
258
+
259
+ public static function img_meta($id){
260
+ $attachment = get_post($id);
261
+ if($attachment == null || $attachment->post_type != 'attachment'){
262
+ return null;
263
+ }
264
+ return [
265
+ 'alt' => get_post_meta( $attachment->ID, '_wp_attachment_image_alt', true ),
266
+ 'caption' => $attachment->post_excerpt,
267
+ 'description' => $attachment->post_content,
268
+ 'href' => get_permalink( $attachment->ID ),
269
+ 'src' => $attachment->guid,
270
+ 'title' => $attachment->post_title
271
+ ];
272
+ }
273
+ }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
helpers/widget-list.php ADDED
@@ -0,0 +1,442 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
4
+
5
+ defined('ABSPATH') || exit;
6
+
7
+ class Widget_List {
8
+
9
+ use \ElementsKit_Lite\Traits\Singleton;
10
+
11
+
12
+ /**
13
+ * todo: format the comment appropriately
14
+ *
15
+ * Usage :
16
+ * get full list >> get_list() []
17
+ * get full list of active widgets >> get_list(true, '', 'active') // []
18
+ * get specific widget data >> get_list(true, 'image-accordion') [] or false
19
+ * get specific widget data (if active) >> get_list(true, 'image-accordion', 'active') [] or false
20
+ *
21
+ * @param bool $filtered
22
+ * @param string $widget
23
+ * @param string $check_method - active|list
24
+ *
25
+ * @return array|bool|mixed
26
+ */
27
+ public function get_list($filtered = true, $widget = '', $check_method = 'list') {
28
+ $all_list = self::$list;
29
+
30
+ if($filtered == true) {
31
+ $all_list = apply_filters('elementskit/widgets/list', self::$list);
32
+ }
33
+
34
+ if($check_method == 'active') {
35
+ $active_list = \ElementsKit_Lite\Libs\Framework\Attr::instance()->utils->get_option('widget_list', array_keys($all_list));
36
+
37
+ foreach($all_list as $widget_slug => $info) {
38
+ if(!in_array($widget_slug, $active_list)) {
39
+ unset($all_list[$widget_slug]);
40
+ }
41
+ }
42
+ }
43
+
44
+ if($widget != '') {
45
+ return (isset($all_list[$widget]) ? $all_list[$widget] : false);
46
+ }
47
+
48
+ return $all_list;
49
+ }
50
+
51
+
52
+ /**
53
+ * Check if a widget is active or not, free package are considered inactive
54
+ *
55
+ * Usage : \ElementsKit_Lite\Helpers\Widget_List::instance()->is_active('facebook-review')
56
+ *
57
+ *
58
+ * @param $widget - widget slug
59
+ *
60
+ * @return bool
61
+ */
62
+ public function is_active($widget) {
63
+
64
+ $act = Widget_List::instance()->get_list(true, $widget, 'active');
65
+
66
+ return empty($act['package']) ? false : (($act['package'] == 'free' || $act['package'] == 'pro'));
67
+ }
68
+
69
+
70
+ private static $list = [
71
+ 'image-accordion' => [
72
+ 'slug' => 'image-accordion',
73
+ 'title' => 'Image Accordion',
74
+ 'package' => 'free', // free, pro, free
75
+ //'path' => 'path to the widget directory',
76
+ //'base_class_name' => 'main class name',
77
+ //'title' => 'widget title',
78
+ //'live' => 'live demo url'
79
+ ],
80
+ 'accordion' => [
81
+ 'slug' => 'accordion',
82
+ 'title' => 'Accordion',
83
+ 'package' => 'free',
84
+ ],
85
+ 'button' => [
86
+ 'slug' => 'button',
87
+ 'title' => 'Button',
88
+ 'package' => 'free',
89
+ ],
90
+ 'heading' => [
91
+ 'slug' => 'heading',
92
+ 'title' => 'Heading',
93
+ 'package' => 'free',
94
+ ],
95
+ 'blog-posts' => [
96
+ 'slug' => 'blog-posts',
97
+ 'title' => 'Blog Posts',
98
+ 'package' => 'free',
99
+ ],
100
+ 'icon-box' => [
101
+ 'slug' => 'icon-box',
102
+ 'title' => 'Icon Box',
103
+ 'package' => 'free',
104
+ ],
105
+ 'image-box' => [
106
+ 'slug' => 'image-box',
107
+ 'title' => 'Image Box',
108
+ 'package' => 'free',
109
+ ],
110
+ 'countdown-timer' => [
111
+ 'slug' => 'countdown-timer',
112
+ 'title' => 'Countdown Timer',
113
+ 'package' => 'free',
114
+ ],
115
+ 'client-logo' => [
116
+ 'slug' => 'client-logo',
117
+ 'title' => 'Client Logo',
118
+ 'package' => 'free',
119
+ ],
120
+ 'faq' => [
121
+ 'slug' => 'faq',
122
+ 'title' => 'FAQs',
123
+ 'package' => 'free',
124
+ ],
125
+ 'funfact' => [
126
+ 'slug' => 'funfact',
127
+ 'title' => 'Funfact',
128
+ 'package' => 'free',
129
+ ],
130
+ 'image-comparison' => [
131
+ 'slug' => 'image-comparison',
132
+ 'title' => 'Image Comparison',
133
+ 'package' => 'free',
134
+ ],
135
+ 'lottie' => [
136
+ 'slug' => 'lottie',
137
+ 'title' => 'Lottie',
138
+ 'package' => 'free',
139
+ ],
140
+ 'testimonial' => [
141
+ 'slug' => 'testimonial',
142
+ 'title' => 'Testimonial',
143
+ 'package' => 'free',
144
+ ],
145
+ 'pricing' => [
146
+ 'slug' => 'pricing',
147
+ 'title' => 'Pricing',
148
+ 'package' => 'free',
149
+ ],
150
+ 'team' => [
151
+ 'slug' => 'team',
152
+ 'title' => 'Team',
153
+ 'package' => 'free',
154
+ ],
155
+ 'social' => [
156
+ 'slug' => 'social',
157
+ 'title' => 'Social',
158
+ 'package' => 'free',
159
+ ],
160
+ 'progressbar' => [
161
+ 'slug' => 'progressbar',
162
+ 'title' => 'Progressbar',
163
+ 'package' => 'free',
164
+ ],
165
+ 'category-list' => [
166
+ 'slug' => 'category-list',
167
+ 'title' => 'Category List',
168
+ 'package' => 'free',
169
+ ],
170
+ 'page-list' => [
171
+ 'slug' => 'page-list',
172
+ 'title' => 'Page List',
173
+ 'package' => 'free',
174
+ ],
175
+ 'post-grid' => [
176
+ 'slug' => 'post-grid',
177
+ 'title' => 'Post Grid',
178
+ 'package' => 'free',
179
+ ],
180
+ 'post-list' => [
181
+ 'slug' => 'post-list',
182
+ 'title' => 'Post List',
183
+ 'package' => 'free',
184
+ ],
185
+ 'post-tab' => [
186
+ 'slug' => 'post-tab',
187
+ 'title' => 'Post Tab',
188
+ 'package' => 'free',
189
+ ],
190
+ 'nav-menu' => [
191
+ 'slug' => 'nav-menu',
192
+ 'title' => 'Nav Menu',
193
+ 'package' => 'free',
194
+ ],
195
+ 'mail-chimp' => [
196
+ 'slug' => 'mail-chimp',
197
+ 'title' => 'Mail Chimp',
198
+ 'package' => 'free',
199
+ ],
200
+ 'header-info' => [
201
+ 'slug' => 'header-info',
202
+ 'title' => 'Header Info',
203
+ 'package' => 'free',
204
+ ],
205
+ 'piechart' => [
206
+ 'slug' => 'piechart',
207
+ 'title' => 'Piechart',
208
+ 'package' => 'free',
209
+ ],
210
+ 'header-search' => [
211
+ 'slug' => 'header-search',
212
+ 'title' => 'Header Search',
213
+ 'package' => 'free',
214
+ ],
215
+ 'header-offcanvas' => [
216
+ 'slug' => 'header-offcanvas',
217
+ 'title' => 'Header Offcanvas',
218
+ 'package' => 'free',
219
+ ],
220
+ 'tab' => [
221
+ 'slug' => 'tab',
222
+ 'title' => 'Tab',
223
+ 'package' => 'free',
224
+ ],
225
+ 'contact-form7' => [
226
+ 'slug' => 'contact-form7',
227
+ 'title' => 'Contact Form 7',
228
+ 'package' => 'free',
229
+ ],
230
+ 'video' => [
231
+ 'slug' => 'video',
232
+ 'title' => 'Video',
233
+ 'package' => 'free',
234
+ ],
235
+ 'business-hours' => [
236
+ 'slug' => 'business-hours',
237
+ 'title' => 'Business Hours',
238
+ 'package' => 'free',
239
+ ],
240
+ 'drop-caps' => [
241
+ 'slug' => 'drop-caps',
242
+ 'title' => 'Drop Caps',
243
+ 'package' => 'free',
244
+ ],
245
+ 'social-share' => [
246
+ 'slug' => 'social-share',
247
+ 'title' => 'Social Share',
248
+ 'package' => 'free',
249
+ ],
250
+ 'dual-button' => [
251
+ 'slug' => 'dual-button',
252
+ 'title' => 'Dual Button',
253
+ 'package' => 'free',
254
+ ],
255
+ 'caldera-forms' => [
256
+ 'slug' => 'caldera-forms',
257
+ 'title' => 'Caldera Forms',
258
+ 'package' => 'free',
259
+ ],
260
+ 'we-forms' => [
261
+ 'slug' => 'we-forms',
262
+ 'title' => 'We Forms',
263
+ 'package' => 'free',
264
+ ],
265
+ 'wp-forms' => [
266
+ 'slug' => 'wp-forms',
267
+ 'title' => 'Wp Forms',
268
+ 'package' => 'free',
269
+ ],
270
+
271
+ 'ninja-forms' => [
272
+ 'slug' => 'ninja-forms',
273
+ 'title' => 'Ninja Forms',
274
+ 'package' => 'free',
275
+ ],
276
+ 'tablepress' => [
277
+ 'slug' => 'tablepress',
278
+ 'title' => 'Tablepress',
279
+ 'package' => 'free',
280
+ ],
281
+ 'advanced-accordion' => [
282
+ 'slug' => 'advanced-accordion',
283
+ 'title' => 'Advanced Accordion',
284
+ 'package' => 'pro-disabled',
285
+ ],
286
+ 'advanced-tab' => [
287
+ 'slug' => 'advanced-tab',
288
+ 'title' => 'Advanced Tab',
289
+ 'package' => 'pro-disabled',
290
+ ],
291
+ 'hotspot' => [
292
+ 'slug' => 'hotspot',
293
+ 'title' => 'Hotspot',
294
+ 'package' => 'pro-disabled',
295
+ ],
296
+ 'motion-text' => [
297
+ 'slug' => 'motion-text',
298
+ 'title' => 'Motion Text',
299
+ 'package' => 'pro-disabled',
300
+ ],
301
+ 'twitter-feed' => [
302
+ 'slug' => 'twitter-feed',
303
+ 'title' => 'Twitter Feed',
304
+ 'package' => 'pro-disabled',
305
+ ],
306
+
307
+ 'instagram-feed' => [
308
+ 'slug' => 'instagram-feed',
309
+ 'title' => 'Instagram Feed',
310
+ 'package' => 'pro-disabled',
311
+ ],
312
+ 'gallery' => [
313
+ 'slug' => 'gallery',
314
+ 'title' => 'Gallery',
315
+ 'package' => 'pro-disabled',
316
+ ],
317
+ 'chart' => [
318
+ 'slug' => 'chart',
319
+ 'title' => 'Chart',
320
+ 'package' => 'pro-disabled',
321
+ ],
322
+ 'woo-category-list' => [
323
+ 'slug' => 'woo-category-list',
324
+ 'title' => 'Woo Category List',
325
+ 'package' => 'pro-disabled',
326
+ ],
327
+ 'woo-mini-cart' => [
328
+ 'slug' => 'woo-mini-cart',
329
+ 'title' => 'Woo Mini Cart',
330
+ 'package' => 'pro-disabled',
331
+ ],
332
+ 'woo-product-carousel' => [
333
+ 'slug' => 'woo-product-carousel',
334
+ 'title' => 'Woo Product Carousel',
335
+ 'package' => 'pro-disabled',
336
+ ],
337
+ 'woo-product-list' => [
338
+ 'slug' => 'woo-product-list',
339
+ 'title' => 'Woo Product List',
340
+ 'package' => 'pro-disabled',
341
+ ],
342
+ 'table' => [
343
+ 'slug' => 'table',
344
+ 'title' => 'Table',
345
+ 'package' => 'pro-disabled',
346
+ ],
347
+ 'timeline' => [
348
+ 'slug' => 'timeline',
349
+ 'title' => 'Timeline',
350
+ 'package' => 'pro-disabled',
351
+ ],
352
+ 'creative-button' => [
353
+ 'slug' => 'creative-button',
354
+ 'title' => 'Creative Button',
355
+ 'package' => 'pro-disabled',
356
+ ],
357
+ 'vertical-menu' => [
358
+ 'slug' => 'vertical-menu',
359
+ 'title' => 'Vertical Menu',
360
+ 'package' => 'pro-disabled',
361
+ ],
362
+ 'advanced-toggle' => [
363
+ 'slug' => 'advanced-toggle',
364
+ 'title' => 'Advanced Toggle',
365
+ 'package' => 'pro-disabled',
366
+ ],
367
+ 'video-gallery' => [
368
+ 'slug' => 'video-gallery',
369
+ 'title' => 'Video Gallery',
370
+ 'package' => 'pro-disabled',
371
+ ],
372
+ 'zoom' => [
373
+ 'slug' => 'zoom',
374
+ 'title' => 'Zoom',
375
+ 'package' => 'pro-disabled',
376
+ ],
377
+ 'behance-feed' => [
378
+ 'slug' => 'behance-feed',
379
+ 'title' => 'Behance Feed',
380
+ 'package' => 'pro-disabled',
381
+ ],
382
+
383
+ 'breadcrumb' => [
384
+ 'slug' => 'breadcrumb',
385
+ 'title' => 'Breadcrumb',
386
+ 'package' => 'pro-disabled',
387
+ ],
388
+
389
+ 'dribble-feed' => [
390
+ 'slug' => 'dribble-feed',
391
+ 'title' => 'Dribble Feed',
392
+ 'package' => 'pro-disabled',
393
+ ],
394
+
395
+ 'facebook-feed' => [
396
+ 'slug' => 'facebook-feed',
397
+ 'title' => 'Facebook Feed',
398
+ 'package' => 'pro-disabled',
399
+ ],
400
+
401
+ 'facebook-review' => [
402
+ 'slug' => 'facebook-review',
403
+ 'title' => 'Facebook Review',
404
+ 'package' => 'pro-disabled',
405
+ ],
406
+
407
+ 'trustpilot' => [
408
+ 'slug' => 'trustpilot',
409
+ 'title' => 'Trustpilot',
410
+ 'package' => 'pro-disabled',
411
+ ],
412
+
413
+ 'yelp' => [
414
+ 'slug' => 'yelp',
415
+ 'title' => 'Yelp',
416
+ 'package' => 'pro-disabled',
417
+ ],
418
+
419
+ 'pinterest-feed' => [
420
+ 'slug' => 'pinterest-feed',
421
+ 'title' => 'Pinterest Feed',
422
+ 'package' => 'pro-disabled',
423
+ ],
424
+
425
+ 'popup-modal' => [
426
+ 'slug' => 'popup-modal',
427
+ 'title' => 'Popup Modal',
428
+ 'package' => 'pro-disabled',
429
+ ],
430
+
431
+ 'google-map' => [
432
+ 'slug' => 'google-map',
433
+ 'title' => 'Google Map',
434
+ 'package' => 'pro-disabled',
435
+ ],
436
+ 'unfold' => [
437
+ 'slug' => 'unfold',
438
+ 'title' => 'Unfold',
439
+ 'package' => 'pro-disabled',
440
+ ],
441
+ ];
442
+ }
languages/elementskit.pot ADDED
@@ -0,0 +1,10469 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #, fuzzy
2
+ msgid ""
3
+ msgstr ""
4
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
+ "Project-Id-Version: ElementsKit_Lite\n"
6
+ "POT-Creation-Date: 2020-04-28 15:03+0600\n"
7
+ "PO-Revision-Date: 2020-04-28 15:03+0600\n"
8
+ "Last-Translator: \n"
9
+ "Language-Team: \n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Generator: Poedit 2.2.4\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-Flags-xgettext: --add-comments=translators:\n"
16
+ "X-Poedit-WPHeader: elementskit.php\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-KeywordsList: __;_e;_n:1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;esc_attr__;"
19
+ "esc_attr_e;esc_attr_x:1,2c;esc_html__;esc_html_e;esc_html_x:1,2c;_n_noop:1,2;"
20
+ "_nx_noop:3c,1,2;__ngettext_noop:1,2\n"
21
+ "X-Poedit-SearchPath-0: .\n"
22
+ "X-Poedit-SearchPathExcluded-0: *.min.js\n"
23
+
24
+ #: compatibility/wpml/init.php:139
25
+ msgid "Label (Button)"
26
+ msgstr ""
27
+
28
+ #: compatibility/wpml/init.php:150
29
+ msgid "Title (Heading)"
30
+ msgstr ""
31
+
32
+ #: compatibility/wpml/init.php:155
33
+ msgid "Sub Title (Heading)"
34
+ msgstr ""
35
+
36
+ #: compatibility/wpml/init.php:160
37
+ msgid "Description (Heading)"
38
+ msgstr ""
39
+
40
+ #: compatibility/wpml/init.php:171
41
+ msgid "Title (Icon Box)"
42
+ msgstr ""
43
+
44
+ #: compatibility/wpml/init.php:176
45
+ msgid "Content (Icon Box)"
46
+ msgstr ""
47
+
48
+ #: compatibility/wpml/init.php:181
49
+ msgid "Button Label (Icon Box)"
50
+ msgstr ""
51
+
52
+ #: compatibility/wpml/init.php:186
53
+ msgid "Badge Text (Icon Box)"
54
+ msgstr ""
55
+
56
+ #: compatibility/wpml/init.php:197
57
+ msgid "Title (Image Box)"
58
+ msgstr ""
59
+
60
+ #: compatibility/wpml/init.php:202
61
+ msgid "Description (Image Box)"
62
+ msgstr ""
63
+
64
+ #: compatibility/wpml/init.php:207
65
+ msgid "Button Label (Image Box)"
66
+ msgstr ""
67
+
68
+ #: compatibility/wpml/init.php:218
69
+ msgid "Weeks (Countdown Timer)"
70
+ msgstr ""
71
+
72
+ #: compatibility/wpml/init.php:223
73
+ msgid "Days (Countdown Timer)"
74
+ msgstr ""
75
+
76
+ #: compatibility/wpml/init.php:228
77
+ msgid "Hours (Countdown Timer)"
78
+ msgstr ""
79
+
80
+ #: compatibility/wpml/init.php:233
81
+ msgid "Minutes (Countdown Timer)"
82
+ msgstr ""
83
+
84
+ #: compatibility/wpml/init.php:238
85
+ msgid "Seconds (Countdown Timer)"
86
+ msgstr ""
87
+
88
+ #: compatibility/wpml/init.php:243
89
+ msgid "On Expiry Title (Countdown Timer)"
90
+ msgstr ""
91
+
92
+ #: compatibility/wpml/init.php:248
93
+ msgid "On Expiry Content (Countdown Timer)"
94
+ msgstr ""
95
+
96
+ #: compatibility/wpml/init.php:264
97
+ msgid "Number Suffix (Funfact)"
98
+ msgstr ""
99
+
100
+ #: compatibility/wpml/init.php:269
101
+ msgid "Title (Funfact)"
102
+ msgstr ""
103
+
104
+ #: compatibility/wpml/init.php:274
105
+ msgid "Super (Funfact)"
106
+ msgstr ""
107
+
108
+ #: compatibility/wpml/init.php:285
109
+ msgid "Before Label (Image Comparison)"
110
+ msgstr ""
111
+
112
+ #: compatibility/wpml/init.php:290
113
+ msgid "After Label (Image Comparison)"
114
+ msgstr ""
115
+
116
+ #: compatibility/wpml/init.php:306
117
+ msgid "Table Title (Pricing Table)"
118
+ msgstr ""
119
+
120
+ #: compatibility/wpml/init.php:311
121
+ msgid "Table Subtitle (Pricing Table)"
122
+ msgstr ""
123
+
124
+ #: compatibility/wpml/init.php:316
125
+ msgid "Currency (Pricing Table)"
126
+ msgstr ""
127
+
128
+ #: compatibility/wpml/init.php:321
129
+ msgid "Price (Pricing Table)"
130
+ msgstr ""
131
+
132
+ #: compatibility/wpml/init.php:326
133
+ msgid "Duration (Pricing Table)"
134
+ msgstr ""
135
+
136
+ #: compatibility/wpml/init.php:331
137
+ msgid "Table Content (Pricing Table)"
138
+ msgstr ""
139
+
140
+ #: compatibility/wpml/init.php:336
141
+ msgid "Button Label (Pricing Table)"
142
+ msgstr ""
143
+
144
+ #: compatibility/wpml/init.php:348
145
+ msgid "Member Name (Team)"
146
+ msgstr ""
147
+
148
+ #: compatibility/wpml/init.php:353
149
+ msgid "Member Position (Team)"
150
+ msgstr ""
151
+
152
+ #: compatibility/wpml/init.php:358
153
+ msgid "Short Description (Team)"
154
+ msgstr ""
155
+
156
+ #: compatibility/wpml/init.php:363
157
+ msgid "Popup Description (Team)"
158
+ msgstr ""
159
+
160
+ #: compatibility/wpml/init.php:368
161
+ msgid "Phone (Team)"
162
+ msgstr ""
163
+
164
+ #: compatibility/wpml/init.php:373
165
+ msgid "Email (Team)"
166
+ msgstr ""
167
+
168
+ #: compatibility/wpml/init.php:389
169
+ msgid "Title (Progress Bar)"
170
+ msgstr ""
171
+
172
+ #: compatibility/wpml/init.php:400
173
+ msgid "First Name (Mail Chimp)"
174
+ msgstr ""
175
+
176
+ #: compatibility/wpml/init.php:405 compatibility/wpml/init.php:415
177
+ msgid "First Name Placeholder (Mail Chimp)"
178
+ msgstr ""
179
+
180
+ #: compatibility/wpml/init.php:410
181
+ msgid "Last Name (Mail Chimp)"
182
+ msgstr ""
183
+
184
+ #: compatibility/wpml/init.php:420
185
+ msgid "Phone (Mail Chimp)"
186
+ msgstr ""
187
+
188
+ #: compatibility/wpml/init.php:425
189
+ msgid "Phone Placeholder (Mail Chimp)"
190
+ msgstr ""
191
+
192
+ #: compatibility/wpml/init.php:430
193
+ msgid "Email (Mail Chimp)"
194
+ msgstr ""
195
+
196
+ #: compatibility/wpml/init.php:435
197
+ msgid "Email Placeholder (Mail Chimp)"
198
+ msgstr ""
199
+
200
+ #: compatibility/wpml/init.php:440
201
+ msgid "Submit Button Text (Mail Chimp)"
202
+ msgstr ""
203
+
204
+ #: compatibility/wpml/init.php:445
205
+ msgid "Success Message (Mail Chimp)"
206
+ msgstr ""
207
+
208
+ #: compatibility/wpml/init.php:456
209
+ msgid "Title (Pie Chart)"
210
+ msgstr ""
211
+
212
+ #: compatibility/wpml/init.php:461
213
+ msgid "Description (Pie Chart)"
214
+ msgstr ""
215
+
216
+ #: compatibility/wpml/init.php:477
217
+ msgid "Button Title (Video)"
218
+ msgstr ""
219
+
220
+ #: compatibility/wpml/init.php:493
221
+ msgid "Content (Drop Caps)"
222
+ msgstr ""
223
+
224
+ #: compatibility/wpml/init.php:524
225
+ msgid "Title (Motion Text)"
226
+ msgstr ""
227
+
228
+ #: compatibility/wpml/init.php:535
229
+ msgid "Label (Twitter)"
230
+ msgstr ""
231
+
232
+ #: compatibility/wpml/init.php:546
233
+ msgid "Follow Button Text (Instagram Feed)"
234
+ msgstr ""
235
+
236
+ #: compatibility/wpml/init.php:557
237
+ msgid "\"All\" Filter Label (Gallery)"
238
+ msgstr ""
239
+
240
+ #: compatibility/wpml/init.php:569
241
+ msgid "Title (Chart)"
242
+ msgstr ""
243
+
244
+ #: compatibility/wpml/init.php:581
245
+ msgid "Prev Text (Table)"
246
+ msgstr ""
247
+
248
+ #: compatibility/wpml/init.php:586
249
+ msgid "Next Text (Table)"
250
+ msgstr ""
251
+
252
+ #: compatibility/wpml/init.php:603
253
+ msgid "Middle Text (Dual Button)"
254
+ msgstr ""
255
+
256
+ #: compatibility/wpml/init.php:608
257
+ msgid "Button One Text (Dual Button)"
258
+ msgstr ""
259
+
260
+ #: compatibility/wpml/init.php:613
261
+ msgid "Button Two Text (Dual Button)"
262
+ msgstr ""
263
+
264
+ #: compatibility/wpml/init.php:624
265
+ msgid "Label (Creative Button)"
266
+ msgstr ""
267
+
268
+ #: compatibility/wpml/init.php:655
269
+ msgid "Placeholder Text (Header Search)"
270
+ msgstr ""
271
+
272
+ #: compatibility/wpml/widgets/accordion.php:52
273
+ msgid "Title (Accordion)"
274
+ msgstr ""
275
+
276
+ #: compatibility/wpml/widgets/accordion.php:56
277
+ msgid "Description (Accordion)"
278
+ msgstr ""
279
+
280
+ #: compatibility/wpml/widgets/advanced-accordion.php:51
281
+ msgid "Title (Advanced Accordion)"
282
+ msgstr ""
283
+
284
+ #: compatibility/wpml/widgets/advanced-tab.php:52
285
+ msgid "Title (Advanced Tab)"
286
+ msgstr ""
287
+
288
+ #: compatibility/wpml/widgets/advanced-tab.php:56
289
+ msgid "Sub-Title (Advanced Tab)"
290
+ msgstr ""
291
+
292
+ #: compatibility/wpml/widgets/business-hours.php:52
293
+ msgid "Day (Business Hours)"
294
+ msgstr ""
295
+
296
+ #: compatibility/wpml/widgets/business-hours.php:56
297
+ msgid "Time (Business Hours)"
298
+ msgstr ""
299
+
300
+ #: compatibility/wpml/widgets/cat-list.php:51
301
+ msgid "Test (Category List)"
302
+ msgstr ""
303
+
304
+ #: compatibility/wpml/widgets/chart.php:51
305
+ msgid "Name (Chart)"
306
+ msgstr ""
307
+
308
+ #: compatibility/wpml/widgets/faq.php:52
309
+ msgid "Title (FAQ)"
310
+ msgstr ""
311
+
312
+ #: compatibility/wpml/widgets/faq.php:56
313
+ msgid "Content (FAQ)"
314
+ msgstr ""
315
+
316
+ #: compatibility/wpml/widgets/gallery.php:51
317
+ msgid "Filter Label (Gallery)"
318
+ msgstr ""
319
+
320
+ #: compatibility/wpml/widgets/header-info.php:51
321
+ msgid "Text (Header Info)"
322
+ msgstr ""
323
+
324
+ #: compatibility/wpml/widgets/hotspot.php:52
325
+ msgid "Title (Hotspot)"
326
+ msgstr ""
327
+
328
+ #: compatibility/wpml/widgets/hotspot.php:56
329
+ msgid "Address (Hotspot)"
330
+ msgstr ""
331
+
332
+ #: compatibility/wpml/widgets/image-accordion.php:52
333
+ msgid "Title (Image Accordion)"
334
+ msgstr ""
335
+
336
+ #: compatibility/wpml/widgets/image-accordion.php:56
337
+ msgid "Button Label (Image Accordion)"
338
+ msgstr ""
339
+
340
+ #: compatibility/wpml/widgets/page-list.php:52
341
+ msgid "Title (Page List)"
342
+ msgstr ""
343
+
344
+ #: compatibility/wpml/widgets/page-list.php:56
345
+ msgid "Sub-Title (Page List)"
346
+ msgstr ""
347
+
348
+ #: compatibility/wpml/widgets/post-list.php:51
349
+ msgid "Title (Post List)"
350
+ msgstr ""
351
+
352
+ #: compatibility/wpml/widgets/pricing.php:51
353
+ msgid "List text (Pricing Table)"
354
+ msgstr ""
355
+
356
+ #: compatibility/wpml/widgets/social-share.php:51
357
+ msgid "Label (Social Share)"
358
+ msgstr ""
359
+
360
+ #: compatibility/wpml/widgets/social.php:51
361
+ msgid "Label (Social Media)"
362
+ msgstr ""
363
+
364
+ #: compatibility/wpml/widgets/tab.php:52
365
+ msgid "Title (Tab)"
366
+ msgstr ""
367
+
368
+ #: compatibility/wpml/widgets/tab.php:56
369
+ msgid "Content (Tab)"
370
+ msgstr ""
371
+
372
+ #: compatibility/wpml/widgets/table.php:51
373
+ msgid "Text (Table)"
374
+ msgstr ""
375
+
376
+ #: compatibility/wpml/widgets/testimonial.php:53
377
+ msgid "Client Name (Testimonial)"
378
+ msgstr ""
379
+
380
+ #: compatibility/wpml/widgets/testimonial.php:57
381
+ msgid "Designation (Testimonial)"
382
+ msgstr ""
383
+
384
+ #: compatibility/wpml/widgets/testimonial.php:61
385
+ msgid "Testimonial Review (Testimonial)"
386
+ msgstr ""
387
+
388
+ #: compatibility/wpml/widgets/timeline.php:55
389
+ msgid "Sub Title (Timeline)"
390
+ msgstr ""
391
+
392
+ #: compatibility/wpml/widgets/timeline.php:59
393
+ msgid "Title (Timeline)"
394
+ msgstr ""
395
+
396
+ #: compatibility/wpml/widgets/timeline.php:63
397
+ msgid "Description (Timeline)"
398
+ msgstr ""
399
+
400
+ #: compatibility/wpml/widgets/timeline.php:67
401
+ msgid "Date (Timeline)"
402
+ msgstr ""
403
+
404
+ #: compatibility/wpml/widgets/timeline.php:71
405
+ msgid "Address (Timeline)"
406
+ msgstr ""
407
+
408
+ #: elementskit.php:280
409
+ msgid "Activate Elementor"
410
+ msgstr ""
411
+
412
+ #: elementskit.php:283
413
+ msgid "Install Elementor"
414
+ msgstr ""
415
+
416
+ #: elementskit.php:293
417
+ #, php-format
418
+ msgid ""
419
+ "ElementsKit_Lite requires Elementor version %1$s+, which is currently NOT RUNNING."
420
+ msgstr ""
421
+
422
+ #: elementskit.php:313
423
+ #, php-format
424
+ msgid ""
425
+ "ElementsKit_Lite requires PHP version %1$s+, which is currently NOT RUNNING on "
426
+ "this server."
427
+ msgstr ""
428
+
429
+ #. Plugin Name of the plugin/theme
430
+ #: elementskit.php:342 libs/framework/attr.php:70
431
+ msgid "ElementsKit_Lite"
432
+ msgstr ""
433
+
434
+ #: elementskit.php:350
435
+ msgid "ElementsKit_Lite Header Footer"
436
+ msgstr ""
437
+
438
+ #: handler.php:194
439
+ msgid ""
440
+ "Please activate ElementsKit_Lite to get automatic updates, premium support and "
441
+ "unlimited access to the layout library of ElementsKit_Lite."
442
+ msgstr ""
443
+
444
+ #: handler.php:196
445
+ msgid "Activate Now"
446
+ msgstr ""
447
+
448
+ #: handler.php:260
449
+ msgid "Cloning is forbidden."
450
+ msgstr ""
451
+
452
+ #: handler.php:273
453
+ msgid "Unserializing instances of this class is forbidden."
454
+ msgstr ""
455
+
456
+ #: helpers/utils.php:181 widgets/caldera-forms/caldera-forms.php:32
457
+ #: widgets/caldera-forms/caldera-forms.php:57
458
+ msgid "Select Form"
459
+ msgstr ""
460
+
461
+ #: helpers/utils.php:186
462
+ msgid "Create a form first"
463
+ msgstr ""
464
+
465
+ #: helpers/utils.php:200
466
+ msgid "Select Ninja Form"
467
+ msgstr ""
468
+
469
+ #: helpers/utils.php:207
470
+ msgid "Create a Form First"
471
+ msgstr ""
472
+
473
+ #: helpers/utils.php:218 widgets/tablepress/tablepress.php:41
474
+ msgid "Select Table"
475
+ msgstr ""
476
+
477
+ #: helpers/utils.php:225
478
+ msgid "(no name)"
479
+ msgstr ""
480
+
481
+ #: helpers/utils.php:231
482
+ msgid "Create a Table First"
483
+ msgstr ""
484
+
485
+ #: libs/framework/attr.php:69 modules/onepage-scroll/extend-controls.php:67
486
+ msgid "ElementsKit_Lite Settings"
487
+ msgstr ""
488
+
489
+ #: libs/framework/attr.php:84
490
+ msgid "Get Support"
491
+ msgstr ""
492
+
493
+ #: libs/framework/attr.php:85
494
+ msgid "License"
495
+ msgstr ""
496
+
497
+ #: libs/framework/attr.php:97
498
+ msgid "Please wait.."
499
+ msgstr ""
500
+
501
+ #: libs/framework/classes/ajax.php:43
502
+ msgid "Something went wrong"
503
+ msgstr ""
504
+
505
+ #: libs/framework/classes/ajax.php:49
506
+ msgid "Your key is empty"
507
+ msgstr ""
508
+
509
+ #: libs/framework/controls/settings/switch.php:36
510
+ msgid "View Demo"
511
+ msgstr ""
512
+
513
+ #: libs/framework/pages/license.php:11
514
+ msgid "License Settings"
515
+ msgstr ""
516
+
517
+ #: libs/framework/pages/license.php:17
518
+ msgid ""
519
+ "Enter your license key here, to activate ElementsKit_Lite, and get auto updates, "
520
+ "premium support and unlimited access to the template library."
521
+ msgstr ""
522
+
523
+ #: libs/framework/pages/license.php:20
524
+ #, php-format
525
+ msgid "Log in to your %sWpmet account%s to get your license key."
526
+ msgstr ""
527
+
528
+ #: libs/framework/pages/license.php:21
529
+ #, php-format
530
+ msgid "If you don't yet have a license key, get %sElementsKit%s now."
531
+ msgstr ""
532
+
533
+ #: libs/framework/pages/license.php:24
534
+ msgid "Copy the ElementsKit_Lite license key from your account and paste it below."
535
+ msgstr ""
536
+
537
+ #: libs/framework/pages/license.php:27
538
+ msgid "Your License Key"
539
+ msgstr ""
540
+
541
+ #: libs/framework/pages/license.php:44
542
+ #, php-format
543
+ msgid "Still can't find your lisence key? %s"
544
+ msgstr ""
545
+
546
+ #: libs/framework/pages/license.php:49
547
+ msgid "Activate"
548
+ msgstr ""
549
+
550
+ #: libs/framework/pages/license.php:54
551
+ #, php-format
552
+ msgid "Congratulations! Your product is activated for \"%s\""
553
+ msgstr ""
554
+
555
+ #: libs/framework/pages/license.php:59
556
+ msgid "Remove license from this domain"
557
+ msgstr ""
558
+
559
+ #: libs/framework/pages/license.php:59
560
+ #, php-format
561
+ msgid "See documention %shere%s."
562
+ msgstr ""
563
+
564
+ #: libs/framework/pages/license.php:68
565
+ msgid "Are you sure to remove license from this site?"
566
+ msgstr ""
567
+
568
+ #: libs/framework/pages/license.php:69
569
+ msgid "Yes, I confrim"
570
+ msgstr ""
571
+
572
+ #: libs/framework/pages/settings-dashboard.php:8
573
+ #: libs/framework/pages/settings-dashboard.php:128
574
+ msgid "Documentation Thumb"
575
+ msgstr ""
576
+
577
+ #: libs/framework/pages/settings-dashboard.php:12
578
+ msgid "Easy Documentation"
579
+ msgstr ""
580
+
581
+ #: libs/framework/pages/settings-dashboard.php:13
582
+ msgid "Docs"
583
+ msgstr ""
584
+
585
+ #: libs/framework/pages/settings-dashboard.php:15
586
+ #: libs/framework/pages/settings-dashboard.php:121
587
+ msgid ""
588
+ "Get started by spending some time with the documentation to get familiar "
589
+ "with ElementsKit_Lite. Build awesome websites for you or your clients with ease."
590
+ msgstr ""
591
+
592
+ #: libs/framework/pages/settings-dashboard.php:17
593
+ msgid "Get started"
594
+ msgstr ""
595
+
596
+ #: libs/framework/pages/settings-dashboard.php:26
597
+ msgid "Video Tutorials"
598
+ msgstr ""
599
+
600
+ #: libs/framework/pages/settings-dashboard.php:27
601
+ msgid "Tutorials"
602
+ msgstr ""
603
+
604
+ #: libs/framework/pages/settings-dashboard.php:29
605
+ #: libs/framework/pages/settings-dashboard.php:78
606
+ msgid ""
607
+ "Get started by spending some time with the documentation to get familiar "
608
+ "with ElementsKit_Lite."
609
+ msgstr ""
610
+
611
+ #: libs/framework/pages/settings-dashboard.php:36
612
+ #: libs/framework/pages/settings-dashboard.php:44
613
+ #: libs/framework/pages/settings-dashboard.php:52
614
+ msgid "Totorial Thumb"
615
+ msgstr ""
616
+
617
+ #: libs/framework/pages/settings-dashboard.php:38
618
+ msgid "Parallax Effects"
619
+ msgstr ""
620
+
621
+ #: libs/framework/pages/settings-dashboard.php:46
622
+ msgid "Advanced Accordions"
623
+ msgstr ""
624
+
625
+ #: libs/framework/pages/settings-dashboard.php:54
626
+ msgid "Mega Menu Builder"
627
+ msgstr ""
628
+
629
+ #: libs/framework/pages/settings-dashboard.php:67
630
+ msgid "View more videos"
631
+ msgstr ""
632
+
633
+ #: libs/framework/pages/settings-dashboard.php:75
634
+ msgid "General Knowledge Base"
635
+ msgstr ""
636
+
637
+ #: libs/framework/pages/settings-dashboard.php:76
638
+ #: widgets/faq/faq-handler.php:11 widgets/faq/faq.php:35
639
+ msgid "FAQ"
640
+ msgstr ""
641
+
642
+ #: libs/framework/pages/settings-dashboard.php:83
643
+ msgid "1. How to create a shop page in ElementsKit_Lite?"
644
+ msgstr ""
645
+
646
+ #: libs/framework/pages/settings-dashboard.php:86
647
+ #: libs/framework/pages/settings-dashboard.php:94
648
+ #: libs/framework/pages/settings-dashboard.php:102
649
+ msgid ""
650
+ "You will get 20+ complete homepages and total 450+ blocks in our layout "
651
+ "library and we’re continuously updating the numbers there."
652
+ msgstr ""
653
+
654
+ #: libs/framework/pages/settings-dashboard.php:91
655
+ msgid "2. How to translate theme with WPML?"
656
+ msgstr ""
657
+
658
+ #: libs/framework/pages/settings-dashboard.php:99
659
+ msgid "3. How to add custom css in specific section shortcode?"
660
+ msgstr ""
661
+
662
+ #: libs/framework/pages/settings-dashboard.php:110
663
+ msgid "View all faq’s"
664
+ msgstr ""
665
+
666
+ #: libs/framework/pages/settings-dashboard.php:118
667
+ msgid "Top-class Friendly Support"
668
+ msgstr ""
669
+
670
+ #: libs/framework/pages/settings-dashboard.php:119
671
+ msgid "Support"
672
+ msgstr ""
673
+
674
+ #: libs/framework/pages/settings-dashboard.php:123
675
+ msgid "Join support forum"
676
+ msgstr ""
677
+
678
+ #: libs/framework/pages/settings-dashboard.php:136
679
+ msgid "Feature Request Thumb"
680
+ msgstr ""
681
+
682
+ #: libs/framework/pages/settings-dashboard.php:140
683
+ msgid "Maybe we’re missing something you can’t live without."
684
+ msgstr ""
685
+
686
+ #: libs/framework/pages/settings-dashboard.php:142
687
+ msgid "Feature request"
688
+ msgstr ""
689
+
690
+ #: libs/framework/pages/settings-dashboard.php:152
691
+ msgid "Satisfied!"
692
+ msgstr ""
693
+
694
+ #: libs/framework/pages/settings-dashboard.php:152
695
+ msgid "Don’t forget to rate our item."
696
+ msgstr ""
697
+
698
+ #: libs/framework/pages/settings-dashboard.php:154
699
+ msgid "Rate it now"
700
+ msgstr ""
701
+
702
+ #: libs/framework/pages/settings-dashboard.php:159
703
+ msgid "Rate Now Thumb"
704
+ msgstr ""
705
+
706
+ #: libs/framework/pages/settings-elements.php:9
707
+ msgid ""
708
+ "You can disable the elements you are not using on your site. That will "
709
+ "disable all associated assets of those widgets to improve your site loading."
710
+ msgstr ""
711
+
712
+ #: libs/framework/pages/settings-init.php:5
713
+ msgid "Dashboard"
714
+ msgstr ""
715
+
716
+ #: libs/framework/pages/settings-init.php:6
717
+ msgid "General info"
718
+ msgstr ""
719
+
720
+ #: libs/framework/pages/settings-init.php:10
721
+ msgid "Elements"
722
+ msgstr ""
723
+
724
+ #: libs/framework/pages/settings-init.php:11
725
+ msgid "Enable disable widgets"
726
+ msgstr ""
727
+
728
+ #: libs/framework/pages/settings-init.php:15
729
+ msgid "Modules"
730
+ msgstr ""
731
+
732
+ #: libs/framework/pages/settings-init.php:16
733
+ msgid "Enable disable modules"
734
+ msgstr ""
735
+
736
+ #: libs/framework/pages/settings-init.php:20
737
+ msgid "User Data"
738
+ msgstr ""
739
+
740
+ #: libs/framework/pages/settings-init.php:21
741
+ msgid "Data for fb, mailchimp etc"
742
+ msgstr ""
743
+
744
+ #: libs/framework/pages/settings-init.php:64
745
+ msgid "Save Changes"
746
+ msgstr ""
747
+
748
+ #: libs/framework/pages/settings-modules.php:8
749
+ msgid ""
750
+ "You can disable the modules you are not using on your site. That will "
751
+ "disable all associated assets of those modules to improve your site loading."
752
+ msgstr ""
753
+
754
+ #: libs/framework/pages/settings-modules.php:11
755
+ #: modules/header-footer/cpt.php:52
756
+ msgid "Header Footer"
757
+ msgstr ""
758
+
759
+ #: libs/framework/pages/settings-userdata.php:12
760
+ msgid "Facebook User Data"
761
+ msgstr ""
762
+
763
+ #: libs/framework/pages/settings-userdata.php:23
764
+ msgid "Page ID"
765
+ msgstr ""
766
+
767
+ #: libs/framework/pages/settings-userdata.php:32
768
+ #: libs/framework/pages/settings-userdata.php:66
769
+ #: libs/framework/pages/settings-userdata.php:125
770
+ msgid "Access Token"
771
+ msgstr ""
772
+
773
+ #: libs/framework/pages/settings-userdata.php:37
774
+ #: libs/framework/pages/settings-userdata.php:72
775
+ #: libs/framework/pages/settings-userdata.php:130
776
+ msgid "Get Access Token"
777
+ msgstr ""
778
+
779
+ #: libs/framework/pages/settings-userdata.php:45
780
+ msgid "Twitter User Data"
781
+ msgstr ""
782
+
783
+ #: libs/framework/pages/settings-userdata.php:56
784
+ msgid "Twitter Username"
785
+ msgstr ""
786
+
787
+ #: libs/framework/pages/settings-userdata.php:81
788
+ msgid "Mail Chimp Data"
789
+ msgstr ""
790
+
791
+ #: libs/framework/pages/settings-userdata.php:92
792
+ msgid "Token"
793
+ msgstr ""
794
+
795
+ #: libs/framework/pages/settings-userdata.php:105
796
+ msgid "Instragram User Data"
797
+ msgstr ""
798
+
799
+ #: libs/framework/pages/settings-userdata.php:116
800
+ msgid "User ID"
801
+ msgstr ""
802
+
803
+ #: libs/updater/edd-warper.php:237
804
+ #, php-format
805
+ msgid ""
806
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s."
807
+ msgstr ""
808
+
809
+ #: libs/updater/edd-warper.php:245
810
+ #, php-format
811
+ msgid ""
812
+ "There is a new version of %1$s available. %2$sView version %3$s details%4$s "
813
+ "or %5$supdate now%6$s."
814
+ msgstr ""
815
+
816
+ #: libs/updater/edd-warper.php:489
817
+ msgid "You do not have permission to install plugin updates"
818
+ msgstr ""
819
+
820
+ #: libs/updater/edd-warper.php:489
821
+ msgid "Error"
822
+ msgstr ""
823
+
824
+ #: modules/controls/icon.php:33 modules/controls/icon.php:34
825
+ #: widgets/header-search/header-search.php:60
826
+ msgid "Select Icon"
827
+ msgstr ""
828
+
829
+ #: modules/controls/icons.php:15
830
+ msgid "ElementsKit_Lite - Icons"
831
+ msgstr ""
832
+
833
+ #: modules/controls/widget-area-modal.php:11
834
+ msgid "Widget Area"
835
+ msgstr ""
836
+
837
+ #: modules/controls/widget-area-modal.php:17
838
+ #: modules/controls/widget-area-modal.php:18
839
+ #: modules/library/views/editor/template-library-header.php:8
840
+ #: widgets/business-hours/business-hours.php:127
841
+ msgid "Close"
842
+ msgstr ""
843
+
844
+ #: modules/controls/widget-area-modal.php:43
845
+ msgid "Loading"
846
+ msgstr ""
847
+
848
+ #: modules/controls/widget-area-utils.php:33
849
+ msgid "Edit"
850
+ msgstr ""
851
+
852
+ #: modules/controls/widget-area-utils.php:45
853
+ msgid "no content added yet"
854
+ msgstr ""
855
+
856
+ #: modules/dynamic-content/cpt.php:17
857
+ msgctxt "Post Type General Name"
858
+ msgid "ElementsKit items"
859
+ msgstr ""
860
+
861
+ #: modules/dynamic-content/cpt.php:18
862
+ msgctxt "Post Type Singular Name"
863
+ msgid "ElementsKit item"
864
+ msgstr ""
865
+
866
+ #: modules/dynamic-content/cpt.php:19 modules/dynamic-content/cpt.php:20
867
+ #: modules/dynamic-content/cpt.php:52
868
+ msgid "ElementsKit item"
869
+ msgstr ""
870
+
871
+ #: modules/dynamic-content/cpt.php:21
872
+ msgid "Item Archives"
873
+ msgstr ""
874
+
875
+ #: modules/dynamic-content/cpt.php:22
876
+ msgid "Item Attributes"
877
+ msgstr ""
878
+
879
+ #: modules/dynamic-content/cpt.php:23
880
+ msgid "Parent Item:"
881
+ msgstr ""
882
+
883
+ #: modules/dynamic-content/cpt.php:24
884
+ msgid "All Items"
885
+ msgstr ""
886
+
887
+ #: modules/dynamic-content/cpt.php:25
888
+ msgid "Add New Item"
889
+ msgstr ""
890
+
891
+ #: modules/dynamic-content/cpt.php:26 modules/header-footer/cpt.php:22
892
+ msgid "Add New"
893
+ msgstr ""
894
+
895
+ #: modules/dynamic-content/cpt.php:27
896
+ msgid "New Item"
897
+ msgstr ""
898
+
899
+ #: modules/dynamic-content/cpt.php:28
900
+ msgid "Edit Item"
901
+ msgstr ""
902
+
903
+ #: modules/dynamic-content/cpt.php:29
904
+ msgid "Update Item"
905
+ msgstr ""
906
+
907
+ #: modules/dynamic-content/cpt.php:30
908
+ msgid "View Item"
909
+ msgstr ""
910
+
911
+ #: modules/dynamic-content/cpt.php:31
912
+ msgid "View Items"
913
+ msgstr ""
914
+
915
+ #: modules/dynamic-content/cpt.php:32
916
+ msgid "Search Item"
917
+ msgstr ""
918
+
919
+ #: modules/dynamic-content/cpt.php:33
920
+ msgid "Not found"
921
+ msgstr ""
922
+
923
+ #: modules/dynamic-content/cpt.php:34
924
+ msgid "Not found in Trash"
925
+ msgstr ""
926
+
927
+ #: modules/dynamic-content/cpt.php:35 widgets/blog-posts/blog-posts.php:787
928
+ msgid "Featured Image"
929
+ msgstr ""
930
+
931
+ #: modules/dynamic-content/cpt.php:36
932
+ msgid "Set featured image"
933
+ msgstr ""
934
+
935
+ #: modules/dynamic-content/cpt.php:37
936
+ msgid "Remove featured image"
937
+ msgstr ""
938
+
939
+ #: modules/dynamic-content/cpt.php:38
940
+ msgid "Use as featured image"
941
+ msgstr ""
942
+
943
+ #: modules/dynamic-content/cpt.php:39
944
+ msgid "Insert into item"
945
+ msgstr ""
946
+
947
+ #: modules/dynamic-content/cpt.php:40
948
+ msgid "Uploaded to this item"
949
+ msgstr ""
950
+
951
+ #: modules/dynamic-content/cpt.php:41
952
+ msgid "Items list"
953
+ msgstr ""
954
+
955
+ #: modules/dynamic-content/cpt.php:42
956
+ msgid "Items list navigation"
957
+ msgstr ""
958
+
959
+ #: modules/dynamic-content/cpt.php:43
960
+ msgid "Filter items list"
961
+ msgstr ""
962
+
963
+ #: modules/dynamic-content/cpt.php:53
964
+ msgid "elementskit_content"
965
+ msgstr ""
966
+
967
+ #: modules/header-footer/cpt-api.php:78 modules/header-footer/cpt-hooks.php:56
968
+ #: widgets/advanced-tab/advanced-tab.php:768
969
+ #: widgets/advanced-tab/advanced-tab.php:2111
970
+ #: widgets/advanced-toggle/advanced-toggle.php:158
971
+ #: widgets/advanced-toggle/advanced-toggle.php:366
972
+ #: widgets/client-logo/client-logo.php:1204 widgets/gallery/gallery.php:2741
973
+ #: widgets/nav-menu/nav-menu.php:424 widgets/nav-menu/nav-menu.php:628
974
+ #: widgets/post-tab/post-tab.php:268 widgets/tab/tab.php:779
975
+ #: widgets/testimonial/testimonial.php:673
976
+ #: widgets/testimonial/testimonial.php:868
977
+ #: widgets/testimonial/testimonial.php:1862
978
+ #: widgets/vertical-menu/vertical-menu.php:243
979
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2379
980
+ msgid "Active"
981
+ msgstr ""
982
+
983
+ #: modules/header-footer/cpt-api.php:79 modules/header-footer/cpt-hooks.php:57
984
+ msgid "Inactive"
985
+ msgstr ""
986
+
987
+ #: modules/header-footer/cpt-hooks.php:32
988
+ msgid "Type"
989
+ msgstr ""
990
+
991
+ #: modules/header-footer/cpt-hooks.php:33
992
+ msgid "Conditions"
993
+ msgstr ""
994
+
995
+ #: modules/header-footer/cpt.php:18 modules/header-footer/cpt.php:21
996
+ msgid "Templates"
997
+ msgstr ""
998
+
999
+ #: modules/header-footer/cpt.php:19
1000
+ msgid "Template"
1001
+ msgstr ""
1002
+
1003
+ #: modules/header-footer/cpt.php:20
1004
+ msgid "Header Footerr"
1005
+ msgstr ""
1006
+
1007
+ #: modules/header-footer/cpt.php:23
1008
+ msgid "Add New Template"
1009
+ msgstr ""
1010
+
1011
+ #: modules/header-footer/cpt.php:24
1012
+ msgid "New Template"
1013
+ msgstr ""
1014
+
1015
+ #: modules/header-footer/cpt.php:25
1016
+ msgid "Edit Template"
1017
+ msgstr ""
1018
+
1019
+ #: modules/header-footer/cpt.php:26
1020
+ msgid "View Template"
1021
+ msgstr ""
1022
+
1023
+ #: modules/header-footer/cpt.php:27
1024
+ msgid "All Templates"
1025
+ msgstr ""
1026
+
1027
+ #: modules/header-footer/cpt.php:28
1028
+ msgid "Search Templates"
1029
+ msgstr ""
1030
+
1031
+ #: modules/header-footer/cpt.php:29
1032
+ msgid "Parent Templates:"
1033
+ msgstr ""
1034
+
1035
+ #: modules/header-footer/cpt.php:30
1036
+ msgid "No Templates found."
1037
+ msgstr ""
1038
+
1039
+ #: modules/header-footer/cpt.php:31
1040
+ msgid "No Templates found in Trash."
1041
+ msgstr ""
1042
+
1043
+ #: modules/header-footer/views/modal-editor.php:11
1044
+ msgid "Template Settings"
1045
+ msgstr ""
1046
+
1047
+ #: modules/header-footer/views/modal-editor.php:15
1048
+ #: widgets/woo-mini-cart/woo-mini-cart.php:515
1049
+ #: widgets/woo-mini-cart/woo-mini-cart.php:927
1050
+ msgid "Title:"
1051
+ msgstr ""
1052
+
1053
+ #: modules/header-footer/views/modal-editor.php:20
1054
+ #: modules/library/views/editor/template-library-item.php:40
1055
+ msgid "Type:"
1056
+ msgstr ""
1057
+
1058
+ #: modules/header-footer/views/modal-editor.php:22
1059
+ #: widgets/facebook-feed/facebook-feed.php:407
1060
+ #: widgets/instagram-feed/instagram-feed.php:492 widgets/pricing/pricing.php:35
1061
+ #: widgets/pricing/pricing.php:2299 widgets/table/table.php:820
1062
+ #: widgets/tablepress/tablepress.php:291
1063
+ #: widgets/twitter-feed/twitter-feed.php:611
1064
+ #: widgets/woo-mini-cart/woo-mini-cart.php:370
1065
+ msgid "Header"
1066
+ msgstr ""
1067
+
1068
+ #: modules/header-footer/views/modal-editor.php:23
1069
+ #: widgets/facebook-feed/facebook-feed.php:953
1070
+ #: widgets/instagram-feed/instagram-feed.php:663
1071
+ msgid "Footer"
1072
+ msgstr ""
1073
+
1074
+ #: modules/header-footer/views/modal-editor.php:30
1075
+ msgid "Conditions:"
1076
+ msgstr ""
1077
+
1078
+ #: modules/header-footer/views/modal-editor.php:32
1079
+ msgid "Entire Site"
1080
+ msgstr ""
1081
+
1082
+ #: modules/header-footer/views/modal-editor.php:33
1083
+ msgid "Singular"
1084
+ msgstr ""
1085
+
1086
+ #: modules/header-footer/views/modal-editor.php:34
1087
+ msgid "Archive"
1088
+ msgstr ""
1089
+
1090
+ #: modules/header-footer/views/modal-editor.php:44
1091
+ msgid "All Singulars"
1092
+ msgstr ""
1093
+
1094
+ #: modules/header-footer/views/modal-editor.php:45
1095
+ msgid "Front Page"
1096
+ msgstr ""
1097
+
1098
+ #: modules/header-footer/views/modal-editor.php:46
1099
+ msgid "All Posts"
1100
+ msgstr ""
1101
+
1102
+ #: modules/header-footer/views/modal-editor.php:47
1103
+ msgid "All Pages"
1104
+ msgstr ""
1105
+
1106
+ #: modules/header-footer/views/modal-editor.php:48
1107
+ msgid "Selective Singular"
1108
+ msgstr ""
1109
+
1110
+ #: modules/header-footer/views/modal-editor.php:50
1111
+ msgid "404 Page"
1112
+ msgstr ""
1113
+
1114
+ #: modules/header-footer/views/modal-editor.php:67
1115
+ msgid "Activition:"
1116
+ msgstr ""
1117
+
1118
+ #: modules/header-footer/views/modal-editor.php:82
1119
+ msgid "Edit with Elementor"
1120
+ msgstr ""
1121
+
1122
+ #: modules/header-footer/views/modal-editor.php:83
1123
+ msgid "Save changes"
1124
+ msgstr ""
1125
+
1126
+ #: modules/library/views/editor/template-library-error.php:8
1127
+ msgid "Template couldn't be loaded. Please activate you license key before."
1128
+ msgstr ""
1129
+
1130
+ #: modules/library/views/editor/template-library-header-back.php:3
1131
+ msgid "Back to Library"
1132
+ msgstr ""
1133
+
1134
+ #: modules/library/views/editor/template-library-insert-button.php:5
1135
+ #: modules/library/views/editor/template-library-item.php:29
1136
+ msgid "Insert"
1137
+ msgstr ""
1138
+
1139
+ #: modules/library/views/editor/template-library-item.php:23
1140
+ #: modules/library/views/editor/template-library-pro-button.php:6
1141
+ msgid "Active License"
1142
+ msgstr ""
1143
+
1144
+ #: modules/library/views/editor/template-library-keywords.php:10
1145
+ msgid "Any Topic"
1146
+ msgstr ""
1147
+
1148
+ #: modules/library/views/editor/template-library-live-button.php:5
1149
+ msgid "Live Preview"
1150
+ msgstr ""
1151
+
1152
+ #: modules/megamenu/api.php:24
1153
+ msgid "Saved"
1154
+ msgstr ""
1155
+
1156
+ #: modules/megamenu/views/options-megamenu.php:4
1157
+ msgid "ElementsKit_Lite Megamenu"
1158
+ msgstr ""
1159
+
1160
+ #: modules/megamenu/views/options-megamenu.php:7
1161
+ msgid "Enable this menu for Megamenu content"
1162
+ msgstr ""
1163
+
1164
+ #: modules/megamenu/views/options-menu-item.php:7
1165
+ #: widgets/accordion/accordion.php:72
1166
+ #: widgets/advanced-accordion/advanced-accordion.php:72
1167
+ #: widgets/advanced-accordion/advanced-accordion.php:463
1168
+ #: widgets/advanced-tab/advanced-tab.php:441
1169
+ #: widgets/advanced-toggle/advanced-toggle.php:114
1170
+ #: widgets/advanced-toggle/advanced-toggle.php:392
1171
+ #: widgets/blog-posts/blog-posts.php:1796
1172
+ #: widgets/business-hours/business-hours.php:37 widgets/button/button.php:37
1173
+ #: widgets/countdown-timer/countdown-timer.php:201
1174
+ #: widgets/creative-button/creative-button.php:37
1175
+ #: widgets/drop-caps/drop-caps.php:43
1176
+ #: widgets/facebook-feed/facebook-feed.php:499 widgets/faq/faq.php:55
1177
+ #: widgets/faq/faq.php:185 widgets/funfact/funfact.php:152
1178
+ #: widgets/funfact/funfact.php:729
1179
+ #: widgets/header-offcanvas/header-offcanvas.php:44
1180
+ #: widgets/hotspot/hotspot.php:435 widgets/icon-box/icon-box.php:130
1181
+ #: widgets/icon-box/icon-box.php:803
1182
+ #: widgets/image-accordion/image-accordion.php:36
1183
+ #: widgets/image-accordion/image-accordion.php:429
1184
+ #: widgets/instagram-feed/instagram-feed.php:822
1185
+ #: widgets/motion-text/motion-text.php:34 widgets/piechart/piechart.php:44
1186
+ #: widgets/piechart/piechart.php:262 widgets/tab/tab.php:390
1187
+ #: widgets/team/team.php:529 widgets/timeline/timeline.php:36
1188
+ #: widgets/timeline/timeline.php:409 widgets/twitter-feed/twitter-feed.php:796
1189
+ #: widgets/woo-mini-cart/woo-mini-cart.php:40
1190
+ #: widgets/woo-product-carousel/woo-product-carousel.php:625
1191
+ #: widgets/woo-product-list/woo-product-list.php:784
1192
+ msgid "Content"
1193
+ msgstr ""
1194
+
1195
+ #: modules/megamenu/views/options-menu-item.php:9
1196
+ #: widgets/accordion/accordion.php:126 widgets/accordion/accordion.php:596
1197
+ #: widgets/advanced-accordion/advanced-accordion.php:123
1198
+ #: widgets/advanced-accordion/advanced-accordion.php:593
1199
+ #: widgets/advanced-tab/advanced-tab.php:399
1200
+ #: widgets/blog-posts/blog-posts.php:475 widgets/button/button.php:95
1201
+ #: widgets/button/button.php:395 widgets/category-list/category-list.php:80
1202
+ #: widgets/category-list/category-list.php:296
1203
+ #: widgets/creative-button/creative-button.php:95
1204
+ #: widgets/creative-button/creative-button.php:558
1205
+ #: widgets/dual-button/dual-button.php:196
1206
+ #: widgets/dual-button/dual-button.php:325 widgets/funfact/funfact.php:41
1207
+ #: widgets/funfact/funfact.php:53 widgets/funfact/funfact.php:87
1208
+ #: widgets/funfact/funfact.php:368 widgets/header-info/header-info.php:45
1209
+ #: widgets/header-offcanvas/header-offcanvas.php:73
1210
+ #: widgets/icon-box/icon-box.php:51 widgets/icon-box/icon-box.php:258
1211
+ #: widgets/icon-box/icon-box.php:495 widgets/image-box/image-box.php:322
1212
+ #: widgets/instagram-feed/instagram-feed.php:564
1213
+ #: widgets/instagram-feed/instagram-feed.php:636
1214
+ #: widgets/mail-chimp/mail-chimp.php:152 widgets/mail-chimp/mail-chimp.php:246
1215
+ #: widgets/mail-chimp/mail-chimp.php:338 widgets/mail-chimp/mail-chimp.php:412
1216
+ #: widgets/mail-chimp/mail-chimp.php:1010 widgets/page-list/page-list.php:156
1217
+ #: widgets/page-list/page-list.php:670 widgets/piechart/piechart.php:70
1218
+ #: widgets/piechart/piechart.php:94 widgets/piechart/piechart.php:106
1219
+ #: widgets/post-list/post-list.php:170 widgets/post-list/post-list.php:463
1220
+ #: widgets/pricing/pricing.php:87 widgets/pricing/pricing.php:118
1221
+ #: widgets/pricing/pricing.php:230 widgets/pricing/pricing.php:355
1222
+ #: widgets/progressbar/progressbar.php:396
1223
+ #: widgets/social-share/social-share.php:53
1224
+ #: widgets/social-share/social-share.php:163 widgets/social/social.php:47
1225
+ #: widgets/social/social.php:157 widgets/tab/tab.php:348
1226
+ #: widgets/table/table.php:103 widgets/table/table.php:119
1227
+ #: widgets/table/table.php:378 widgets/table/table.php:393
1228
+ #: widgets/team/team.php:126 widgets/team/team.php:194
1229
+ #: widgets/team/team.php:920 widgets/timeline/timeline.php:381
1230
+ #: widgets/twitter-feed/twitter-feed.php:696
1231
+ #: widgets/twitter-feed/twitter-feed.php:769 widgets/video/video.php:53
1232
+ #: widgets/video/video.php:698 widgets/woo-mini-cart/woo-mini-cart.php:48
1233
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1326
1234
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1928
1235
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1953
1236
+ #: widgets/woo-product-list/woo-product-list.php:1490
1237
+ msgid "Icon"
1238
+ msgstr ""
1239
+
1240
+ #: modules/megamenu/views/options-menu-item.php:11
1241
+ #: widgets/icon-box/icon-box.php:439 widgets/icon-box/icon-box.php:1478
1242
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1519
1243
+ #: widgets/woo-product-list/woo-product-list.php:1852
1244
+ msgid "Badge"
1245
+ msgstr ""
1246
+
1247
+ #: modules/megamenu/views/options-menu-item.php:13
1248
+ msgid "Extra"
1249
+ msgstr ""
1250
+
1251
+ #: modules/megamenu/views/options-menu-item.php:26
1252
+ msgid "Megamenu enabled"
1253
+ msgstr ""
1254
+
1255
+ #: modules/megamenu/views/options-menu-item.php:28
1256
+ msgid "Megamenu disabled"
1257
+ msgstr ""
1258
+
1259
+ #: modules/megamenu/views/options-menu-item.php:35
1260
+ msgid "Edit megamenu content"
1261
+ msgstr ""
1262
+
1263
+ #: modules/megamenu/views/options-menu-item.php:39
1264
+ msgid "Use mobile submenu as:"
1265
+ msgstr ""
1266
+
1267
+ #: modules/megamenu/views/options-menu-item.php:40
1268
+ msgid "builder content"
1269
+ msgstr ""
1270
+
1271
+ #: modules/megamenu/views/options-menu-item.php:41
1272
+ msgid "wp submenu list"
1273
+ msgstr ""
1274
+
1275
+ #: modules/megamenu/views/options-menu-item.php:46
1276
+ msgid ""
1277
+ "This plugin requires Elementor page builder to edt megamenu items content"
1278
+ msgstr ""
1279
+
1280
+ #: modules/megamenu/views/options-menu-item.php:54
1281
+ msgid "Choose icon color"
1282
+ msgstr ""
1283
+
1284
+ #: modules/megamenu/views/options-menu-item.php:61
1285
+ msgid "Select icon"
1286
+ msgstr ""
1287
+
1288
+ #: modules/megamenu/views/options-menu-item.php:64
1289
+ msgid "No icon"
1290
+ msgstr ""
1291
+
1292
+ #: modules/megamenu/views/options-menu-item.php:80
1293
+ msgid "Badge text"
1294
+ msgstr ""
1295
+
1296
+ #: modules/megamenu/views/options-menu-item.php:83
1297
+ msgid "Badge Text"
1298
+ msgstr ""
1299
+
1300
+ #: modules/megamenu/views/options-menu-item.php:89
1301
+ msgid "Choose badge color"
1302
+ msgstr ""
1303
+
1304
+ #: modules/megamenu/views/options-menu-item.php:97
1305
+ msgid "Choose badge background"
1306
+ msgstr ""
1307
+
1308
+ #: modules/megamenu/views/options-menu-item.php:110
1309
+ msgid "Vertical Mega Menu Position as:"
1310
+ msgstr ""
1311
+
1312
+ #: modules/megamenu/views/options-menu-item.php:111
1313
+ msgid "Relative"
1314
+ msgstr ""
1315
+
1316
+ #: modules/megamenu/views/options-menu-item.php:112
1317
+ #: modules/onepage-scroll/extend-controls-pro.php:108
1318
+ #: modules/parallax/widget-controls.php:534
1319
+ #: modules/parallax/widget-controls.php:576
1320
+ #: modules/parallax/widget-controls.php:651
1321
+ #: modules/parallax/widget-controls.php:726
1322
+ #: modules/parallax/widget-controls.php:803
1323
+ #: modules/parallax/widget-controls.php:879
1324
+ #: modules/parallax/widget-controls.php:953
1325
+ #: modules/sticky-content/extend-controls.php:28
1326
+ #: widgets/advanced-tab/advanced-tab.php:156
1327
+ #: widgets/blog-posts/blog-posts.php:583 widgets/blog-posts/blog-posts.php:1198
1328
+ #: widgets/chart/chart.php:620 widgets/chart/chart.php:785
1329
+ #: widgets/funfact/funfact.php:904 widgets/funfact/funfact.php:955
1330
+ #: widgets/gallery/gallery.php:204 widgets/gallery/gallery.php:2220
1331
+ #: widgets/heading/heading.php:240 widgets/hotspot/hotspot.php:139
1332
+ #: widgets/hotspot/hotspot.php:211 widgets/hotspot/hotspot.php:273
1333
+ #: widgets/hotspot/hotspot.php:740 widgets/icon-box/icon-box.php:373
1334
+ #: widgets/image-accordion/image-accordion.php:478
1335
+ #: widgets/nav-menu/nav-menu.php:820 widgets/page-list/page-list.php:193
1336
+ #: widgets/page-list/page-list.php:400 widgets/post-list/post-list.php:268
1337
+ #: widgets/pricing/pricing.php:1388 widgets/pricing/pricing.php:1458
1338
+ #: widgets/tab/tab.php:155 widgets/table/table.php:154
1339
+ #: widgets/testimonial/testimonial.php:145
1340
+ #: widgets/testimonial/testimonial.php:718
1341
+ #: widgets/woo-category-list/woo-category-list.php:596
1342
+ #: widgets/woo-category-list/woo-category-list.php:894
1343
+ #: widgets/woo-product-carousel/woo-product-carousel.php:661
1344
+ #: widgets/woo-product-carousel/woo-product-carousel.php:687
1345
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1123
1346
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1570
1347
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2525
1348
+ #: widgets/woo-product-list/woo-product-list.php:824
1349
+ #: widgets/woo-product-list/woo-product-list.php:850
1350
+ #: widgets/woo-product-list/woo-product-list.php:1286
1351
+ #: widgets/woo-product-list/woo-product-list.php:1904
1352
+ #: widgets/woo-product-list/woo-product-list.php:2313
1353
+ msgid "Top"
1354
+ msgstr ""
1355
+
1356
+ #: modules/megamenu/views/options-menu-item.php:117
1357
+ #: modules/megamenu/views/options-menu-item.php:120
1358
+ msgid "Vertical Menu Width"
1359
+ msgstr ""
1360
+
1361
+ #: modules/megamenu/views/options-menu-item.php:143
1362
+ msgid "Save"
1363
+ msgstr ""
1364
+
1365
+ #: modules/megamenu/walker-nav-menu.php:291
1366
+ msgid "No content found"
1367
+ msgstr ""
1368
+
1369
+ #: modules/onepage-scroll/extend-controls-pro.php:29
1370
+ msgid "Onepage Scroll Settings"
1371
+ msgstr ""
1372
+
1373
+ #: modules/onepage-scroll/extend-controls-pro.php:41
1374
+ msgid "Navigation Style"
1375
+ msgstr ""
1376
+
1377
+ #: modules/onepage-scroll/extend-controls-pro.php:45
1378
+ #: modules/parallax/section-controls.php:515
1379
+ #: modules/parallax/widget-controls.php:30
1380
+ #: modules/sticky-content/extend-controls.php:27
1381
+ #: widgets/advanced-tab/advanced-tab.php:395
1382
+ #: widgets/blog-posts/blog-posts.php:704 widgets/blog-posts/blog-posts.php:2316
1383
+ #: widgets/button/button.php:289 widgets/funfact/funfact.php:61
1384
+ #: widgets/icon-box/icon-box.php:47 widgets/image-box/image-box.php:756
1385
+ #: widgets/nav-menu/nav-menu.php:478 widgets/pricing/pricing.php:83
1386
+ #: widgets/pricing/pricing.php:551 widgets/pricing/pricing.php:778
1387
+ #: widgets/pricing/pricing.php:1565 widgets/pricing/pricing.php:1718
1388
+ #: widgets/pricing/pricing.php:2083 widgets/social-share/social-share.php:465
1389
+ #: widgets/social/social.php:427 widgets/tab/tab.php:344
1390
+ #: widgets/table/table.php:99 widgets/table/table.php:374
1391
+ #: widgets/table/table.php:1432 widgets/table/table.php:2232
1392
+ #: widgets/tablepress/tablepress.php:59 widgets/tablepress/tablepress.php:75
1393
+ #: widgets/tablepress/tablepress.php:212 widgets/tablepress/tablepress.php:339
1394
+ #: widgets/tablepress/tablepress.php:422 widgets/team/team.php:1517
1395
+ #: widgets/video/video.php:586
1396
+ #: widgets/woo-product-carousel/woo-product-carousel.php:65
1397
+ #: widgets/woo-product-carousel/woo-product-carousel.php:440
1398
+ msgid "None"
1399
+ msgstr ""
1400
+
1401
+ #: modules/onepage-scroll/extend-controls-pro.php:47
1402
+ #: widgets/facebook-feed/facebook-feed.php:147
1403
+ #: widgets/instagram-feed/instagram-feed.php:146
1404
+ #: widgets/twitter-feed/twitter-feed.php:195
1405
+ msgid "Circle"
1406
+ msgstr ""
1407
+
1408
+ #: modules/onepage-scroll/extend-controls-pro.php:49
1409
+ #: modules/onepage-scroll/extend-controls-pro.php:62
1410
+ #: widgets/woo-product-carousel/woo-product-carousel.php:67
1411
+ msgid "Scale Up"
1412
+ msgstr ""
1413
+
1414
+ #: modules/onepage-scroll/extend-controls-pro.php:50
1415
+ msgid "Fill In"
1416
+ msgstr ""
1417
+
1418
+ #: modules/onepage-scroll/extend-controls-pro.php:51
1419
+ msgid "Fill Out"
1420
+ msgstr ""
1421
+
1422
+ #: modules/onepage-scroll/extend-controls-pro.php:52
1423
+ msgid "Stroke"
1424
+ msgstr ""
1425
+
1426
+ #: modules/onepage-scroll/extend-controls-pro.php:53
1427
+ msgid "Stroke Dot"
1428
+ msgstr ""
1429
+
1430
+ #: modules/onepage-scroll/extend-controls-pro.php:54
1431
+ msgid "Stroke Simple"
1432
+ msgstr ""
1433
+
1434
+ #: modules/onepage-scroll/extend-controls-pro.php:55
1435
+ msgid "Dot Move"
1436
+ msgstr ""
1437
+
1438
+ #: modules/onepage-scroll/extend-controls-pro.php:56
1439
+ #: widgets/timeline/timeline-handler.php:11
1440
+ msgid "Timeline"
1441
+ msgstr ""
1442
+
1443
+ #: modules/onepage-scroll/extend-controls-pro.php:60
1444
+ #: widgets/facebook-feed/facebook-feed.php:148
1445
+ #: widgets/instagram-feed/instagram-feed.php:147
1446
+ #: widgets/twitter-feed/twitter-feed.php:196
1447
+ msgid "Square"
1448
+ msgstr ""
1449
+
1450
+ #: modules/onepage-scroll/extend-controls-pro.php:66
1451
+ #: widgets/chart/chart.php:306 widgets/social-share/social-share.php:214
1452
+ msgid "Line"
1453
+ msgstr ""
1454
+
1455
+ #: modules/onepage-scroll/extend-controls-pro.php:68
1456
+ msgid "Line Grow"
1457
+ msgstr ""
1458
+
1459
+ #: modules/onepage-scroll/extend-controls-pro.php:69
1460
+ msgid "Line Shrink"
1461
+ msgstr ""
1462
+
1463
+ #: modules/onepage-scroll/extend-controls-pro.php:70
1464
+ msgid "Line Fill"
1465
+ msgstr ""
1466
+
1467
+ #: modules/onepage-scroll/extend-controls-pro.php:71
1468
+ msgid "Line Move"
1469
+ msgstr ""
1470
+
1471
+ #: modules/onepage-scroll/extend-controls-pro.php:74
1472
+ msgid "Custom Icon"
1473
+ msgstr ""
1474
+
1475
+ #: modules/onepage-scroll/extend-controls-pro.php:86
1476
+ msgid "Navigation Icon"
1477
+ msgstr ""
1478
+
1479
+ #: modules/onepage-scroll/extend-controls-pro.php:103
1480
+ msgid "Navigation Position"
1481
+ msgstr ""
1482
+
1483
+ #: modules/onepage-scroll/extend-controls-pro.php:112
1484
+ #: modules/parallax/widget-controls.php:535
1485
+ #: modules/parallax/widget-controls.php:575
1486
+ #: modules/parallax/widget-controls.php:650
1487
+ #: modules/parallax/widget-controls.php:725
1488
+ #: modules/parallax/widget-controls.php:802
1489
+ #: modules/parallax/widget-controls.php:878
1490
+ #: modules/parallax/widget-controls.php:952
1491
+ #: modules/sticky-content/extend-controls.php:29
1492
+ #: widgets/advanced-tab/advanced-tab.php:157
1493
+ #: widgets/advanced-tab/advanced-tab.php:1105
1494
+ #: widgets/advanced-tab/advanced-tab.php:1474
1495
+ #: widgets/blog-posts/blog-posts.php:591 widgets/blog-posts/blog-posts.php:1226
1496
+ #: widgets/chart/chart.php:624 widgets/chart/chart.php:789
1497
+ #: widgets/funfact/funfact.php:963 widgets/gallery/gallery.php:212
1498
+ #: widgets/gallery/gallery.php:2327 widgets/gallery/gallery.php:2565
1499
+ #: widgets/heading/heading.php:243 widgets/hotspot/hotspot.php:142
1500
+ #: widgets/hotspot/hotspot.php:154 widgets/hotspot/hotspot.php:182
1501
+ #: widgets/hotspot/hotspot.php:338 widgets/hotspot/hotspot.php:743
1502
+ #: widgets/image-accordion/image-accordion.php:486
1503
+ #: widgets/page-list/page-list.php:201 widgets/page-list/page-list.php:408
1504
+ #: widgets/post-list/post-list.php:269 widgets/pricing/pricing.php:1396
1505
+ #: widgets/pricing/pricing.php:1466 widgets/tab/tab.php:156
1506
+ #: widgets/tab/tab.php:1116 widgets/tab/tab.php:1485
1507
+ #: widgets/testimonial/testimonial.php:146
1508
+ #: widgets/testimonial/testimonial.php:726
1509
+ #: widgets/testimonial/testimonial.php:1708
1510
+ #: widgets/woo-category-list/woo-category-list.php:604
1511
+ #: widgets/woo-category-list/woo-category-list.php:902
1512
+ #: widgets/woo-product-carousel/woo-product-carousel.php:669
1513
+ #: widgets/woo-product-carousel/woo-product-carousel.php:695
1514
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1131
1515
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1578
1516
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2533
1517
+ #: widgets/woo-product-list/woo-product-list.php:832
1518
+ #: widgets/woo-product-list/woo-product-list.php:858
1519
+ #: widgets/woo-product-list/woo-product-list.php:1294
1520
+ #: widgets/woo-product-list/woo-product-list.php:1912
1521
+ #: widgets/woo-product-list/woo-product-list.php:2321
1522
+ msgid "Bottom"
1523
+ msgstr ""
1524
+
1525
+ #: modules/onepage-scroll/extend-controls-pro.php:116
1526
+ #: modules/parallax/widget-controls.php:609
1527
+ #: modules/parallax/widget-controls.php:912 widgets/accordion/accordion.php:137
1528
+ #: widgets/advanced-accordion/advanced-accordion.php:134
1529
+ #: widgets/advanced-tab/advanced-tab.php:155
1530
+ #: widgets/advanced-tab/advanced-tab.php:269
1531
+ #: widgets/advanced-tab/advanced-tab.php:299
1532
+ #: widgets/advanced-tab/advanced-tab.php:325
1533
+ #: widgets/advanced-tab/advanced-tab.php:1014
1534
+ #: widgets/advanced-tab/advanced-tab.php:1135
1535
+ #: widgets/advanced-tab/advanced-tab.php:1505
1536
+ #: widgets/advanced-toggle/advanced-toggle.php:81
1537
+ #: widgets/advanced-toggle/advanced-toggle.php:314
1538
+ #: widgets/blog-posts/blog-posts.php:77 widgets/blog-posts/blog-posts.php:509
1539
+ #: widgets/blog-posts/blog-posts.php:877 widgets/blog-posts/blog-posts.php:1170
1540
+ #: widgets/blog-posts/blog-posts.php:1254
1541
+ #: widgets/blog-posts/blog-posts.php:1642
1542
+ #: widgets/blog-posts/blog-posts.php:1837 widgets/button/button.php:129
1543
+ #: widgets/caldera-forms/caldera-forms.php:576
1544
+ #: widgets/category-list/category-list.php:150 widgets/chart/chart.php:616
1545
+ #: widgets/chart/chart.php:781 widgets/contact-form7/contact-form7.php:576
1546
+ #: widgets/creative-button/creative-button.php:126
1547
+ #: widgets/creative-button/creative-button.php:218
1548
+ #: widgets/dual-button/dual-button.php:70
1549
+ #: widgets/dual-button/dual-button.php:532
1550
+ #: widgets/dual-button/dual-button.php:753 widgets/funfact/funfact.php:227
1551
+ #: widgets/gallery/gallery.php:178 widgets/gallery/gallery.php:2089
1552
+ #: widgets/gallery/gallery.php:2122 widgets/gallery/gallery.php:2595
1553
+ #: widgets/header-offcanvas/header-offcanvas.php:236
1554
+ #: widgets/header-search/header-search.php:310 widgets/heading/heading.php:298
1555
+ #: widgets/hotspot/hotspot.php:140 widgets/hotspot/hotspot.php:247
1556
+ #: widgets/hotspot/hotspot.php:490 widgets/hotspot/hotspot.php:741
1557
+ #: widgets/icon-box/icon-box.php:374 widgets/icon-box/icon-box.php:392
1558
+ #: widgets/image-accordion/image-accordion.php:440
1559
+ #: widgets/image-box/image-box.php:232
1560
+ #: widgets/instagram-feed/instagram-feed.php:255
1561
+ #: widgets/motion-text/motion-text.php:92 widgets/nav-menu/nav-menu.php:121
1562
+ #: widgets/ninja-forms/ninja-forms.php:71
1563
+ #: widgets/ninja-forms/ninja-forms.php:240
1564
+ #: widgets/ninja-forms/ninja-forms.php:603 widgets/page-list/page-list.php:377
1565
+ #: widgets/page-list/page-list.php:524 widgets/piechart/piechart.php:317
1566
+ #: widgets/post-list/post-list.php:317 widgets/pricing/pricing.php:450
1567
+ #: widgets/pricing/pricing.php:678 widgets/pricing/pricing.php:1683
1568
+ #: widgets/pricing/pricing.php:2256 widgets/social-share/social-share.php:137
1569
+ #: widgets/social-share/social-share.php:420 widgets/social/social.php:131
1570
+ #: widgets/social/social.php:382 widgets/tab/tab.php:154
1571
+ #: widgets/tab/tab.php:268 widgets/tab/tab.php:298 widgets/tab/tab.php:1025
1572
+ #: widgets/tab/tab.php:1146 widgets/tab/tab.php:1516
1573
+ #: widgets/table/table.php:266 widgets/table/table.php:515
1574
+ #: widgets/tablepress/tablepress.php:139 widgets/tablepress/tablepress.php:165
1575
+ #: widgets/team/team.php:457 widgets/team/team.php:500
1576
+ #: widgets/team/team.php:632 widgets/team/team.php:936
1577
+ #: widgets/team/team.php:1472 widgets/testimonial/testimonial.php:191
1578
+ #: widgets/testimonial/testimonial.php:744
1579
+ #: widgets/testimonial/testimonial.php:1575 widgets/timeline/timeline.php:421
1580
+ #: widgets/vertical-menu/vertical-menu.php:66 widgets/video/video.php:293
1581
+ #: widgets/we-forms/we-forms.php:395
1582
+ #: widgets/woo-category-list/woo-category-list.php:571
1583
+ #: widgets/woo-category-list/woo-category-list.php:869
1584
+ #: widgets/woo-mini-cart/woo-mini-cart.php:79
1585
+ #: widgets/woo-product-carousel/woo-product-carousel.php:638
1586
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1100
1587
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1346
1588
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1547
1589
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2309
1590
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2502
1591
+ #: widgets/woo-product-list/woo-product-list.php:797
1592
+ #: widgets/woo-product-list/woo-product-list.php:1263
1593
+ #: widgets/woo-product-list/woo-product-list.php:1510
1594
+ #: widgets/woo-product-list/woo-product-list.php:1881
1595
+ #: widgets/woo-product-list/woo-product-list.php:2290
1596
+ #: widgets/wp-forms/wp-forms.php:103 widgets/wp-forms/wp-forms.php:430
1597
+ msgid "Left"
1598
+ msgstr ""
1599
+
1600
+ #: modules/onepage-scroll/extend-controls-pro.php:120
1601
+ #: modules/parallax/widget-controls.php:610
1602
+ #: modules/parallax/widget-controls.php:913 widgets/accordion/accordion.php:136
1603
+ #: widgets/advanced-accordion/advanced-accordion.php:133
1604
+ #: widgets/advanced-tab/advanced-tab.php:154
1605
+ #: widgets/advanced-tab/advanced-tab.php:277
1606
+ #: widgets/advanced-tab/advanced-tab.php:307
1607
+ #: widgets/advanced-tab/advanced-tab.php:333
1608
+ #: widgets/advanced-toggle/advanced-toggle.php:89
1609
+ #: widgets/blog-posts/blog-posts.php:81 widgets/blog-posts/blog-posts.php:517
1610
+ #: widgets/blog-posts/blog-posts.php:885 widgets/blog-posts/blog-posts.php:1650
1611
+ #: widgets/blog-posts/blog-posts.php:1845 widgets/button/button.php:137
1612
+ #: widgets/caldera-forms/caldera-forms.php:584
1613
+ #: widgets/category-list/category-list.php:158 widgets/chart/chart.php:628
1614
+ #: widgets/chart/chart.php:793 widgets/contact-form7/contact-form7.php:584
1615
+ #: widgets/creative-button/creative-button.php:134
1616
+ #: widgets/dual-button/dual-button.php:78
1617
+ #: widgets/dual-button/dual-button.php:540
1618
+ #: widgets/dual-button/dual-button.php:761 widgets/funfact/funfact.php:235
1619
+ #: widgets/gallery/gallery.php:186 widgets/gallery/gallery.php:2101
1620
+ #: widgets/gallery/gallery.php:2130
1621
+ #: widgets/header-offcanvas/header-offcanvas.php:244
1622
+ #: widgets/header-search/header-search.php:318 widgets/heading/heading.php:306
1623
+ #: widgets/hotspot/hotspot.php:141 widgets/hotspot/hotspot.php:312
1624
+ #: widgets/hotspot/hotspot.php:498 widgets/hotspot/hotspot.php:742
1625
+ #: widgets/icon-box/icon-box.php:375 widgets/icon-box/icon-box.php:400
1626
+ #: widgets/image-accordion/image-accordion.php:448
1627
+ #: widgets/image-box/image-box.php:240
1628
+ #: widgets/instagram-feed/instagram-feed.php:263
1629
+ #: widgets/motion-text/motion-text.php:100 widgets/nav-menu/nav-menu.php:123
1630
+ #: widgets/ninja-forms/ninja-forms.php:79
1631
+ #: widgets/ninja-forms/ninja-forms.php:248
1632
+ #: widgets/ninja-forms/ninja-forms.php:611 widgets/page-list/page-list.php:381
1633
+ #: widgets/page-list/page-list.php:532 widgets/piechart/piechart.php:325
1634
+ #: widgets/post-list/post-list.php:325 widgets/pricing/pricing.php:458
1635
+ #: widgets/pricing/pricing.php:686 widgets/pricing/pricing.php:1249
1636
+ #: widgets/pricing/pricing.php:1691 widgets/pricing/pricing.php:2264
1637
+ #: widgets/social-share/social-share.php:145
1638
+ #: widgets/social-share/social-share.php:428 widgets/social/social.php:139
1639
+ #: widgets/social/social.php:390 widgets/tab/tab.php:153
1640
+ #: widgets/tab/tab.php:276 widgets/tab/tab.php:306 widgets/table/table.php:274
1641
+ #: widgets/table/table.php:523 widgets/tablepress/tablepress.php:147
1642
+ #: widgets/tablepress/tablepress.php:173 widgets/team/team.php:461
1643
+ #: widgets/team/team.php:508 widgets/team/team.php:640
1644
+ #: widgets/team/team.php:940 widgets/team/team.php:944
1645
+ #: widgets/team/team.php:1480 widgets/testimonial/testimonial.php:752
1646
+ #: widgets/testimonial/testimonial.php:1583 widgets/timeline/timeline.php:429
1647
+ #: widgets/vertical-menu/vertical-menu.php:65 widgets/video/video.php:301
1648
+ #: widgets/we-forms/we-forms.php:403
1649
+ #: widgets/woo-category-list/woo-category-list.php:579
1650
+ #: widgets/woo-category-list/woo-category-list.php:877
1651
+ #: widgets/woo-mini-cart/woo-mini-cart.php:87
1652
+ #: widgets/woo-product-carousel/woo-product-carousel.php:646
1653
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1108
1654
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1347
1655
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1555
1656
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2317
1657
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2510
1658
+ #: widgets/woo-product-list/woo-product-list.php:805
1659
+ #: widgets/woo-product-list/woo-product-list.php:1271
1660
+ #: widgets/woo-product-list/woo-product-list.php:1511
1661
+ #: widgets/woo-product-list/woo-product-list.php:1889
1662
+ #: widgets/woo-product-list/woo-product-list.php:2298
1663
+ #: widgets/wp-forms/wp-forms.php:111 widgets/wp-forms/wp-forms.php:438
1664
+ msgid "Right"
1665
+ msgstr ""
1666
+
1667
+ #: modules/onepage-scroll/extend-controls-pro.php:136
1668
+ msgid "Navigation Position Offset"
1669
+ msgstr ""
1670
+
1671
+ #: modules/onepage-scroll/extend-controls-pro.php:168
1672
+ msgid "Navigation Spacing"
1673
+ msgstr ""
1674
+
1675
+ #: modules/onepage-scroll/extend-controls-pro.php:192
1676
+ msgid "Navigation Color"
1677
+ msgstr ""
1678
+
1679
+ #: modules/onepage-scroll/extend-controls-pro.php:224
1680
+ msgid "Tooltip Typography"
1681
+ msgstr ""
1682
+
1683
+ #: modules/onepage-scroll/extend-controls-pro.php:242
1684
+ msgid "Enable Dot"
1685
+ msgstr ""
1686
+
1687
+ #: modules/onepage-scroll/extend-controls-pro.php:252
1688
+ msgid "Tooltip Text"
1689
+ msgstr ""
1690
+
1691
+ #: modules/onepage-scroll/extend-controls.php:44 widgets/widget-notice.php:24
1692
+ msgid "Unlock more possibilities"
1693
+ msgstr ""
1694
+
1695
+ #: modules/onepage-scroll/extend-controls.php:54
1696
+ #, php-format
1697
+ msgid ""
1698
+ "%s Get the %s Pro version %s for more awesome elements and powerful modules. "
1699
+ "%s"
1700
+ msgstr ""
1701
+
1702
+ #: modules/onepage-scroll/extend-controls.php:74
1703
+ msgid "Enable Onepage Scroll"
1704
+ msgstr ""
1705
+
1706
+ #: modules/onepage-scroll/extend-controls.php:94
1707
+ msgid "ElementsKit_Lite Onepage Scroll"
1708
+ msgstr ""
1709
+
1710
+ #: modules/onepage-scroll/extend-controls.php:102
1711
+ msgid "Enable Section"
1712
+ msgstr ""
1713
+
1714
+ #: modules/parallax/section-controls.php:16
1715
+ #: modules/parallax/widget-controls.php:17
1716
+ msgid "ElementsKit_Lite Effects"
1717
+ msgstr ""
1718
+
1719
+ #: modules/parallax/section-controls.php:23
1720
+ msgid "Background Image Parallax"
1721
+ msgstr ""
1722
+
1723
+ #: modules/parallax/section-controls.php:25
1724
+ #: modules/parallax/section-controls.php:52 widgets/accordion/accordion.php:148
1725
+ #: widgets/advanced-accordion/advanced-accordion.php:145
1726
+ #: widgets/advanced-tab/advanced-tab.php:81
1727
+ #: widgets/advanced-tab/advanced-tab.php:137
1728
+ #: widgets/blog-posts/blog-posts.php:1883
1729
+ #: widgets/caldera-forms/caldera-forms.php:647
1730
+ #: widgets/client-logo/client-logo.php:431
1731
+ #: widgets/contact-form7/contact-form7.php:647
1732
+ #: widgets/dual-button/dual-button.php:923
1733
+ #: widgets/facebook-feed/facebook-feed.php:118
1734
+ #: widgets/facebook-feed/facebook-feed.php:160
1735
+ #: widgets/facebook-feed/facebook-feed.php:173
1736
+ #: widgets/facebook-feed/facebook-feed.php:185
1737
+ #: widgets/facebook-feed/facebook-feed.php:606 widgets/gallery/gallery.php:227
1738
+ #: widgets/gallery/gallery.php:239 widgets/gallery/gallery.php:252
1739
+ #: widgets/gallery/gallery.php:264 widgets/gallery/gallery.php:989
1740
+ #: widgets/gallery/gallery.php:1883 widgets/gallery/gallery.php:2145
1741
+ #: widgets/gallery/gallery.php:2388 widgets/header-search/header-search.php:242
1742
+ #: widgets/hotspot/hotspot.php:76 widgets/hotspot/hotspot.php:103
1743
+ #: widgets/hotspot/hotspot.php:302 widgets/hotspot/hotspot.php:515
1744
+ #: widgets/icon-box/icon-box.php:449
1745
+ #: widgets/instagram-feed/instagram-feed.php:78
1746
+ #: widgets/instagram-feed/instagram-feed.php:113
1747
+ #: widgets/instagram-feed/instagram-feed.php:162
1748
+ #: widgets/instagram-feed/instagram-feed.php:177
1749
+ #: widgets/instagram-feed/instagram-feed.php:193
1750
+ #: widgets/instagram-feed/instagram-feed.php:205
1751
+ #: widgets/instagram-feed/instagram-feed.php:218
1752
+ #: widgets/mail-chimp/mail-chimp.php:140 widgets/mail-chimp/mail-chimp.php:234
1753
+ #: widgets/mail-chimp/mail-chimp.php:326 widgets/mail-chimp/mail-chimp.php:403
1754
+ #: widgets/mail-chimp/mail-chimp.php:470 widgets/mail-chimp/mail-chimp.php:663
1755
+ #: widgets/mail-chimp/mail-chimp.php:883
1756
+ #: widgets/motion-text/motion-text.php:116 widgets/page-list/page-list.php:112
1757
+ #: widgets/page-list/page-list.php:146 widgets/page-list/page-list.php:221
1758
+ #: widgets/page-list/page-list.php:265 widgets/post-list/post-list.php:145
1759
+ #: widgets/post-list/post-list.php:157 widgets/post-list/post-list.php:190
1760
+ #: widgets/post-list/post-list.php:202 widgets/post-list/post-list.php:234
1761
+ #: widgets/post-tab/post-tab.php:88 widgets/social-share/social-share.php:500
1762
+ #: widgets/social/social.php:536 widgets/tab/tab.php:80 widgets/tab/tab.php:136
1763
+ #: widgets/table/table.php:924 widgets/table/table.php:1197
1764
+ #: widgets/table/table.php:2391 widgets/team/team.php:114
1765
+ #: widgets/team/team.php:146 widgets/team/team.php:182
1766
+ #: widgets/team/team.php:1035 widgets/team/team.php:1615
1767
+ #: widgets/testimonial/testimonial.php:160
1768
+ #: widgets/testimonial/testimonial.php:177
1769
+ #: widgets/twitter-feed/twitter-feed.php:48
1770
+ #: widgets/twitter-feed/twitter-feed.php:60
1771
+ #: widgets/twitter-feed/twitter-feed.php:75
1772
+ #: widgets/twitter-feed/twitter-feed.php:133
1773
+ #: widgets/twitter-feed/twitter-feed.php:168
1774
+ #: widgets/twitter-feed/twitter-feed.php:209
1775
+ #: widgets/twitter-feed/twitter-feed.php:227
1776
+ #: widgets/twitter-feed/twitter-feed.php:238
1777
+ #: widgets/twitter-feed/twitter-feed.php:249
1778
+ #: widgets/vertical-menu/vertical-menu.php:76
1779
+ #: widgets/vertical-menu/vertical-menu.php:87 widgets/video/video.php:385
1780
+ #: widgets/woo-category-list/woo-category-list.php:372
1781
+ msgid "Show"
1782
+ msgstr ""
1783
+
1784
+ #: modules/parallax/section-controls.php:26
1785
+ #: modules/parallax/section-controls.php:53 widgets/accordion/accordion.php:149
1786
+ #: widgets/advanced-accordion/advanced-accordion.php:146
1787
+ #: widgets/advanced-tab/advanced-tab.php:82
1788
+ #: widgets/advanced-tab/advanced-tab.php:138
1789
+ #: widgets/blog-posts/blog-posts.php:1884
1790
+ #: widgets/caldera-forms/caldera-forms.php:648
1791
+ #: widgets/client-logo/client-logo.php:432
1792
+ #: widgets/contact-form7/contact-form7.php:648
1793
+ #: widgets/dual-button/dual-button.php:924
1794
+ #: widgets/facebook-feed/facebook-feed.php:119
1795
+ #: widgets/facebook-feed/facebook-feed.php:161
1796
+ #: widgets/facebook-feed/facebook-feed.php:174
1797
+ #: widgets/facebook-feed/facebook-feed.php:186
1798
+ #: widgets/facebook-feed/facebook-feed.php:607 widgets/gallery/gallery.php:228
1799
+ #: widgets/gallery/gallery.php:240 widgets/gallery/gallery.php:253
1800
+ #: widgets/gallery/gallery.php:265 widgets/gallery/gallery.php:990
1801
+ #: widgets/gallery/gallery.php:1884 widgets/gallery/gallery.php:2146
1802
+ #: widgets/gallery/gallery.php:2389 widgets/header-search/header-search.php:243
1803
+ #: widgets/hotspot/hotspot.php:77 widgets/hotspot/hotspot.php:104
1804
+ #: widgets/hotspot/hotspot.php:303 widgets/hotspot/hotspot.php:516
1805
+ #: widgets/icon-box/icon-box.php:450
1806
+ #: widgets/instagram-feed/instagram-feed.php:79
1807
+ #: widgets/instagram-feed/instagram-feed.php:114
1808
+ #: widgets/instagram-feed/instagram-feed.php:163
1809
+ #: widgets/instagram-feed/instagram-feed.php:178
1810
+ #: widgets/instagram-feed/instagram-feed.php:194
1811
+ #: widgets/instagram-feed/instagram-feed.php:206
1812
+ #: widgets/instagram-feed/instagram-feed.php:219
1813
+ #: widgets/mail-chimp/mail-chimp.php:141 widgets/mail-chimp/mail-chimp.php:235
1814
+ #: widgets/mail-chimp/mail-chimp.php:327 widgets/mail-chimp/mail-chimp.php:404
1815
+ #: widgets/mail-chimp/mail-chimp.php:471 widgets/mail-chimp/mail-chimp.php:664
1816
+ #: widgets/mail-chimp/mail-chimp.php:884
1817
+ #: widgets/motion-text/motion-text.php:117 widgets/page-list/page-list.php:113
1818
+ #: widgets/page-list/page-list.php:147 widgets/page-list/page-list.php:222
1819
+ #: widgets/page-list/page-list.php:266 widgets/post-list/post-list.php:146
1820
+ #: widgets/post-list/post-list.php:158 widgets/post-list/post-list.php:191
1821
+ #: widgets/post-list/post-list.php:203 widgets/post-list/post-list.php:235
1822
+ #: widgets/post-tab/post-tab.php:89 widgets/social-share/social-share.php:501
1823
+ #: widgets/social/social.php:537 widgets/tab/tab.php:81 widgets/tab/tab.php:137
1824
+ #: widgets/table/table.php:925 widgets/table/table.php:1198
1825
+ #: widgets/table/table.php:2392 widgets/team/team.php:115
1826
+ #: widgets/team/team.php:147 widgets/team/team.php:183
1827
+ #: widgets/team/team.php:1036 widgets/team/team.php:1616
1828
+ #: widgets/testimonial/testimonial.php:161
1829
+ #: widgets/testimonial/testimonial.php:178
1830
+ #: widgets/twitter-feed/twitter-feed.php:49
1831
+ #: widgets/twitter-feed/twitter-feed.php:61
1832
+ #: widgets/twitter-feed/twitter-feed.php:76
1833
+ #: widgets/twitter-feed/twitter-feed.php:134
1834
+ #: widgets/twitter-feed/twitter-feed.php:169
1835
+ #: widgets/twitter-feed/twitter-feed.php:210
1836
+ #: widgets/twitter-feed/twitter-feed.php:228
1837
+ #: widgets/twitter-feed/twitter-feed.php:239
1838
+ #: widgets/twitter-feed/twitter-feed.php:250
1839
+ #: widgets/vertical-menu/vertical-menu.php:77
1840
+ #: widgets/vertical-menu/vertical-menu.php:88 widgets/video/video.php:386
1841
+ #: widgets/woo-category-list/woo-category-list.php:373
1842
+ msgid "Hide"
1843
+ msgstr ""
1844
+
1845
+ #: modules/parallax/section-controls.php:33
1846
+ #: modules/parallax/section-controls.php:409
1847
+ #: modules/parallax/widget-controls.php:921
1848
+ #: modules/parallax/widget-controls.php:1000
1849
+ #: modules/parallax/widget-controls.php:1053
1850
+ #: widgets/testimonial/testimonial.php:474
1851
+ msgid "Speed"
1852
+ msgstr ""
1853
+
1854
+ #: modules/parallax/section-controls.php:49
1855
+ msgid "Multi Item Parallax"
1856
+ msgstr ""
1857
+
1858
+ #: modules/parallax/section-controls.php:59
1859
+ #: modules/parallax/widget-controls.php:24
1860
+ msgid "Effect Type"
1861
+ msgstr ""
1862
+
1863
+ #: modules/parallax/section-controls.php:63
1864
+ msgid "Css Animation"
1865
+ msgstr ""
1866
+
1867
+ #: modules/parallax/section-controls.php:64
1868
+ #: modules/parallax/widget-controls.php:970
1869
+ msgid "Mouse Move"
1870
+ msgstr ""
1871
+
1872
+ #: modules/parallax/section-controls.php:65
1873
+ msgid "On Scroll"
1874
+ msgstr ""
1875
+
1876
+ #: modules/parallax/section-controls.php:66
1877
+ msgid "Parallax Tilt"
1878
+ msgstr ""
1879
+
1880
+ #: modules/parallax/section-controls.php:73
1881
+ msgid "Item source"
1882
+ msgstr ""
1883
+
1884
+ #: modules/parallax/section-controls.php:95
1885
+ #: widgets/advanced-tab/advanced-tab.php:429 widgets/funfact/funfact.php:122
1886
+ #: widgets/heading/heading.php:255 widgets/hotspot/hotspot.php:239
1887
+ #: widgets/icon-box/icon-box.php:98 widgets/icon-box/icon-box.php:1360
1888
+ #: widgets/image-box/image-box.php:45
1889
+ #: widgets/image-comparison/image-comparison.php:70
1890
+ #: widgets/image-comparison/image-comparison.php:96
1891
+ #: widgets/piechart/piechart.php:123 widgets/pricing/pricing.php:135
1892
+ #: widgets/tab/tab.php:378 widgets/woo-category-list/woo-category-list.php:148
1893
+ msgid "Choose Image"
1894
+ msgstr ""
1895
+
1896
+ #: modules/parallax/section-controls.php:105
1897
+ msgid "Choose Shape"
1898
+ msgstr ""
1899
+
1900
+ #: modules/parallax/section-controls.php:109
1901
+ msgid "Shape 1"
1902
+ msgstr ""
1903
+
1904
+ #: modules/parallax/section-controls.php:110
1905
+ msgid "Shape 2"
1906
+ msgstr ""
1907
+
1908
+ #: modules/parallax/section-controls.php:111
1909
+ msgid "Shape 3"
1910
+ msgstr ""
1911
+
1912
+ #: modules/parallax/section-controls.php:112
1913
+ msgid "Shape 4"
1914
+ msgstr ""
1915
+
1916
+ #: modules/parallax/section-controls.php:113
1917
+ msgid "Shape 5"
1918
+ msgstr ""
1919
+
1920
+ #: modules/parallax/section-controls.php:114
1921
+ msgid "Shape 6"
1922
+ msgstr ""
1923
+
1924
+ #: modules/parallax/section-controls.php:115
1925
+ msgid "Shape 7"
1926
+ msgstr ""
1927
+
1928
+ #: modules/parallax/section-controls.php:116
1929
+ msgid "Shape 8"
1930
+ msgstr ""
1931
+
1932
+ #: modules/parallax/section-controls.php:117
1933
+ msgid "Shape 9"
1934
+ msgstr ""
1935
+
1936
+ #: modules/parallax/section-controls.php:118
1937
+ msgid "Shape 10"
1938
+ msgstr ""
1939
+
1940
+ #: modules/parallax/section-controls.php:119
1941
+ msgid "Shape 11"
1942
+ msgstr ""
1943
+
1944
+ #: modules/parallax/section-controls.php:120
1945
+ msgid "Shape 12"
1946
+ msgstr ""
1947
+
1948
+ #: modules/parallax/section-controls.php:121
1949
+ msgid "Shape 13"
1950
+ msgstr ""
1951
+
1952
+ #: modules/parallax/section-controls.php:122
1953
+ msgid "Shape 14"
1954
+ msgstr ""
1955
+
1956
+ #: modules/parallax/section-controls.php:133
1957
+ #: widgets/accordion/accordion.php:244 widgets/accordion/accordion.php:336
1958
+ #: widgets/accordion/accordion.php:473 widgets/accordion/accordion.php:625
1959
+ #: widgets/accordion/accordion.php:687
1960
+ #: widgets/advanced-accordion/advanced-accordion.php:241
1961
+ #: widgets/advanced-accordion/advanced-accordion.php:333
1962
+ #: widgets/advanced-accordion/advanced-accordion.php:470
1963
+ #: widgets/advanced-accordion/advanced-accordion.php:622
1964
+ #: widgets/advanced-accordion/advanced-accordion.php:683
1965
+ #: widgets/advanced-tab/advanced-tab.php:2097
1966
+ #: widgets/advanced-tab/advanced-tab.php:2117
1967
+ #: widgets/blog-posts/blog-posts.php:975 widgets/blog-posts/blog-posts.php:1046
1968
+ #: widgets/blog-posts/blog-posts.php:1299
1969
+ #: widgets/blog-posts/blog-posts.php:1324
1970
+ #: widgets/blog-posts/blog-posts.php:1577
1971
+ #: widgets/blog-posts/blog-posts.php:1605
1972
+ #: widgets/blog-posts/blog-posts.php:1807
1973
+ #: widgets/business-hours/business-hours.php:249
1974
+ #: widgets/business-hours/business-hours.php:313
1975
+ #: widgets/caldera-forms/caldera-forms.php:88
1976
+ #: widgets/caldera-forms/caldera-forms.php:131
1977
+ #: widgets/caldera-forms/caldera-forms.php:486
1978
+ #: widgets/caldera-forms/caldera-forms.php:757
1979
+ #: widgets/caldera-forms/caldera-forms.php:816
1980
+ #: widgets/category-list/category-list.php:275
1981
+ #: widgets/category-list/category-list.php:304
1982
+ #: widgets/contact-form7/contact-form7.php:87
1983
+ #: widgets/contact-form7/contact-form7.php:130
1984
+ #: widgets/contact-form7/contact-form7.php:486
1985
+ #: widgets/contact-form7/contact-form7.php:757
1986
+ #: widgets/contact-form7/contact-form7.php:816
1987
+ #: widgets/countdown-timer/countdown-timer.php:350
1988
+ #: widgets/countdown-timer/countdown-timer.php:396
1989
+ #: widgets/countdown-timer/countdown-timer.php:550
1990
+ #: widgets/countdown-timer/countdown-timer.php:608
1991
+ #: widgets/countdown-timer/countdown-timer.php:825
1992
+ #: widgets/countdown-timer/countdown-timer.php:884
1993
+ #: widgets/countdown-timer/countdown-timer.php:1098
1994
+ #: widgets/countdown-timer/countdown-timer.php:1159
1995
+ #: widgets/countdown-timer/countdown-timer.php:1374
1996
+ #: widgets/countdown-timer/countdown-timer.php:1435
1997
+ #: widgets/drop-caps/drop-caps.php:67 widgets/drop-caps/drop-caps.php:155
1998
+ #: widgets/dual-button/dual-button.php:426
1999
+ #: widgets/dual-button/dual-button.php:568
2000
+ #: widgets/dual-button/dual-button.php:647
2001
+ #: widgets/dual-button/dual-button.php:787
2002
+ #: widgets/dual-button/dual-button.php:859
2003
+ #: widgets/facebook-feed/facebook-feed.php:964 widgets/faq/faq.php:192
2004
+ #: widgets/funfact/funfact.php:533 widgets/funfact/funfact.php:831
2005
+ #: widgets/gallery/gallery.php:1643 widgets/gallery/gallery.php:1792
2006
+ #: widgets/gallery/gallery.php:1874 widgets/gallery/gallery.php:2666
2007
+ #: widgets/gallery/gallery.php:2765
2008
+ #: widgets/header-offcanvas/header-offcanvas.php:136
2009
+ #: widgets/header-offcanvas/header-offcanvas.php:169
2010
+ #: widgets/header-offcanvas/header-offcanvas.php:331
2011
+ #: widgets/header-offcanvas/header-offcanvas.php:364
2012
+ #: widgets/header-search/header-search.php:110
2013
+ #: widgets/header-search/header-search.php:140 widgets/heading/heading.php:501
2014
+ #: widgets/icon-box/icon-box.php:836 widgets/icon-box/icon-box.php:876
2015
+ #: widgets/image-accordion/image-accordion.php:379
2016
+ #: widgets/image-box/image-box.php:1125 widgets/image-box/image-box.php:1209
2017
+ #: widgets/image-comparison/image-comparison.php:262
2018
+ #: widgets/image-comparison/image-comparison.php:323
2019
+ #: widgets/instagram-feed/instagram-feed.php:531
2020
+ #: widgets/instagram-feed/instagram-feed.php:552
2021
+ #: widgets/instagram-feed/instagram-feed.php:573
2022
+ #: widgets/instagram-feed/instagram-feed.php:603
2023
+ #: widgets/instagram-feed/instagram-feed.php:624
2024
+ #: widgets/instagram-feed/instagram-feed.php:645
2025
+ #: widgets/instagram-feed/instagram-feed.php:749
2026
+ #: widgets/instagram-feed/instagram-feed.php:765
2027
+ #: widgets/instagram-feed/instagram-feed.php:790
2028
+ #: widgets/instagram-feed/instagram-feed.php:806
2029
+ #: widgets/instagram-feed/instagram-feed.php:831
2030
+ #: widgets/instagram-feed/instagram-feed.php:846
2031
+ #: widgets/instagram-feed/instagram-feed.php:889
2032
+ #: widgets/instagram-feed/instagram-feed.php:905
2033
+ #: widgets/instagram-feed/instagram-feed.php:930
2034
+ #: widgets/instagram-feed/instagram-feed.php:946
2035
+ #: widgets/mail-chimp/mail-chimp.php:556 widgets/mail-chimp/mail-chimp.php:946
2036
+ #: widgets/mail-chimp/mail-chimp.php:980 widgets/mail-chimp/mail-chimp.php:1125
2037
+ #: widgets/mail-chimp/mail-chimp.php:1256
2038
+ #: widgets/mail-chimp/mail-chimp.php:1292
2039
+ #: widgets/motion-text/motion-text.php:288
2040
+ #: widgets/ninja-forms/ninja-forms.php:184 widgets/page-list/page-list.php:173
2041
+ #: widgets/page-list/page-list.php:304 widgets/page-list/page-list.php:649
2042
+ #: widgets/page-list/page-list.php:817 widgets/post-list/post-list.php:442
2043
+ #: widgets/post-list/post-list.php:474 widgets/post-list/post-list.php:672
2044
+ #: widgets/post-list/post-list.php:717 widgets/post-tab/post-tab.php:208
2045
+ #: widgets/post-tab/post-tab.php:275 widgets/pricing/pricing.php:497
2046
+ #: widgets/pricing/pricing.php:716 widgets/pricing/pricing.php:734
2047
+ #: widgets/pricing/pricing.php:1039 widgets/pricing/pricing.php:1501
2048
+ #: widgets/pricing/pricing.php:1530 widgets/pricing/pricing.php:1751
2049
+ #: widgets/pricing/pricing.php:1777 widgets/pricing/pricing.php:1833
2050
+ #: widgets/progressbar/progressbar.php:308
2051
+ #: widgets/progressbar/progressbar.php:341
2052
+ #: widgets/progressbar/progressbar.php:407
2053
+ #: widgets/social-share/social-share.php:245
2054
+ #: widgets/social-share/social-share.php:307 widgets/social/social.php:207
2055
+ #: widgets/social/social.php:269 widgets/table/table.php:1734
2056
+ #: widgets/table/table.php:1767 widgets/table/table.php:1799
2057
+ #: widgets/table/table.php:1843 widgets/table/table.php:1889
2058
+ #: widgets/table/table.php:1909 widgets/table/table.php:2008
2059
+ #: widgets/table/table.php:2037 widgets/table/table.php:2549
2060
+ #: widgets/table/table.php:2577 widgets/table/table.php:2605
2061
+ #: widgets/tablepress/tablepress.php:197 widgets/tablepress/tablepress.php:609
2062
+ #: widgets/team/team.php:241 widgets/team/team.php:304
2063
+ #: widgets/team/team.php:1127 widgets/team/team.php:1166
2064
+ #: widgets/team/team.php:1229 widgets/team/team.php:1248
2065
+ #: widgets/team/team.php:1306 widgets/team/team.php:1326
2066
+ #: widgets/team/team.php:1403 widgets/team/team.php:1423
2067
+ #: widgets/team/team.php:1820 widgets/team/team.php:1872
2068
+ #: widgets/team/team.php:1931 widgets/testimonial/testimonial.php:856
2069
+ #: widgets/testimonial/testimonial.php:877
2070
+ #: widgets/testimonial/testimonial.php:903
2071
+ #: widgets/testimonial/testimonial.php:985
2072
+ #: widgets/testimonial/testimonial.php:1009
2073
+ #: widgets/testimonial/testimonial.php:1345
2074
+ #: widgets/testimonial/testimonial.php:1365
2075
+ #: widgets/testimonial/testimonial.php:1441
2076
+ #: widgets/testimonial/testimonial.php:1461
2077
+ #: widgets/testimonial/testimonial.php:2126
2078
+ #: widgets/testimonial/testimonial.php:2176 widgets/timeline/timeline.php:673
2079
+ #: widgets/timeline/timeline.php:746 widgets/twitter-feed/twitter-feed.php:640
2080
+ #: widgets/twitter-feed/twitter-feed.php:662
2081
+ #: widgets/twitter-feed/twitter-feed.php:684
2082
+ #: widgets/twitter-feed/twitter-feed.php:705
2083
+ #: widgets/twitter-feed/twitter-feed.php:733
2084
+ #: widgets/twitter-feed/twitter-feed.php:756
2085
+ #: widgets/twitter-feed/twitter-feed.php:778
2086
+ #: widgets/twitter-feed/twitter-feed.php:804
2087
+ #: widgets/twitter-feed/twitter-feed.php:895
2088
+ #: widgets/twitter-feed/twitter-feed.php:916
2089
+ #: widgets/twitter-feed/twitter-feed.php:977
2090
+ #: widgets/twitter-feed/twitter-feed.php:998
2091
+ #: widgets/twitter-feed/twitter-feed.php:1034
2092
+ #: widgets/twitter-feed/twitter-feed.php:1110
2093
+ #: widgets/twitter-feed/twitter-feed.php:1132
2094
+ #: widgets/twitter-feed/twitter-feed.php:1154
2095
+ #: widgets/vertical-menu/vertical-menu.php:195
2096
+ #: widgets/vertical-menu/vertical-menu.php:250
2097
+ #: widgets/vertical-menu/vertical-menu.php:349
2098
+ #: widgets/vertical-menu/vertical-menu.php:403
2099
+ #: widgets/vertical-menu/vertical-menu.php:470
2100
+ #: widgets/vertical-menu/vertical-menu.php:512
2101
+ #: widgets/woo-category-list/woo-category-list.php:647
2102
+ #: widgets/woo-category-list/woo-category-list.php:676
2103
+ #: widgets/woo-category-list/woo-category-list.php:729
2104
+ #: widgets/woo-category-list/woo-category-list.php:749
2105
+ #: widgets/woo-category-list/woo-category-list.php:942
2106
+ #: widgets/woo-category-list/woo-category-list.php:971
2107
+ #: widgets/woo-category-list/woo-category-list.php:1023
2108
+ #: widgets/woo-category-list/woo-category-list.php:1043
2109
+ #: widgets/woo-mini-cart/woo-mini-cart.php:195
2110
+ #: widgets/woo-mini-cart/woo-mini-cart.php:233
2111
+ #: widgets/woo-mini-cart/woo-mini-cart.php:417
2112
+ #: widgets/woo-mini-cart/woo-mini-cart.php:438
2113
+ #: widgets/woo-mini-cart/woo-mini-cart.php:538
2114
+ #: widgets/woo-mini-cart/woo-mini-cart.php:559
2115
+ #: widgets/woo-mini-cart/woo-mini-cart.php:599
2116
+ #: widgets/woo-mini-cart/woo-mini-cart.php:620
2117
+ #: widgets/woo-mini-cart/woo-mini-cart.php:804
2118
+ #: widgets/woo-mini-cart/woo-mini-cart.php:848
2119
+ #: widgets/woo-mini-cart/woo-mini-cart.php:945
2120
+ #: widgets/woo-mini-cart/woo-mini-cart.php:975
2121
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1058
2122
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1095
2123
+ #: widgets/woo-product-carousel/woo-product-carousel.php:755
2124
+ #: widgets/woo-product-carousel/woo-product-carousel.php:823
2125
+ #: widgets/woo-product-carousel/woo-product-carousel.php:895
2126
+ #: widgets/woo-product-carousel/woo-product-carousel.php:949
2127
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1759
2128
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1878
2129
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2425
2130
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2795
2131
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2832
2132
+ #: widgets/woo-product-list/woo-product-list.php:917
2133
+ #: widgets/woo-product-list/woo-product-list.php:985
2134
+ #: widgets/woo-product-list/woo-product-list.php:1058
2135
+ #: widgets/woo-product-list/woo-product-list.php:1112
2136
+ #: widgets/woo-product-list/woo-product-list.php:1781
2137
+ #: widgets/woo-product-list/woo-product-list.php:1818
2138
+ #: widgets/woo-product-list/woo-product-list.php:2091
2139
+ #: widgets/woo-product-list/woo-product-list.php:2174
2140
+ #: widgets/woo-product-list/woo-product-list.php:2213
2141
+ msgid "Color"
2142
+ msgstr ""
2143
+
2144
+ #: modules/parallax/section-controls.php:147
2145
+ #: widgets/accordion/accordion.php:526
2146
+ #: widgets/advanced-accordion/advanced-accordion.php:523
2147
+ #: widgets/advanced-tab/advanced-tab.php:911
2148
+ #: widgets/advanced-tab/advanced-tab.php:1040
2149
+ #: widgets/advanced-tab/advanced-tab.php:1161
2150
+ #: widgets/advanced-tab/advanced-tab.php:1414
2151
+ #: widgets/advanced-tab/advanced-tab.php:1724
2152
+ #: widgets/blog-posts/blog-posts.php:1148
2153
+ #: widgets/blog-posts/blog-posts.php:1723
2154
+ #: widgets/blog-posts/blog-posts.php:1921
2155
+ #: widgets/caldera-forms/caldera-forms.php:166
2156
+ #: widgets/caldera-forms/caldera-forms.php:657
2157
+ #: widgets/category-list/category-list.php:228
2158
+ #: widgets/client-logo/client-logo.php:1136
2159
+ #: widgets/client-logo/client-logo.php:1223
2160
+ #: widgets/client-logo/client-logo.php:1312
2161
+ #: widgets/contact-form7/contact-form7.php:165
2162
+ #: widgets/contact-form7/contact-form7.php:657
2163
+ #: widgets/countdown-timer/countdown-timer.php:210
2164
+ #: widgets/dual-button/dual-button.php:934 widgets/funfact/funfact.php:1092
2165
+ #: widgets/gallery/gallery.php:1025 widgets/gallery/gallery.php:2158
2166
+ #: widgets/gallery/gallery.php:2265 widgets/gallery/gallery.php:2418
2167
+ #: widgets/gallery/gallery.php:2505
2168
+ #: widgets/header-offcanvas/header-offcanvas.php:506
2169
+ #: widgets/header-search/header-search.php:252 widgets/heading/heading.php:589
2170
+ #: widgets/heading/heading.php:653 widgets/heading/heading.php:800
2171
+ #: widgets/hotspot/hotspot.php:465 widgets/hotspot/hotspot.php:763
2172
+ #: widgets/icon-box/icon-box.php:742 widgets/image-box/image-box.php:522
2173
+ #: widgets/image-box/image-box.php:578 widgets/image-box/image-box.php:797
2174
+ #: widgets/image-box/image-box.php:849 widgets/mail-chimp/mail-chimp.php:673
2175
+ #: widgets/mail-chimp/mail-chimp.php:893 widgets/nav-menu/nav-menu.php:258
2176
+ #: widgets/nav-menu/nav-menu.php:858 widgets/nav-menu/nav-menu.php:1093
2177
+ #: widgets/nav-menu/nav-menu.php:1251 widgets/ninja-forms/ninja-forms.php:585
2178
+ #: widgets/ninja-forms/ninja-forms.php:628 widgets/page-list/page-list.php:602
2179
+ #: widgets/post-list/post-list.php:395 widgets/pricing/pricing.php:1276
2180
+ #: widgets/pricing/pricing.php:1872 widgets/social-share/social-share.php:510
2181
+ #: widgets/social/social.php:547 widgets/tab/tab.php:922
2182
+ #: widgets/tab/tab.php:1051 widgets/tab/tab.php:1172 widgets/tab/tab.php:1425
2183
+ #: widgets/tab/tab.php:1735 widgets/table/table.php:961
2184
+ #: widgets/table/table.php:1234 widgets/table/table.php:1638
2185
+ #: widgets/table/table.php:2401 widgets/team/team.php:810
2186
+ #: widgets/team/team.php:1045 widgets/team/team.php:1625
2187
+ #: widgets/team/team.php:2162 widgets/testimonial/testimonial.php:1255
2188
+ #: widgets/testimonial/testimonial.php:1771
2189
+ #: widgets/testimonial/testimonial.php:1881
2190
+ #: widgets/testimonial/testimonial.php:2045
2191
+ #: widgets/vertical-menu/vertical-menu.php:441 widgets/video/video.php:395
2192
+ #: widgets/woo-category-list/woo-category-list.php:409
2193
+ #: widgets/woo-category-list/woo-category-list.php:779
2194
+ #: widgets/woo-mini-cart/woo-mini-cart.php:277
2195
+ #: widgets/woo-mini-cart/woo-mini-cart.php:721
2196
+ #: widgets/wp-forms/wp-forms.php:412 widgets/wp-forms/wp-forms.php:456
2197
+ msgid "Width"
2198
+ msgstr ""
2199
+
2200
+ #: modules/parallax/section-controls.php:151
2201
+ msgid "Auto"
2202
+ msgstr ""
2203
+
2204
+ #: modules/parallax/section-controls.php:152 widgets/heading/heading.php:225
2205
+ #: widgets/ninja-forms/ninja-forms.php:590 widgets/table/table.php:51
2206
+ #: widgets/wp-forms/wp-forms.php:417
2207
+ msgid "Custom"
2208
+ msgstr ""
2209
+
2210
+ #: modules/parallax/section-controls.php:161
2211
+ msgid "Custom Width"
2212
+ msgstr ""
2213
+
2214
+ #: modules/parallax/section-controls.php:197
2215
+ #: modules/parallax/widget-controls.php:250
2216
+ #: modules/parallax/widget-controls.php:891 widgets/funfact/funfact.php:702
2217
+ #: widgets/gallery/gallery.php:530 widgets/gallery/gallery.php:638
2218
+ #: widgets/gallery/gallery.php:811 widgets/icon-box/icon-box.php:709
2219
+ #: widgets/pricing/pricing.php:1215
2220
+ msgid "Rotate"
2221
+ msgstr ""
2222
+
2223
+ #: modules/parallax/section-controls.php:221
2224
+ #: modules/parallax/widget-controls.php:816 widgets/gallery/gallery.php:531
2225
+ #: widgets/gallery/gallery.php:664 widgets/gallery/gallery.php:837
2226
+ msgid "Blur"
2227
+ msgstr ""
2228
+
2229
+ #: modules/parallax/section-controls.php:248
2230
+ msgid "Position X (%)"
2231
+ msgstr ""
2232
+
2233
+ #: modules/parallax/section-controls.php:275
2234
+ msgid "Position Y (%)"
2235
+ msgstr ""
2236
+
2237
+ #: modules/parallax/section-controls.php:303
2238
+ #: modules/parallax/widget-controls.php:57 widgets/chart/chart.php:831
2239
+ #: widgets/funfact/funfact.php:492 widgets/icon-box/icon-box.php:1180
2240
+ #: widgets/pricing/pricing.php:1001
2241
+ msgid "Animation"
2242
+ msgstr ""
2243
+
2244
+ #: modules/parallax/section-controls.php:336
2245
+ #: modules/parallax/widget-controls.php:693
2246
+ #: modules/parallax/widget-controls.php:846
2247
+ #: widgets/client-logo/client-logo.php:728
2248
+ #: widgets/client-logo/client-logo.php:764
2249
+ #: widgets/facebook-feed/facebook-feed.php:658
2250
+ #: widgets/facebook-feed/facebook-feed.php:713 widgets/gallery/gallery.php:528
2251
+ #: widgets/gallery/gallery.php:560 widgets/gallery/gallery.php:733
2252
+ #: widgets/gallery/gallery.php:1713 widgets/gallery/gallery.php:1829
2253
+ #: widgets/twitter-feed/twitter-feed.php:1251
2254
+ #: widgets/twitter-feed/twitter-feed.php:1330
2255
+ msgid "Opacity"
2256
+ msgstr ""
2257
+
2258
+ #: modules/parallax/section-controls.php:337
2259
+ msgid "Opacity will be (0-1), default value 1"
2260
+ msgstr ""
2261
+
2262
+ #: modules/parallax/section-controls.php:353
2263
+ #: modules/parallax/widget-controls.php:92
2264
+ msgid "Animation speed"
2265
+ msgstr ""
2266
+
2267
+ #: modules/parallax/section-controls.php:372
2268
+ #: modules/parallax/widget-controls.php:111
2269
+ msgid "Animation Iteration Count"
2270
+ msgstr ""
2271
+
2272
+ #: modules/parallax/section-controls.php:376
2273
+ #: modules/parallax/widget-controls.php:116
2274
+ msgid "Infinite"
2275
+ msgstr ""
2276
+
2277
+ #: modules/parallax/section-controls.php:377
2278
+ #: modules/parallax/widget-controls.php:117
2279
+ msgid "Unset"
2280
+ msgstr ""
2281
+
2282
+ #: modules/parallax/section-controls.php:390
2283
+ #: modules/parallax/widget-controls.php:131
2284
+ msgid "Animation Direction"
2285
+ msgstr ""
2286
+
2287
+ #: modules/parallax/section-controls.php:394
2288
+ #: modules/parallax/widget-controls.php:136
2289
+ #: widgets/advanced-tab/advanced-tab.php:694
2290
+ #: widgets/advanced-tab/advanced-tab.php:2091
2291
+ #: widgets/advanced-toggle/advanced-toggle.php:136
2292
+ #: widgets/advanced-toggle/advanced-toggle.php:345
2293
+ #: widgets/blog-posts/blog-posts.php:743 widgets/blog-posts/blog-posts.php:968
2294
+ #: widgets/blog-posts/blog-posts.php:1570
2295
+ #: widgets/blog-posts/blog-posts.php:2009
2296
+ #: widgets/blog-posts/blog-posts.php:2251
2297
+ #: widgets/blog-posts/blog-posts.php:2345 widgets/button/button.php:211
2298
+ #: widgets/button/button.php:319 widgets/caldera-forms/caldera-forms.php:299
2299
+ #: widgets/caldera-forms/caldera-forms.php:750 widgets/chart/chart.php:99
2300
+ #: widgets/chart/chart.php:207 widgets/client-logo/client-logo.php:519
2301
+ #: widgets/client-logo/client-logo.php:664
2302
+ #: widgets/client-logo/client-logo.php:721
2303
+ #: widgets/client-logo/client-logo.php:966
2304
+ #: widgets/client-logo/client-logo.php:1386
2305
+ #: widgets/contact-form7/contact-form7.php:299
2306
+ #: widgets/contact-form7/contact-form7.php:750
2307
+ #: widgets/creative-button/creative-button.php:291
2308
+ #: widgets/dual-button/dual-button.php:419
2309
+ #: widgets/dual-button/dual-button.php:640
2310
+ #: widgets/facebook-feed/facebook-feed.php:332
2311
+ #: widgets/facebook-feed/facebook-feed.php:456
2312
+ #: widgets/facebook-feed/facebook-feed.php:522
2313
+ #: widgets/facebook-feed/facebook-feed.php:628
2314
+ #: widgets/facebook-feed/facebook-feed.php:778 widgets/funfact/funfact.php:421
2315
+ #: widgets/funfact/funfact.php:526 widgets/gallery/gallery.php:467
2316
+ #: widgets/gallery/gallery.php:527 widgets/gallery/gallery.php:550
2317
+ #: widgets/gallery/gallery.php:1101 widgets/gallery/gallery.php:1291
2318
+ #: widgets/gallery/gallery.php:1480 widgets/gallery/gallery.php:1636
2319
+ #: widgets/gallery/gallery.php:1862 widgets/gallery/gallery.php:1895
2320
+ #: widgets/gallery/gallery.php:2650 widgets/header-search/header-search.php:104
2321
+ #: widgets/icon-box/icon-box.php:509 widgets/icon-box/icon-box.php:1053
2322
+ #: widgets/icon-box/icon-box.php:1204 widgets/icon-box/icon-box.php:1409
2323
+ #: widgets/image-accordion/image-accordion.php:543
2324
+ #: widgets/image-accordion/image-accordion.php:728
2325
+ #: widgets/image-box/image-box.php:376 widgets/image-box/image-box.php:935
2326
+ #: widgets/image-box/image-box.php:1097 widgets/image-box/image-box.php:1182
2327
+ #: widgets/image-box/image-box.php:1311
2328
+ #: widgets/image-comparison/image-comparison.php:431
2329
+ #: widgets/instagram-feed/instagram-feed.php:515
2330
+ #: widgets/instagram-feed/instagram-feed.php:733
2331
+ #: widgets/instagram-feed/instagram-feed.php:1103
2332
+ #: widgets/mail-chimp/mail-chimp.php:939 widgets/nav-menu/nav-menu.php:350
2333
+ #: widgets/nav-menu/nav-menu.php:556 widgets/nav-menu/nav-menu.php:943
2334
+ #: widgets/nav-menu/nav-menu.php:1149 widgets/ninja-forms/ninja-forms.php:264
2335
+ #: widgets/ninja-forms/ninja-forms.php:656 widgets/piechart/piechart.php:432
2336
+ #: widgets/piechart/piechart.php:556 widgets/post-list/post-list.php:665
2337
+ #: widgets/post-tab/post-tab.php:201 widgets/pricing/pricing.php:473
2338
+ #: widgets/pricing/pricing.php:581 widgets/pricing/pricing.php:710
2339
+ #: widgets/pricing/pricing.php:807 widgets/pricing/pricing.php:930
2340
+ #: widgets/pricing/pricing.php:1032 widgets/pricing/pricing.php:1494
2341
+ #: widgets/pricing/pricing.php:1591 widgets/pricing/pricing.php:1745
2342
+ #: widgets/pricing/pricing.php:1999 widgets/pricing/pricing.php:2112
2343
+ #: widgets/pricing/pricing.php:2194 widgets/social-share/social-share.php:237
2344
+ #: widgets/social/social.php:199 widgets/tab/tab.php:705
2345
+ #: widgets/table/table.php:1086 widgets/table/table.php:1356
2346
+ #: widgets/table/table.php:1468 widgets/table/table.php:1727
2347
+ #: widgets/table/table.php:1882 widgets/tablepress/tablepress.php:479
2348
+ #: widgets/team/team.php:233 widgets/team/team.php:543
2349
+ #: widgets/team/team.php:1121 widgets/team/team.php:1222
2350
+ #: widgets/team/team.php:1299 widgets/team/team.php:1396
2351
+ #: widgets/team/team.php:1969 widgets/testimonial/testimonial.php:978
2352
+ #: widgets/testimonial/testimonial.php:1205
2353
+ #: widgets/testimonial/testimonial.php:1338
2354
+ #: widgets/testimonial/testimonial.php:1434
2355
+ #: widgets/testimonial/testimonial.php:2119 widgets/timeline/timeline.php:166
2356
+ #: widgets/timeline/timeline.php:487 widgets/timeline/timeline.php:1017
2357
+ #: widgets/twitter-feed/twitter-feed.php:370
2358
+ #: widgets/twitter-feed/twitter-feed.php:625
2359
+ #: widgets/twitter-feed/twitter-feed.php:888
2360
+ #: widgets/twitter-feed/twitter-feed.php:970
2361
+ #: widgets/twitter-feed/twitter-feed.php:1027
2362
+ #: widgets/twitter-feed/twitter-feed.php:1220
2363
+ #: widgets/vertical-menu/vertical-menu.php:178
2364
+ #: widgets/vertical-menu/vertical-menu.php:332
2365
+ #: widgets/vertical-menu/vertical-menu.php:434 widgets/video/video.php:509
2366
+ #: widgets/video/video.php:612 widgets/we-forms/we-forms.php:171
2367
+ #: widgets/we-forms/we-forms.php:500
2368
+ #: widgets/woo-category-list/woo-category-list.php:248
2369
+ #: widgets/woo-category-list/woo-category-list.php:438
2370
+ #: widgets/woo-category-list/woo-category-list.php:640
2371
+ #: widgets/woo-category-list/woo-category-list.php:722
2372
+ #: widgets/woo-category-list/woo-category-list.php:935
2373
+ #: widgets/woo-category-list/woo-category-list.php:1016
2374
+ #: widgets/woo-mini-cart/woo-mini-cart.php:188
2375
+ #: widgets/woo-mini-cart/woo-mini-cart.php:410
2376
+ #: widgets/woo-mini-cart/woo-mini-cart.php:531
2377
+ #: widgets/woo-mini-cart/woo-mini-cart.php:592
2378
+ #: widgets/woo-mini-cart/woo-mini-cart.php:797
2379
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1051
2380
+ #: widgets/woo-product-carousel/woo-product-carousel.php:501
2381
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1228
2382
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1437
2383
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1646
2384
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1752
2385
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2104
2386
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2331
2387
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2599
2388
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2788
2389
+ #: widgets/woo-product-list/woo-product-list.php:331
2390
+ #: widgets/woo-product-list/woo-product-list.php:525
2391
+ #: widgets/woo-product-list/woo-product-list.php:665
2392
+ #: widgets/woo-product-list/woo-product-list.php:1392
2393
+ #: widgets/woo-product-list/woo-product-list.php:1601
2394
+ #: widgets/woo-product-list/woo-product-list.php:1774
2395
+ #: widgets/woo-product-list/woo-product-list.php:1980
2396
+ #: widgets/woo-product-list/woo-product-list.php:2387
2397
+ #: widgets/wp-forms/wp-forms.php:127 widgets/wp-forms/wp-forms.php:480
2398
+ msgid "Normal"
2399
+ msgstr ""
2400
+
2401
+ #: modules/parallax/section-controls.php:395
2402
+ #: modules/parallax/widget-controls.php:137
2403
+ msgid "Reverse"
2404
+ msgstr ""
2405
+
2406
+ #: modules/parallax/section-controls.php:396
2407
+ #: modules/parallax/widget-controls.php:138
2408
+ msgid "Alternate"
2409
+ msgstr ""
2410
+
2411
+ #: modules/parallax/section-controls.php:422
2412
+ msgid "Parallax style"
2413
+ msgstr ""
2414
+
2415
+ #: modules/parallax/section-controls.php:426
2416
+ #: modules/parallax/section-controls.php:516
2417
+ msgid "X axis"
2418
+ msgstr ""
2419
+
2420
+ #: modules/parallax/section-controls.php:427
2421
+ #: modules/parallax/section-controls.php:517
2422
+ msgid "Y axis"
2423
+ msgstr ""
2424
+
2425
+ #: modules/parallax/section-controls.php:428
2426
+ msgid "rotate"
2427
+ msgstr ""
2428
+
2429
+ #: modules/parallax/section-controls.php:429
2430
+ msgid "rotateX"
2431
+ msgstr ""
2432
+
2433
+ #: modules/parallax/section-controls.php:430
2434
+ msgid "rotateY"
2435
+ msgstr ""
2436
+
2437
+ #: modules/parallax/section-controls.php:431
2438
+ msgid "scale"
2439
+ msgstr ""
2440
+
2441
+ #: modules/parallax/section-controls.php:432
2442
+ msgid "scaleX"
2443
+ msgstr ""
2444
+
2445
+ #: modules/parallax/section-controls.php:433
2446
+ msgid "scaleY"
2447
+ msgstr ""
2448
+
2449
+ #: modules/parallax/section-controls.php:442
2450
+ msgid "Parallax Transition "
2451
+ msgstr ""
2452
+
2453
+ #: modules/parallax/section-controls.php:443
2454
+ msgid ""
2455
+ "X, Y and Z Axis will be pixels, Rotate will be degrees (0-180), scale will "
2456
+ "be ratio"
2457
+ msgstr ""
2458
+
2459
+ #: modules/parallax/section-controls.php:453
2460
+ msgid "Smoothness"
2461
+ msgstr ""
2462
+
2463
+ #: modules/parallax/section-controls.php:454
2464
+ msgid ""
2465
+ "factor that slowdown the animation, the more the smoothier (default: 700)"
2466
+ msgstr ""
2467
+
2468
+ #: modules/parallax/section-controls.php:467
2469
+ msgid "Offset Top"
2470
+ msgstr ""
2471
+
2472
+ #: modules/parallax/section-controls.php:468
2473
+ #: modules/parallax/section-controls.php:479
2474
+ msgid "default: 0; when the element is visible"
2475
+ msgstr ""
2476
+
2477
+ #: modules/parallax/section-controls.php:478
2478
+ msgid "Offset Bottom"
2479
+ msgstr ""
2480
+
2481
+ #: modules/parallax/section-controls.php:489
2482
+ msgid "MaxTilt"
2483
+ msgstr ""
2484
+
2485
+ #: modules/parallax/section-controls.php:499
2486
+ msgid "Image Scale"
2487
+ msgstr ""
2488
+
2489
+ #: modules/parallax/section-controls.php:500
2490
+ msgid "2 = 200%, 1.5 = 150%, etc.. Default 1"
2491
+ msgstr ""
2492
+
2493
+ #: modules/parallax/section-controls.php:510
2494
+ msgid "Disable Axis"
2495
+ msgstr ""
2496
+
2497
+ #: modules/parallax/section-controls.php:511
2498
+ msgid "What axis should be disabled. Can be X or Y."
2499
+ msgstr ""
2500
+
2501
+ #: modules/parallax/section-controls.php:527
2502
+ msgid "Z-index"
2503
+ msgstr ""
2504
+
2505
+ #: modules/parallax/section-controls.php:529
2506
+ #: widgets/blog-posts/blog-posts.php:99 widgets/testimonial/testimonial.php:317
2507
+ msgid "2"
2508
+ msgstr ""
2509
+
2510
+ #: modules/parallax/section-controls.php:538
2511
+ msgid "Parallax"
2512
+ msgstr ""
2513
+
2514
+ #: modules/parallax/section-controls.php:553
2515
+ msgid "Section Overflow"
2516
+ msgstr ""
2517
+
2518
+ #: modules/parallax/section-controls.php:557
2519
+ msgid "Visible"
2520
+ msgstr ""
2521
+
2522
+ #: modules/parallax/section-controls.php:558
2523
+ msgid "Hidden"
2524
+ msgstr ""
2525
+
2526
+ #: modules/parallax/widget-controls.php:31
2527
+ msgid "CSS effect"
2528
+ msgstr ""
2529
+
2530
+ #: modules/parallax/widget-controls.php:32
2531
+ msgid "On Scroll effect"
2532
+ msgstr ""
2533
+
2534
+ #: modules/parallax/widget-controls.php:33
2535
+ msgid "Mouse move effect"
2536
+ msgstr ""
2537
+
2538
+ #: modules/parallax/widget-controls.php:44
2539
+ msgid "CSS Animation"
2540
+ msgstr ""
2541
+
2542
+ #: modules/parallax/widget-controls.php:46
2543
+ #: widgets/category-list/category-list.php:172
2544
+ #: widgets/page-list/page-list.php:546 widgets/post-list/post-list.php:339
2545
+ msgid "On"
2546
+ msgstr ""
2547
+
2548
+ #: modules/parallax/widget-controls.php:48
2549
+ #: widgets/category-list/category-list.php:171
2550
+ #: widgets/page-list/page-list.php:545 widgets/post-list/post-list.php:338
2551
+ msgid "Off"
2552
+ msgstr ""
2553
+
2554
+ #: modules/parallax/widget-controls.php:166
2555
+ msgid "CSS Transform"
2556
+ msgstr ""
2557
+
2558
+ #: modules/parallax/widget-controls.php:179
2559
+ msgid "Translate"
2560
+ msgstr ""
2561
+
2562
+ #: modules/parallax/widget-controls.php:195
2563
+ msgid "Left-RIght"
2564
+ msgstr ""
2565
+
2566
+ #: modules/parallax/widget-controls.php:216 widgets/icon-box/icon-box.php:477
2567
+ #: widgets/woo-product-carousel/woo-product-carousel.php:39
2568
+ #: widgets/woo-product-carousel/woo-product-carousel.php:54
2569
+ msgid "Top Right"
2570
+ msgstr ""
2571
+
2572
+ #: modules/parallax/widget-controls.php:265
2573
+ msgid "Rotate Round (Z)"
2574
+ msgstr ""
2575
+
2576
+ #: modules/parallax/widget-controls.php:300
2577
+ msgid "Rotate Top Bottom (X)"
2578
+ msgstr ""
2579
+
2580
+ #: modules/parallax/widget-controls.php:321
2581
+ msgid "Rotate Let-Right (Y)"
2582
+ msgstr ""
2583
+
2584
+ #: modules/parallax/widget-controls.php:344
2585
+ #: widgets/facebook-feed/facebook-feed.php:635
2586
+ #: widgets/facebook-feed/facebook-feed.php:690
2587
+ #: widgets/facebook-feed/facebook-feed.php:797
2588
+ #: widgets/facebook-feed/facebook-feed.php:841 widgets/gallery/gallery.php:529
2589
+ #: widgets/gallery/gallery.php:585 widgets/gallery/gallery.php:611
2590
+ #: widgets/gallery/gallery.php:759 widgets/gallery/gallery.php:784
2591
+ #: widgets/gallery/gallery.php:943 widgets/gallery/gallery.php:1937
2592
+ #: widgets/gallery/gallery.php:2008
2593
+ #: widgets/instagram-feed/instagram-feed.php:992
2594
+ #: widgets/testimonial/testimonial.php:1927
2595
+ #: widgets/twitter-feed/twitter-feed.php:1274
2596
+ #: widgets/twitter-feed/twitter-feed.php:1353
2597
+ msgid "Scale"
2598
+ msgstr ""
2599
+
2600
+ #: modules/parallax/widget-controls.php:360
2601
+ msgid "Scale Left-right (X)"
2602
+ msgstr ""
2603
+
2604
+ #: modules/parallax/widget-controls.php:385
2605
+ msgid "Scale Top Bottom (Y)"
2606
+ msgstr ""
2607
+
2608
+ #: modules/parallax/widget-controls.php:429
2609
+ msgid "Skew"
2610
+ msgstr ""
2611
+
2612
+ #: modules/parallax/widget-controls.php:445
2613
+ msgid "Skew Left-right (X)"
2614
+ msgstr ""
2615
+
2616
+ #: modules/parallax/widget-controls.php:466
2617
+ msgid "Skew Top Bottom (Y)"
2618
+ msgstr ""
2619
+
2620
+ #: modules/parallax/widget-controls.php:513
2621
+ msgid "Top-Bottom Scroll"
2622
+ msgstr ""
2623
+
2624
+ #: modules/parallax/widget-controls.php:529
2625
+ #: modules/parallax/widget-controls.php:604
2626
+ #: modules/parallax/widget-controls.php:907
2627
+ #: modules/parallax/widget-controls.php:986
2628
+ msgid "Moving to"
2629
+ msgstr ""
2630
+
2631
+ #: modules/parallax/widget-controls.php:543
2632
+ #: modules/parallax/widget-controls.php:618
2633
+ msgid "Scrolling Speed"
2634
+ msgstr ""
2635
+
2636
+ #: modules/parallax/widget-controls.php:564
2637
+ msgid "Scrolling Position"
2638
+ msgstr ""
2639
+
2640
+ #: modules/parallax/widget-controls.php:588
2641
+ msgid "Left-Right Scroll"
2642
+ msgstr ""
2643
+
2644
+ #: modules/parallax/widget-controls.php:639
2645
+ #: modules/parallax/widget-controls.php:714
2646
+ #: modules/parallax/widget-controls.php:791
2647
+ #: modules/parallax/widget-controls.php:867
2648
+ #: modules/parallax/widget-controls.php:941 widgets/chart/chart.php:611
2649
+ #: widgets/chart/chart.php:776 widgets/client-logo/client-logo.php:827
2650
+ #: widgets/nav-menu/nav-menu.php:815 widgets/pricing/pricing.php:1433
2651
+ #: widgets/team/team.php:1280 widgets/team/team.php:1863
2652
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1342
2653
+ #: widgets/woo-product-list/woo-product-list.php:1506
2654
+ msgid "Position"
2655
+ msgstr ""
2656
+
2657
+ #: modules/parallax/widget-controls.php:663
2658
+ #: widgets/woo-product-carousel/woo-product-carousel.php:66
2659
+ msgid "Fade"
2660
+ msgstr ""
2661
+
2662
+ #: modules/parallax/widget-controls.php:679
2663
+ #: modules/parallax/widget-controls.php:754
2664
+ #: modules/parallax/widget-controls.php:832 widgets/accordion/accordion.php:109
2665
+ #: widgets/advanced-accordion/advanced-accordion.php:106
2666
+ #: widgets/advanced-tab/advanced-tab.php:41
2667
+ #: widgets/category-list/category-list.php:183 widgets/chart/chart.php:852
2668
+ #: widgets/contact-form7/contact-form7.php:56
2669
+ #: widgets/drop-caps/drop-caps.php:59 widgets/gallery/gallery.php:99
2670
+ #: widgets/motion-text/motion-text.php:280 widgets/page-list/page-list.php:557
2671
+ #: widgets/post-list/post-list.php:350 widgets/pricing/pricing.php:1812
2672
+ #: widgets/progressbar/progressbar.php:46 widgets/tab/tab.php:40
2673
+ #: widgets/team/team.php:49 widgets/video/video.php:281
2674
+ msgid "Style"
2675
+ msgstr ""
2676
+
2677
+ #: modules/parallax/widget-controls.php:684
2678
+ #: modules/parallax/widget-controls.php:837
2679
+ msgid "Fade In"
2680
+ msgstr ""
2681
+
2682
+ #: modules/parallax/widget-controls.php:685
2683
+ #: modules/parallax/widget-controls.php:838
2684
+ msgid "Fade Out"
2685
+ msgstr ""
2686
+
2687
+ #: modules/parallax/widget-controls.php:738
2688
+ msgid "Zoom"
2689
+ msgstr ""
2690
+
2691
+ #: modules/parallax/widget-controls.php:759
2692
+ msgid "Zoom In"
2693
+ msgstr ""
2694
+
2695
+ #: modules/parallax/widget-controls.php:760
2696
+ msgid "Zoom Out"
2697
+ msgstr ""
2698
+
2699
+ #: modules/parallax/widget-controls.php:761
2700
+ msgid "Zoom In Out"
2701
+ msgstr ""
2702
+
2703
+ #: modules/parallax/widget-controls.php:762
2704
+ msgid "Zoom Out In"
2705
+ msgstr ""
2706
+
2707
+ #: modules/parallax/widget-controls.php:770 widgets/accordion/accordion.php:638
2708
+ #: widgets/accordion/accordion.php:699
2709
+ #: widgets/advanced-accordion/advanced-accordion.php:634
2710
+ #: widgets/advanced-accordion/advanced-accordion.php:695
2711
+ #: widgets/category-list/category-list.php:334
2712
+ #: widgets/client-logo/client-logo.php:840 widgets/funfact/funfact.php:639
2713
+ #: widgets/gallery/gallery.php:1731 widgets/icon-box/icon-box.php:647
2714
+ #: widgets/page-list/page-list.php:701 widgets/post-list/post-list.php:504
2715
+ #: widgets/pricing/pricing.php:1152 widgets/team/team.php:2094
2716
+ msgid "Size"
2717
+ msgstr ""
2718
+
2719
+ #: modules/parallax/widget-controls.php:991
2720
+ msgid "Same direction"
2721
+ msgstr ""
2722
+
2723
+ #: modules/parallax/widget-controls.php:992
2724
+ msgid "Reverse direction"
2725
+ msgstr ""
2726
+
2727
+ #: modules/parallax/widget-controls.php:1023 widgets/gallery/gallery.php:897
2728
+ msgid "Tilt"
2729
+ msgstr ""
2730
+
2731
+ #: modules/parallax/widget-controls.php:1039
2732
+ #: widgets/client-logo/client-logo.php:588
2733
+ msgid "Direction"
2734
+ msgstr ""
2735
+
2736
+ #: modules/parallax/widget-controls.php:1044
2737
+ msgid "Direct"
2738
+ msgstr ""
2739
+
2740
+ #: modules/parallax/widget-controls.php:1045
2741
+ msgid "Opposite"
2742
+ msgstr ""
2743
+
2744
+ #: modules/parallax/widget-controls.php:1076
2745
+ msgid "Display On"
2746
+ msgstr ""
2747
+
2748
+ #: modules/parallax/widget-controls.php:1082
2749
+ #: modules/sticky-content/extend-controls.php:92
2750
+ msgid "All Devices"
2751
+ msgstr ""
2752
+
2753
+ #: modules/parallax/widget-controls.php:1083
2754
+ #: widgets/tablepress/tablepress.php:78
2755
+ msgid "Desktop"
2756
+ msgstr ""
2757
+
2758
+ #: modules/parallax/widget-controls.php:1084
2759
+ #: modules/sticky-content/extend-controls.php:94
2760
+ msgid "Desktop & Tablet"
2761
+ msgstr ""
2762
+
2763
+ #: modules/sticky-content/extend-controls.php:16
2764
+ msgid "ElementsKit_Lite Sticky"
2765
+ msgstr ""
2766
+
2767
+ #: modules/sticky-content/extend-controls.php:24
2768
+ msgid "Sticky"
2769
+ msgstr ""
2770
+
2771
+ #: modules/sticky-content/extend-controls.php:30
2772
+ msgid "Column"
2773
+ msgstr ""
2774
+
2775
+ #: modules/sticky-content/extend-controls.php:31
2776
+ msgid "Show on Scroll Up"
2777
+ msgstr ""
2778
+
2779
+ #: modules/sticky-content/extend-controls.php:42
2780
+ msgid "Sticky Until"
2781
+ msgstr ""
2782
+
2783
+ #: modules/sticky-content/extend-controls.php:43
2784
+ msgid "Section id without starting hash, example \"section1\"."
2785
+ msgstr ""
2786
+
2787
+ #: modules/sticky-content/extend-controls.php:57
2788
+ msgid "Sticky Offset"
2789
+ msgstr ""
2790
+
2791
+ #: modules/sticky-content/extend-controls.php:75
2792
+ msgid "Sticky Background Color"
2793
+ msgstr ""
2794
+
2795
+ #: modules/sticky-content/extend-controls.php:89
2796
+ msgid "Sticky On"
2797
+ msgstr ""
2798
+
2799
+ #: modules/sticky-content/extend-controls.php:93
2800
+ msgid "Desktop Only"
2801
+ msgstr ""
2802
+
2803
+ #: modules/sticky-content/extend-controls.php:108
2804
+ msgid "Add \"ekit-sticky--effects\" Class Offset"
2805
+ msgstr ""
2806
+
2807
+ #: widgets/accordion/accordion-handler.php:11
2808
+ #: widgets/accordion/accordion.php:36
2809
+ #: widgets/advanced-accordion/advanced-accordion.php:36
2810
+ msgid "Accordion"
2811
+ msgstr ""
2812
+
2813
+ #: widgets/accordion/accordion.php:44 widgets/accordion/accordion.php:223
2814
+ #: widgets/advanced-accordion/advanced-accordion.php:44
2815
+ #: widgets/advanced-accordion/advanced-accordion.php:220
2816
+ #: widgets/advanced-tab/advanced-tab.php:348
2817
+ #: widgets/advanced-toggle/advanced-toggle.php:106
2818
+ #: widgets/blog-posts/blog-posts.php:241 widgets/blog-posts/blog-posts.php:1548
2819
+ #: widgets/chart/chart.php:329 widgets/chart/chart.php:734
2820
+ #: widgets/faq/faq.php:45 widgets/faq/faq.php:94
2821
+ #: widgets/funfact/funfact.php:805 widgets/heading/heading.php:37
2822
+ #: widgets/heading/heading.php:324 widgets/hotspot/hotspot.php:116
2823
+ #: widgets/hotspot/hotspot.php:639 widgets/icon-box/icon-box.php:458
2824
+ #: widgets/icon-box/icon-box.php:811
2825
+ #: widgets/image-accordion/image-accordion.php:74
2826
+ #: widgets/image-accordion/image-accordion.php:344
2827
+ #: widgets/image-box/image-box.php:1087 widgets/motion-text/motion-text.php:42
2828
+ #: widgets/ninja-forms/ninja-forms.php:93 widgets/piechart/piechart.php:150
2829
+ #: widgets/progressbar/progressbar.php:85
2830
+ #: widgets/progressbar/progressbar.php:301 widgets/tab/tab.php:320
2831
+ #: widgets/timeline/timeline.php:85 widgets/timeline/timeline.php:87
2832
+ #: widgets/vertical-menu/vertical-menu.php:99
2833
+ #: widgets/woo-category-list/woo-category-list.php:218
2834
+ #: widgets/woo-product-carousel/woo-product-carousel.php:154
2835
+ #: widgets/woo-product-carousel/woo-product-carousel.php:331
2836
+ #: widgets/woo-product-carousel/woo-product-carousel.php:744
2837
+ #: widgets/woo-product-list/woo-product-list.php:109
2838
+ #: widgets/woo-product-list/woo-product-list.php:276
2839
+ #: widgets/woo-product-list/woo-product-list.php:906
2840
+ msgid "Title"
2841
+ msgstr ""
2842
+
2843
+ #: widgets/accordion/accordion.php:53
2844
+ msgid "Keep this slide open? "
2845
+ msgstr ""
2846
+
2847
+ #: widgets/accordion/accordion.php:56 widgets/accordion/accordion.php:99
2848
+ #: widgets/advanced-accordion/advanced-accordion.php:56
2849
+ #: widgets/advanced-accordion/advanced-accordion.php:97
2850
+ #: widgets/advanced-tab/advanced-tab.php:383
2851
+ #: widgets/advanced-tab/advanced-tab.php:500
2852
+ #: widgets/advanced-toggle/advanced-toggle.php:184
2853
+ #: widgets/blog-posts/blog-posts.php:62 widgets/blog-posts/blog-posts.php:115
2854
+ #: widgets/blog-posts/blog-posts.php:136 widgets/blog-posts/blog-posts.php:158
2855
+ #: widgets/blog-posts/blog-posts.php:279 widgets/blog-posts/blog-posts.php:317
2856
+ #: widgets/blog-posts/blog-posts.php:364 widgets/blog-posts/blog-posts.php:467
2857
+ #: widgets/blog-posts/blog-posts.php:1696 widgets/button/button.php:87
2858
+ #: widgets/client-logo/client-logo.php:85
2859
+ #: widgets/client-logo/client-logo.php:111
2860
+ #: widgets/client-logo/client-logo.php:314
2861
+ #: widgets/client-logo/client-logo.php:339
2862
+ #: widgets/client-logo/client-logo.php:353
2863
+ #: widgets/client-logo/client-logo.php:395
2864
+ #: widgets/creative-button/creative-button.php:87
2865
+ #: widgets/dual-button/dual-button.php:188
2866
+ #: widgets/dual-button/dual-button.php:317 widgets/funfact/funfact.php:76
2867
+ #: widgets/funfact/funfact.php:1056 widgets/gallery/gallery.php:292
2868
+ #: widgets/gallery/gallery.php:2075 widgets/heading/heading.php:210
2869
+ #: widgets/heading/heading.php:424 widgets/heading/heading.php:464
2870
+ #: widgets/heading/heading.php:533 widgets/icon-box/icon-box.php:69
2871
+ #: widgets/icon-box/icon-box.php:158 widgets/icon-box/icon-box.php:170
2872
+ #: widgets/icon-box/icon-box.php:247 widgets/icon-box/icon-box.php:293
2873
+ #: widgets/icon-box/icon-box.php:340 widgets/icon-box/icon-box.php:1350
2874
+ #: widgets/icon-box/icon-box.php:1392
2875
+ #: widgets/image-accordion/image-accordion.php:60
2876
+ #: widgets/image-accordion/image-accordion.php:83
2877
+ #: widgets/image-accordion/image-accordion.php:118
2878
+ #: widgets/image-accordion/image-accordion.php:145
2879
+ #: widgets/image-accordion/image-accordion.php:168
2880
+ #: widgets/image-box/image-box.php:89 widgets/image-box/image-box.php:144
2881
+ #: widgets/image-box/image-box.php:312
2882
+ #: widgets/image-comparison/image-comparison.php:144
2883
+ #: widgets/image-comparison/image-comparison.php:156
2884
+ #: widgets/image-comparison/image-comparison.php:168
2885
+ #: widgets/nav-menu/nav-menu.php:63 widgets/pricing/pricing.php:107
2886
+ #: widgets/pricing/pricing.php:347 widgets/tab/tab.php:332
2887
+ #: widgets/tab/tab.php:510 widgets/table/table.php:305
2888
+ #: widgets/table/table.php:327 widgets/team/team.php:731
2889
+ #: widgets/team/team.php:732 widgets/team/team.php:2131
2890
+ #: widgets/testimonial/testimonial.php:108
2891
+ #: widgets/testimonial/testimonial.php:256
2892
+ #: widgets/testimonial/testimonial.php:273
2893
+ #: widgets/testimonial/testimonial.php:345
2894
+ #: widgets/testimonial/testimonial.php:488
2895
+ #: widgets/testimonial/testimonial.php:500
2896
+ #: widgets/testimonial/testimonial.php:512
2897
+ #: widgets/testimonial/testimonial.php:556
2898
+ #: widgets/testimonial/testimonial.php:782 widgets/video/video.php:82
2899
+ #: widgets/video/video.php:129 widgets/video/video.php:193
2900
+ #: widgets/video/video.php:205 widgets/video/video.php:217
2901
+ #: widgets/video/video.php:229 widgets/video/video.php:241
2902
+ #: widgets/video/video.php:254 widgets/video/video.php:267
2903
+ #: widgets/we-forms/we-forms.php:352
2904
+ #: widgets/woo-category-list/woo-category-list.php:140
2905
+ #: widgets/woo-product-carousel/woo-product-carousel.php:202
2906
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1318
2907
+ #: widgets/woo-product-list/woo-product-list.php:160
2908
+ #: widgets/woo-product-list/woo-product-list.php:1482
2909
+ msgid "Yes"
2910
+ msgstr ""
2911
+
2912
+ #: widgets/accordion/accordion.php:57 widgets/accordion/accordion.php:100
2913
+ #: widgets/advanced-accordion/advanced-accordion.php:57
2914
+ #: widgets/advanced-accordion/advanced-accordion.php:98
2915
+ #: widgets/advanced-tab/advanced-tab.php:384
2916
+ #: widgets/advanced-tab/advanced-tab.php:501
2917
+ #: widgets/advanced-toggle/advanced-toggle.php:185
2918
+ #: widgets/blog-posts/blog-posts.php:63 widgets/blog-posts/blog-posts.php:116
2919
+ #: widgets/blog-posts/blog-posts.php:137 widgets/blog-posts/blog-posts.php:159
2920
+ #: widgets/blog-posts/blog-posts.php:280 widgets/blog-posts/blog-posts.php:318
2921
+ #: widgets/blog-posts/blog-posts.php:365 widgets/blog-posts/blog-posts.php:468
2922
+ #: widgets/blog-posts/blog-posts.php:1697 widgets/button/button.php:88
2923
+ #: widgets/client-logo/client-logo.php:86
2924
+ #: widgets/client-logo/client-logo.php:112
2925
+ #: widgets/client-logo/client-logo.php:315
2926
+ #: widgets/client-logo/client-logo.php:340
2927
+ #: widgets/client-logo/client-logo.php:354
2928
+ #: widgets/client-logo/client-logo.php:396
2929
+ #: widgets/creative-button/creative-button.php:88
2930
+ #: widgets/dual-button/dual-button.php:189
2931
+ #: widgets/dual-button/dual-button.php:318 widgets/funfact/funfact.php:77
2932
+ #: widgets/funfact/funfact.php:1057 widgets/gallery/gallery.php:293
2933
+ #: widgets/gallery/gallery.php:2076 widgets/heading/heading.php:211
2934
+ #: widgets/heading/heading.php:425 widgets/heading/heading.php:465
2935
+ #: widgets/heading/heading.php:534 widgets/icon-box/icon-box.php:70
2936
+ #: widgets/icon-box/icon-box.php:159 widgets/icon-box/icon-box.php:171
2937
+ #: widgets/icon-box/icon-box.php:248 widgets/icon-box/icon-box.php:294
2938
+ #: widgets/icon-box/icon-box.php:341 widgets/icon-box/icon-box.php:1351
2939
+ #: widgets/icon-box/icon-box.php:1393
2940
+ #: widgets/image-accordion/image-accordion.php:61
2941
+ #: widgets/image-accordion/image-accordion.php:84
2942
+ #: widgets/image-accordion/image-accordion.php:119
2943
+ #: widgets/image-accordion/image-accordion.php:146
2944
+ #: widgets/image-accordion/image-accordion.php:169
2945
+ #: widgets/image-box/image-box.php:90 widgets/image-box/image-box.php:145
2946
+ #: widgets/image-box/image-box.php:313
2947
+ #: widgets/image-comparison/image-comparison.php:145
2948
+ #: widgets/image-comparison/image-comparison.php:157
2949
+ #: widgets/image-comparison/image-comparison.php:169
2950
+ #: widgets/nav-menu/nav-menu.php:64 widgets/pricing/pricing.php:108
2951
+ #: widgets/pricing/pricing.php:348 widgets/tab/tab.php:333
2952
+ #: widgets/tab/tab.php:511 widgets/table/table.php:304
2953
+ #: widgets/table/table.php:328 widgets/team/team.php:2132
2954
+ #: widgets/testimonial/testimonial.php:109
2955
+ #: widgets/testimonial/testimonial.php:257
2956
+ #: widgets/testimonial/testimonial.php:274
2957
+ #: widgets/testimonial/testimonial.php:346
2958
+ #: widgets/testimonial/testimonial.php:489
2959
+ #: widgets/testimonial/testimonial.php:501
2960
+ #: widgets/testimonial/testimonial.php:513
2961
+ #: widgets/testimonial/testimonial.php:557
2962
+ #: widgets/testimonial/testimonial.php:783 widgets/video/video.php:83
2963
+ #: widgets/video/video.php:130 widgets/video/video.php:194
2964
+ #: widgets/video/video.php:206 widgets/video/video.php:218
2965
+ #: widgets/video/video.php:230 widgets/video/video.php:242
2966
+ #: widgets/video/video.php:255 widgets/video/video.php:268
2967
+ #: widgets/we-forms/we-forms.php:353
2968
+ #: widgets/woo-category-list/woo-category-list.php:141
2969
+ #: widgets/woo-product-carousel/woo-product-carousel.php:203
2970
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1319
2971
+ #: widgets/woo-product-list/woo-product-list.php:161
2972
+ #: widgets/woo-product-list/woo-product-list.php:1483
2973
+ msgid "No"
2974
+ msgstr ""
2975
+
2976
+ #: widgets/accordion/accordion.php:63 widgets/accordion/accordion.php:466
2977
+ #: widgets/advanced-accordion/advanced-accordion.php:63
2978
+ #: widgets/gallery/gallery.php:1245 widgets/hotspot/hotspot.php:126
2979
+ #: widgets/hotspot/hotspot.php:683 widgets/icon-box/icon-box.php:867
2980
+ #: widgets/image-box/image-box.php:210 widgets/image-box/image-box.php:1173
2981
+ #: widgets/piechart/piechart.php:164 widgets/testimonial/testimonial.php:825
2982
+ #: widgets/timeline/timeline.php:110
2983
+ #: widgets/woo-category-list/woo-category-list.php:92
2984
+ msgid "Description"
2985
+ msgstr ""
2986
+
2987
+ #: widgets/accordion/accordion.php:97
2988
+ #: widgets/advanced-accordion/advanced-accordion.php:95
2989
+ msgid "Keep first slide auto open?"
2990
+ msgstr ""
2991
+
2992
+ #: widgets/accordion/accordion.php:113
2993
+ #: widgets/advanced-accordion/advanced-accordion.php:110
2994
+ msgid "Primary"
2995
+ msgstr ""
2996
+
2997
+ #: widgets/accordion/accordion.php:114
2998
+ #: widgets/advanced-accordion/advanced-accordion.php:111
2999
+ msgid "Curve Shape"
3000
+ msgstr ""
3001
+
3002
+ #: widgets/accordion/accordion.php:115
3003
+ #: widgets/advanced-accordion/advanced-accordion.php:112
3004
+ msgid "Side Curve"
3005
+ msgstr ""
3006
+
3007
+ #: widgets/accordion/accordion.php:116
3008
+ #: widgets/advanced-accordion/advanced-accordion.php:113
3009
+ msgid "Box Icon"
3010
+ msgstr ""
3011
+
3012
+ #: widgets/accordion/accordion.php:117
3013
+ #: widgets/advanced-accordion/advanced-accordion.php:114
3014
+ #: widgets/image-box/image-box.php:361
3015
+ msgid "Floating Style"
3016
+ msgstr ""
3017
+
3018
+ #: widgets/accordion/accordion.php:132
3019
+ #: widgets/advanced-accordion/advanced-accordion.php:129
3020
+ #: widgets/blog-posts/blog-posts.php:490 widgets/button/button.php:110
3021
+ #: widgets/creative-button/creative-button.php:107
3022
+ #: widgets/dual-button/dual-button.php:211 widgets/icon-box/icon-box.php:274
3023
+ #: widgets/icon-box/icon-box.php:369
3024
+ #: widgets/image-accordion/image-accordion.php:102
3025
+ #: widgets/image-box/image-box.php:338 widgets/mail-chimp/mail-chimp.php:494
3026
+ #: widgets/pricing/pricing.php:371 widgets/social-share/social-share.php:63
3027
+ #: widgets/social/social.php:57 widgets/table/table.php:148
3028
+ #: widgets/table/table.php:422 widgets/video/video.php:110
3029
+ msgid "Icon Position"
3030
+ msgstr ""
3031
+
3032
+ #: widgets/accordion/accordion.php:138
3033
+ #: widgets/advanced-accordion/advanced-accordion.php:135
3034
+ #: widgets/timeline/timeline.php:62
3035
+ msgid "Both side"
3036
+ msgstr ""
3037
+
3038
+ #: widgets/accordion/accordion.php:146
3039
+ #: widgets/advanced-accordion/advanced-accordion.php:143
3040
+ msgid "Show Loop Count"
3041
+ msgstr ""
3042
+
3043
+ #: widgets/accordion/accordion.php:160
3044
+ #: widgets/advanced-accordion/advanced-accordion.php:157
3045
+ msgid "Left Icon"
3046
+ msgstr ""
3047
+
3048
+ #: widgets/accordion/accordion.php:175
3049
+ #: widgets/advanced-accordion/advanced-accordion.php:172
3050
+ msgid "Left Icon Active"
3051
+ msgstr ""
3052
+
3053
+ #: widgets/accordion/accordion.php:190
3054
+ #: widgets/advanced-accordion/advanced-accordion.php:187
3055
+ msgid "Right Icon"
3056
+ msgstr ""
3057
+
3058
+ #: widgets/accordion/accordion.php:205
3059
+ #: widgets/advanced-accordion/advanced-accordion.php:202
3060
+ msgid "Right Icon Active"
3061
+ msgstr ""
3062
+
3063
+ #: widgets/accordion/accordion.php:239
3064
+ #: widgets/advanced-accordion/advanced-accordion.php:236
3065
+ msgid "Open"
3066
+ msgstr ""
3067
+
3068
+ #: widgets/accordion/accordion.php:257 widgets/accordion/accordion.php:347
3069
+ #: widgets/accordion/accordion.php:357 widgets/accordion/accordion.php:493
3070
+ #: widgets/accordion/accordion.php:668 widgets/accordion/accordion.php:729
3071
+ #: widgets/advanced-accordion/advanced-accordion.php:254
3072
+ #: widgets/advanced-accordion/advanced-accordion.php:344
3073
+ #: widgets/advanced-accordion/advanced-accordion.php:354
3074
+ #: widgets/advanced-accordion/advanced-accordion.php:490
3075
+ #: widgets/advanced-accordion/advanced-accordion.php:664
3076
+ #: widgets/advanced-accordion/advanced-accordion.php:725
3077
+ #: widgets/advanced-tab/advanced-tab.php:512
3078
+ #: widgets/advanced-tab/advanced-tab.php:725
3079
+ #: widgets/advanced-tab/advanced-tab.php:797
3080
+ #: widgets/advanced-tab/advanced-tab.php:972
3081
+ #: widgets/advanced-tab/advanced-tab.php:1093
3082
+ #: widgets/advanced-tab/advanced-tab.php:1253
3083
+ #: widgets/advanced-tab/advanced-tab.php:1537
3084
+ #: widgets/advanced-tab/advanced-tab.php:1561
3085
+ #: widgets/advanced-tab/advanced-tab.php:1777
3086
+ #: widgets/advanced-tab/advanced-tab.php:1801
3087
+ #: widgets/advanced-toggle/advanced-toggle.php:225
3088
+ #: widgets/blog-posts/blog-posts.php:563 widgets/blog-posts/blog-posts.php:988
3089
+ #: widgets/blog-posts/blog-posts.php:1059
3090
+ #: widgets/business-hours/business-hours.php:208
3091
+ #: widgets/business-hours/business-hours.php:269
3092
+ #: widgets/business-hours/business-hours.php:333
3093
+ #: widgets/caldera-forms/caldera-forms.php:307
3094
+ #: widgets/caldera-forms/caldera-forms.php:362
3095
+ #: widgets/caldera-forms/caldera-forms.php:417
3096
+ #: widgets/caldera-forms/caldera-forms.php:770
3097
+ #: widgets/caldera-forms/caldera-forms.php:829
3098
+ #: widgets/client-logo/client-logo.php:451
3099
+ #: widgets/client-logo/client-logo.php:527
3100
+ #: widgets/client-logo/client-logo.php:548
3101
+ #: widgets/client-logo/client-logo.php:561
3102
+ #: widgets/client-logo/client-logo.php:1195
3103
+ #: widgets/client-logo/client-logo.php:1214
3104
+ #: widgets/contact-form7/contact-form7.php:307
3105
+ #: widgets/contact-form7/contact-form7.php:362
3106
+ #: widgets/contact-form7/contact-form7.php:417
3107
+ #: widgets/contact-form7/contact-form7.php:770
3108
+ #: widgets/contact-form7/contact-form7.php:829
3109
+ #: widgets/countdown-timer/countdown-timer.php:424
3110
+ #: widgets/countdown-timer/countdown-timer.php:487
3111
+ #: widgets/countdown-timer/countdown-timer.php:650
3112
+ #: widgets/countdown-timer/countdown-timer.php:744
3113
+ #: widgets/countdown-timer/countdown-timer.php:926
3114
+ #: widgets/countdown-timer/countdown-timer.php:1019
3115
+ #: widgets/countdown-timer/countdown-timer.php:1199
3116
+ #: widgets/countdown-timer/countdown-timer.php:1292
3117
+ #: widgets/countdown-timer/countdown-timer.php:1475
3118
+ #: widgets/countdown-timer/countdown-timer.php:1567
3119
+ #: widgets/countdown-timer/countdown-timer.php:1629
3120
+ #: widgets/drop-caps/drop-caps.php:177 widgets/dual-button/dual-button.php:484
3121
+ #: widgets/dual-button/dual-button.php:603
3122
+ #: widgets/dual-button/dual-button.php:705
3123
+ #: widgets/dual-button/dual-button.php:822
3124
+ #: widgets/dual-button/dual-button.php:903
3125
+ #: widgets/facebook-feed/facebook-feed.php:340
3126
+ #: widgets/facebook-feed/facebook-feed.php:375
3127
+ #: widgets/facebook-feed/facebook-feed.php:894 widgets/faq/faq.php:121
3128
+ #: widgets/funfact/funfact.php:985 widgets/funfact/funfact.php:994
3129
+ #: widgets/funfact/funfact.php:1139 widgets/gallery/gallery.php:2248
3130
+ #: widgets/gallery/gallery.php:2360 widgets/gallery/gallery.php:2402
3131
+ #: widgets/gallery/gallery.php:2490 widgets/gallery/gallery.php:2793
3132
+ #: widgets/gallery/gallery.php:2846
3133
+ #: widgets/header-offcanvas/header-offcanvas.php:519
3134
+ #: widgets/hotspot/hotspot.php:444 widgets/icon-box/icon-box.php:1074
3135
+ #: widgets/icon-box/icon-box.php:1138 widgets/icon-box/icon-box.php:1211
3136
+ #: widgets/icon-box/icon-box.php:1280 widgets/icon-box/icon-box.php:1529
3137
+ #: widgets/image-accordion/image-accordion.php:562
3138
+ #: widgets/image-box/image-box.php:546 widgets/image-box/image-box.php:665
3139
+ #: widgets/image-box/image-box.php:830 widgets/image-box/image-box.php:882
3140
+ #: widgets/image-box/image-box.php:1057 widgets/image-box/image-box.php:1332
3141
+ #: widgets/image-box/image-box.php:1396
3142
+ #: widgets/instagram-feed/instagram-feed.php:313
3143
+ #: widgets/instagram-feed/instagram-feed.php:980
3144
+ #: widgets/mail-chimp/mail-chimp.php:601 widgets/mail-chimp/mail-chimp.php:960
3145
+ #: widgets/mail-chimp/mail-chimp.php:994 widgets/mail-chimp/mail-chimp.php:1106
3146
+ #: widgets/motion-text/motion-text.php:325 widgets/nav-menu/nav-menu.php:216
3147
+ #: widgets/nav-menu/nav-menu.php:951 widgets/nav-menu/nav-menu.php:993
3148
+ #: widgets/nav-menu/nav-menu.php:1157 widgets/nav-menu/nav-menu.php:1202
3149
+ #: widgets/page-list/page-list.php:289 widgets/page-list/page-list.php:480
3150
+ #: widgets/piechart/piechart.php:356 widgets/piechart/piechart.php:565
3151
+ #: widgets/piechart/piechart.php:584 widgets/post-tab/post-tab.php:118
3152
+ #: widgets/post-tab/post-tab.php:224 widgets/post-tab/post-tab.php:291
3153
+ #: widgets/progressbar/progressbar.php:140 widgets/tab/tab.php:522
3154
+ #: widgets/tab/tab.php:736 widgets/tab/tab.php:808 widgets/tab/tab.php:983
3155
+ #: widgets/tab/tab.php:1104 widgets/tab/tab.php:1264 widgets/tab/tab.php:1548
3156
+ #: widgets/tab/tab.php:1572 widgets/tab/tab.php:1788 widgets/tab/tab.php:1812
3157
+ #: widgets/table/table.php:1093 widgets/table/table.php:1126
3158
+ #: widgets/table/table.php:1158 widgets/tablepress/tablepress.php:299
3159
+ #: widgets/tablepress/tablepress.php:486 widgets/tablepress/tablepress.php:533
3160
+ #: widgets/tablepress/tablepress.php:620 widgets/team/team.php:551
3161
+ #: widgets/team/team.php:576 widgets/team/team.php:717
3162
+ #: widgets/team/team.php:883 widgets/team/team.php:1730
3163
+ #: widgets/team/team.php:1764 widgets/testimonial/testimonial.php:365
3164
+ #: widgets/testimonial/testimonial.php:577
3165
+ #: widgets/testimonial/testimonial.php:694
3166
+ #: widgets/testimonial/testimonial.php:1107
3167
+ #: widgets/testimonial/testimonial.php:1175
3168
+ #: widgets/testimonial/testimonial.php:1559
3169
+ #: widgets/testimonial/testimonial.php:1853
3170
+ #: widgets/testimonial/testimonial.php:1872
3171
+ #: widgets/testimonial/testimonial.php:2140
3172
+ #: widgets/testimonial/testimonial.php:2190 widgets/timeline/timeline.php:1053
3173
+ #: widgets/timeline/timeline.php:1104 widgets/twitter-feed/twitter-feed.php:478
3174
+ #: widgets/vertical-menu/vertical-menu.php:207
3175
+ #: widgets/vertical-menu/vertical-menu.php:262
3176
+ #: widgets/vertical-menu/vertical-menu.php:287
3177
+ #: widgets/woo-product-carousel/woo-product-carousel.php:508
3178
+ #: widgets/woo-product-carousel/woo-product-carousel.php:586
3179
+ #: widgets/woo-product-carousel/woo-product-carousel.php:711
3180
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1018
3181
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1770
3182
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1867
3183
+ #: widgets/woo-product-list/woo-product-list.php:338
3184
+ #: widgets/woo-product-list/woo-product-list.php:471
3185
+ #: widgets/woo-product-list/woo-product-list.php:873
3186
+ #: widgets/woo-product-list/woo-product-list.php:1181
3187
+ msgid "Background"
3188
+ msgstr ""
3189
+
3190
+ #: widgets/accordion/accordion.php:267
3191
+ #: widgets/advanced-accordion/advanced-accordion.php:264
3192
+ #: widgets/business-hours/business-hours.php:107 widgets/chart/chart.php:105
3193
+ #: widgets/chart/chart.php:132 widgets/chart/chart.php:213
3194
+ #: widgets/chart/chart.php:240 widgets/chart/chart.php:649
3195
+ #: widgets/creative-button/creative-button.php:314
3196
+ #: widgets/creative-button/creative-button.php:349
3197
+ #: widgets/creative-button/creative-button.php:363
3198
+ #: widgets/creative-button/creative-button.php:377
3199
+ #: widgets/creative-button/creative-button.php:391
3200
+ #: widgets/creative-button/creative-button.php:405
3201
+ #: widgets/creative-button/creative-button.php:419
3202
+ #: widgets/creative-button/creative-button.php:433
3203
+ #: widgets/creative-button/creative-button.php:446
3204
+ #: widgets/creative-button/creative-button.php:485
3205
+ #: widgets/gallery/gallery.php:1108 widgets/gallery/gallery.php:1183
3206
+ #: widgets/gallery/gallery.php:1298 widgets/gallery/gallery.php:1372
3207
+ #: widgets/gallery/gallery.php:1487 widgets/gallery/gallery.php:1561
3208
+ #: widgets/gallery/gallery.php:1656 widgets/gallery/gallery.php:1805
3209
+ #: widgets/gallery/gallery.php:2678 widgets/gallery/gallery.php:2777
3210
+ #: widgets/header-offcanvas/header-offcanvas.php:149
3211
+ #: widgets/header-offcanvas/header-offcanvas.php:181
3212
+ #: widgets/header-offcanvas/header-offcanvas.php:344
3213
+ #: widgets/header-offcanvas/header-offcanvas.php:376
3214
+ #: widgets/header-search/header-search.php:122
3215
+ #: widgets/header-search/header-search.php:152 widgets/hotspot/hotspot.php:548
3216
+ #: widgets/icon-box/icon-box.php:598
3217
+ #: widgets/instagram-feed/instagram-feed.php:1122
3218
+ #: widgets/instagram-feed/instagram-feed.php:1164
3219
+ #: widgets/mail-chimp/mail-chimp.php:1268
3220
+ #: widgets/mail-chimp/mail-chimp.php:1304
3221
+ #: widgets/ninja-forms/ninja-forms.php:283
3222
+ #: widgets/ninja-forms/ninja-forms.php:462
3223
+ #: widgets/ninja-forms/ninja-forms.php:686
3224
+ #: widgets/ninja-forms/ninja-forms.php:764 widgets/post-list/post-list.php:685
3225
+ #: widgets/post-list/post-list.php:729 widgets/pricing/pricing.php:2241
3226
+ #: widgets/progressbar/progressbar.php:358
3227
+ #: widgets/progressbar/progressbar.php:371
3228
+ #: widgets/social-share/social-share.php:259
3229
+ #: widgets/social-share/social-share.php:320 widgets/social/social.php:221
3230
+ #: widgets/social/social.php:282 widgets/table/table.php:71
3231
+ #: widgets/table/table.php:347 widgets/table/table.php:1745
3232
+ #: widgets/table/table.php:1778 widgets/table/table.php:1810
3233
+ #: widgets/team/team.php:255 widgets/team/team.php:317
3234
+ #: widgets/team/team.php:1139 widgets/team/team.php:1178
3235
+ #: widgets/team/team.php:2052 widgets/twitter-feed/twitter-feed.php:389
3236
+ #: widgets/twitter-feed/twitter-feed.php:431 widgets/we-forms/we-forms.php:194
3237
+ #: widgets/we-forms/we-forms.php:230 widgets/we-forms/we-forms.php:519
3238
+ #: widgets/we-forms/we-forms.php:550
3239
+ #: widgets/woo-category-list/woo-category-list.php:255
3240
+ #: widgets/woo-category-list/woo-category-list.php:316
3241
+ #: widgets/woo-mini-cart/woo-mini-cart.php:324
3242
+ #: widgets/woo-mini-cart/woo-mini-cart.php:816
3243
+ #: widgets/woo-mini-cart/woo-mini-cart.php:860
3244
+ #: widgets/woo-product-carousel/woo-product-carousel.php:999
3245
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1247
3246
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1278
3247
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1665
3248
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1708
3249
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1993
3250
+ #: widgets/woo-product-list/woo-product-list.php:543
3251
+ #: widgets/woo-product-list/woo-product-list.php:683
3252
+ #: widgets/woo-product-list/woo-product-list.php:1162
3253
+ #: widgets/woo-product-list/woo-product-list.php:1411
3254
+ #: widgets/woo-product-list/woo-product-list.php:1442
3255
+ #: widgets/woo-product-list/woo-product-list.php:1999
3256
+ #: widgets/woo-product-list/woo-product-list.php:2042
3257
+ #: widgets/wp-forms/wp-forms.php:134 widgets/wp-forms/wp-forms.php:498
3258
+ #: widgets/wp-forms/wp-forms.php:587
3259
+ msgid "Background Color"
3260
+ msgstr ""
3261
+
3262
+ #: widgets/accordion/accordion.php:279 widgets/accordion/accordion.php:369
3263
+ #: widgets/advanced-accordion/advanced-accordion.php:276
3264
+ #: widgets/advanced-accordion/advanced-accordion.php:366
3265
+ #: widgets/chart/chart.php:114 widgets/chart/chart.php:140
3266
+ #: widgets/chart/chart.php:222 widgets/chart/chart.php:248
3267
+ #: widgets/gallery/gallery.php:1207 widgets/gallery/gallery.php:1396
3268
+ #: widgets/gallery/gallery.php:1585 widgets/gallery/gallery.php:1817
3269
+ #: widgets/gallery/gallery.php:2809
3270
+ #: widgets/header-offcanvas/header-offcanvas.php:192
3271
+ #: widgets/header-offcanvas/header-offcanvas.php:387
3272
+ #: widgets/image-box/image-box.php:718
3273
+ #: widgets/instagram-feed/instagram-feed.php:1176
3274
+ #: widgets/ninja-forms/ninja-forms.php:788
3275
+ #: widgets/tablepress/tablepress.php:250 widgets/tablepress/tablepress.php:374
3276
+ #: widgets/tablepress/tablepress.php:509 widgets/tablepress/tablepress.php:556
3277
+ #: widgets/testimonial/testimonial.php:682
3278
+ #: widgets/twitter-feed/twitter-feed.php:443 widgets/we-forms/we-forms.php:561
3279
+ #: widgets/woo-category-list/woo-category-list.php:327
3280
+ #: widgets/woo-category-list/woo-category-list.php:476
3281
+ #: widgets/woo-mini-cart/woo-mini-cart.php:463
3282
+ #: widgets/woo-product-carousel/woo-product-carousel.php:520
3283
+ #: widgets/woo-product-carousel/woo-product-carousel.php:597
3284
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1289
3285
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1889
3286
+ #: widgets/woo-product-list/woo-product-list.php:482
3287
+ #: widgets/woo-product-list/woo-product-list.php:632
3288
+ #: widgets/woo-product-list/woo-product-list.php:730
3289
+ #: widgets/woo-product-list/woo-product-list.php:764
3290
+ #: widgets/woo-product-list/woo-product-list.php:1453
3291
+ #: widgets/wp-forms/wp-forms.php:611
3292
+ msgid "Border Color"
3293
+ msgstr ""
3294
+
3295
+ #: widgets/accordion/accordion.php:295 widgets/accordion/accordion.php:385
3296
+ #: widgets/accordion/accordion.php:555 widgets/accordion/accordion.php:564
3297
+ #: widgets/advanced-accordion/advanced-accordion.php:292
3298
+ #: widgets/advanced-accordion/advanced-accordion.php:382
3299
+ #: widgets/advanced-accordion/advanced-accordion.php:552
3300
+ #: widgets/advanced-accordion/advanced-accordion.php:561
3301
+ #: widgets/advanced-tab/advanced-tab.php:559
3302
+ #: widgets/advanced-tab/advanced-tab.php:734
3303
+ #: widgets/advanced-tab/advanced-tab.php:806
3304
+ #: widgets/advanced-tab/advanced-tab.php:1290
3305
+ #: widgets/advanced-tab/advanced-tab.php:1575
3306
+ #: widgets/advanced-tab/advanced-tab.php:1974
3307
+ #: widgets/advanced-tab/advanced-tab.php:2031
3308
+ #: widgets/blog-posts/blog-posts.php:807 widgets/blog-posts/blog-posts.php:1001
3309
+ #: widgets/blog-posts/blog-posts.php:1072
3310
+ #: widgets/blog-posts/blog-posts.php:1359
3311
+ #: widgets/blog-posts/blog-posts.php:2152
3312
+ #: widgets/business-hours/business-hours.php:230 widgets/button/button.php:278
3313
+ #: widgets/caldera-forms/caldera-forms.php:333
3314
+ #: widgets/caldera-forms/caldera-forms.php:388
3315
+ #: widgets/caldera-forms/caldera-forms.php:443
3316
+ #: widgets/caldera-forms/caldera-forms.php:792
3317
+ #: widgets/caldera-forms/caldera-forms.php:851
3318
+ #: widgets/client-logo/client-logo.php:681
3319
+ #: widgets/client-logo/client-logo.php:708
3320
+ #: widgets/client-logo/client-logo.php:889
3321
+ #: widgets/contact-form7/contact-form7.php:333
3322
+ #: widgets/contact-form7/contact-form7.php:388
3323
+ #: widgets/contact-form7/contact-form7.php:443
3324
+ #: widgets/contact-form7/contact-form7.php:792
3325
+ #: widgets/contact-form7/contact-form7.php:851
3326
+ #: widgets/countdown-timer/countdown-timer.php:434
3327
+ #: widgets/countdown-timer/countdown-timer.php:497
3328
+ #: widgets/countdown-timer/countdown-timer.php:667
3329
+ #: widgets/countdown-timer/countdown-timer.php:762
3330
+ #: widgets/countdown-timer/countdown-timer.php:943
3331
+ #: widgets/countdown-timer/countdown-timer.php:1035
3332
+ #: widgets/countdown-timer/countdown-timer.php:1216
3333
+ #: widgets/countdown-timer/countdown-timer.php:1308
3334
+ #: widgets/countdown-timer/countdown-timer.php:1492
3335
+ #: widgets/countdown-timer/countdown-timer.php:1583
3336
+ #: widgets/creative-button/creative-button.php:509
3337
+ #: widgets/creative-button/creative-button.php:518
3338
+ #: widgets/drop-caps/drop-caps.php:212 widgets/dual-button/dual-button.php:463
3339
+ #: widgets/dual-button/dual-button.php:582
3340
+ #: widgets/dual-button/dual-button.php:684
3341
+ #: widgets/dual-button/dual-button.php:801
3342
+ #: widgets/dual-button/dual-button.php:882
3343
+ #: widgets/facebook-feed/facebook-feed.php:295 widgets/faq/faq.php:131
3344
+ #: widgets/funfact/funfact.php:428 widgets/funfact/funfact.php:465
3345
+ #: widgets/funfact/funfact.php:559 widgets/funfact/funfact.php:614
3346
+ #: widgets/funfact/funfact.php:1024 widgets/gallery/gallery.php:484
3347
+ #: widgets/gallery/gallery.php:511 widgets/gallery/gallery.php:1133
3348
+ #: widgets/gallery/gallery.php:1323 widgets/gallery/gallery.php:1512
3349
+ #: widgets/gallery/gallery.php:1669 widgets/gallery/gallery.php:2691
3350
+ #: widgets/gallery/gallery.php:2889 widgets/hotspot/hotspot.php:600
3351
+ #: widgets/icon-box/icon-box.php:545 widgets/icon-box/icon-box.php:611
3352
+ #: widgets/icon-box/icon-box.php:1084 widgets/icon-box/icon-box.php:1148
3353
+ #: widgets/icon-box/icon-box.php:1246 widgets/icon-box/icon-box.php:1310
3354
+ #: widgets/image-accordion/image-accordion.php:306
3355
+ #: widgets/image-accordion/image-accordion.php:579
3356
+ #: widgets/image-accordion/image-accordion.php:590
3357
+ #: widgets/image-accordion/image-accordion.php:656
3358
+ #: widgets/image-accordion/image-accordion.php:666
3359
+ #: widgets/image-box/image-box.php:1048 widgets/image-box/image-box.php:1342
3360
+ #: widgets/image-box/image-box.php:1406
3361
+ #: widgets/image-comparison/image-comparison.php:193
3362
+ #: widgets/instagram-feed/instagram-feed.php:330
3363
+ #: widgets/instagram-feed/instagram-feed.php:1093
3364
+ #: widgets/mail-chimp/mail-chimp.php:626 widgets/mail-chimp/mail-chimp.php:865
3365
+ #: widgets/mail-chimp/mail-chimp.php:1164
3366
+ #: widgets/mail-chimp/mail-chimp.php:1277
3367
+ #: widgets/mail-chimp/mail-chimp.php:1313 widgets/nav-menu/nav-menu.php:672
3368
+ #: widgets/nav-menu/nav-menu.php:961 widgets/nav-menu/nav-menu.php:1003
3369
+ #: widgets/nav-menu/nav-menu.php:1167 widgets/nav-menu/nav-menu.php:1212
3370
+ #: widgets/ninja-forms/ninja-forms.php:340
3371
+ #: widgets/ninja-forms/ninja-forms.php:475
3372
+ #: widgets/ninja-forms/ninja-forms.php:709 widgets/page-list/page-list.php:471
3373
+ #: widgets/post-tab/post-tab.php:109 widgets/post-tab/post-tab.php:258
3374
+ #: widgets/post-tab/post-tab.php:325 widgets/pricing/pricing.php:937
3375
+ #: widgets/pricing/pricing.php:974 widgets/pricing/pricing.php:1065
3376
+ #: widgets/pricing/pricing.php:1120 widgets/social-share/social-share.php:271
3377
+ #: widgets/social-share/social-share.php:350 widgets/social/social.php:233
3378
+ #: widgets/social/social.php:312 widgets/tab/tab.php:471
3379
+ #: widgets/tab/tab.php:569 widgets/tab/tab.php:745 widgets/tab/tab.php:817
3380
+ #: widgets/tab/tab.php:1301 widgets/tab/tab.php:1586 widgets/tab/tab.php:1985
3381
+ #: widgets/table/table.php:801 widgets/table/table.php:851
3382
+ #: widgets/table/table.php:1001 widgets/table/table.php:1023
3383
+ #: widgets/table/table.php:1274 widgets/table/table.php:1686
3384
+ #: widgets/table/table.php:1974 widgets/table/table.php:2049
3385
+ #: widgets/table/table.php:2125 widgets/table/table.php:2617
3386
+ #: widgets/tablepress/tablepress.php:644 widgets/team/team.php:268
3387
+ #: widgets/team/team.php:347 widgets/team/team.php:677
3388
+ #: widgets/team/team.php:839 widgets/team/team.php:1151
3389
+ #: widgets/team/team.php:1190 widgets/team/team.php:2002
3390
+ #: widgets/team/team.php:2065 widgets/testimonial/testimonial.php:665
3391
+ #: widgets/testimonial/testimonial.php:1598
3392
+ #: widgets/testimonial/testimonial.php:2159
3393
+ #: widgets/testimonial/testimonial.php:2209 widgets/timeline/timeline.php:1041
3394
+ #: widgets/timeline/timeline.php:1092 widgets/twitter-feed/twitter-feed.php:360
3395
+ #: widgets/twitter-feed/twitter-feed.php:491
3396
+ #: widgets/vertical-menu/vertical-menu.php:385
3397
+ #: widgets/vertical-menu/vertical-menu.php:494
3398
+ #: widgets/woo-mini-cart/woo-mini-cart.php:216
3399
+ #: widgets/woo-mini-cart/woo-mini-cart.php:254
3400
+ #: widgets/woo-mini-cart/woo-mini-cart.php:337
3401
+ #: widgets/woo-mini-cart/woo-mini-cart.php:644
3402
+ #: widgets/woo-mini-cart/woo-mini-cart.php:829
3403
+ #: widgets/woo-mini-cart/woo-mini-cart.php:873
3404
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1078
3405
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1115
3406
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1142
3407
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1359
3408
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1677
3409
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1719
3410
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1790
3411
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2077
3412
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2628
3413
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2682
3414
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2815
3415
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2852
3416
+ #: widgets/woo-product-list/woo-product-list.php:350
3417
+ #: widgets/woo-product-list/woo-product-list.php:555
3418
+ #: widgets/woo-product-list/woo-product-list.php:695
3419
+ #: widgets/woo-product-list/woo-product-list.php:1305
3420
+ #: widgets/woo-product-list/woo-product-list.php:1523
3421
+ #: widgets/woo-product-list/woo-product-list.php:1801
3422
+ #: widgets/woo-product-list/woo-product-list.php:1838
3423
+ #: widgets/woo-product-list/woo-product-list.php:2011
3424
+ #: widgets/woo-product-list/woo-product-list.php:2053
3425
+ #: widgets/woo-product-list/woo-product-list.php:2416
3426
+ #: widgets/woo-product-list/woo-product-list.php:2470
3427
+ #: widgets/wp-forms/wp-forms.php:159 widgets/wp-forms/wp-forms.php:299
3428
+ #: widgets/wp-forms/wp-forms.php:532 widgets/wp-forms/wp-forms.php:651
3429
+ msgid "Border"
3430
+ msgstr ""
3431
+
3432
+ #: widgets/accordion/accordion.php:306 widgets/accordion/accordion.php:395
3433
+ #: widgets/accordion/accordion.php:502 widgets/accordion/accordion.php:572
3434
+ #: widgets/advanced-accordion/advanced-accordion.php:303
3435
+ #: widgets/advanced-accordion/advanced-accordion.php:392
3436
+ #: widgets/advanced-accordion/advanced-accordion.php:499
3437
+ #: widgets/advanced-accordion/advanced-accordion.php:569
3438
+ #: widgets/advanced-tab/advanced-tab.php:567
3439
+ #: widgets/advanced-tab/advanced-tab.php:824
3440
+ #: widgets/advanced-tab/advanced-tab.php:1698
3441
+ #: widgets/advanced-tab/advanced-tab.php:1981
3442
+ #: widgets/advanced-tab/advanced-tab.php:2038
3443
+ #: widgets/advanced-toggle/advanced-toggle.php:256
3444
+ #: widgets/advanced-toggle/advanced-toggle.php:292
3445
+ #: widgets/blog-posts/blog-posts.php:1009
3446
+ #: widgets/blog-posts/blog-posts.php:1080
3447
+ #: widgets/blog-posts/blog-posts.php:1369
3448
+ #: widgets/blog-posts/blog-posts.php:2396
3449
+ #: widgets/business-hours/business-hours.php:217
3450
+ #: widgets/business-hours/business-hours.php:278
3451
+ #: widgets/business-hours/business-hours.php:342 widgets/button/button.php:358
3452
+ #: widgets/caldera-forms/caldera-forms.php:319
3453
+ #: widgets/caldera-forms/caldera-forms.php:374
3454
+ #: widgets/caldera-forms/caldera-forms.php:429
3455
+ #: widgets/caldera-forms/caldera-forms.php:608
3456
+ #: widgets/client-logo/client-logo.php:576
3457
+ #: widgets/client-logo/client-logo.php:897
3458
+ #: widgets/contact-form7/contact-form7.php:319
3459
+ #: widgets/contact-form7/contact-form7.php:374
3460
+ #: widgets/contact-form7/contact-form7.php:429
3461
+ #: widgets/contact-form7/contact-form7.php:608
3462
+ #: widgets/countdown-timer/countdown-timer.php:441
3463
+ #: widgets/countdown-timer/countdown-timer.php:506
3464
+ #: widgets/countdown-timer/countdown-timer.php:680
3465
+ #: widgets/countdown-timer/countdown-timer.php:774
3466
+ #: widgets/countdown-timer/countdown-timer.php:956
3467
+ #: widgets/countdown-timer/countdown-timer.php:1048
3468
+ #: widgets/countdown-timer/countdown-timer.php:1229
3469
+ #: widgets/countdown-timer/countdown-timer.php:1321
3470
+ #: widgets/countdown-timer/countdown-timer.php:1505
3471
+ #: widgets/countdown-timer/countdown-timer.php:1596
3472
+ #: widgets/creative-button/creative-button.php:526
3473
+ #: widgets/drop-caps/drop-caps.php:220 widgets/dual-button/dual-button.php:471
3474
+ #: widgets/dual-button/dual-button.php:590
3475
+ #: widgets/dual-button/dual-button.php:692
3476
+ #: widgets/dual-button/dual-button.php:809
3477
+ #: widgets/dual-button/dual-button.php:890
3478
+ #: widgets/facebook-feed/facebook-feed.php:318 widgets/faq/faq.php:230
3479
+ #: widgets/funfact/funfact.php:435 widgets/funfact/funfact.php:472
3480
+ #: widgets/funfact/funfact.php:567 widgets/funfact/funfact.php:624
3481
+ #: widgets/funfact/funfact.php:1032 widgets/gallery/gallery.php:453
3482
+ #: widgets/gallery/gallery.php:1143 widgets/gallery/gallery.php:1333
3483
+ #: widgets/gallery/gallery.php:1522 widgets/gallery/gallery.php:1679
3484
+ #: widgets/gallery/gallery.php:2701 widgets/gallery/gallery.php:2861
3485
+ #: widgets/heading/heading.php:447 widgets/hotspot/hotspot.php:578
3486
+ #: widgets/icon-box/icon-box.php:555 widgets/icon-box/icon-box.php:626
3487
+ #: widgets/icon-box/icon-box.php:1091 widgets/icon-box/icon-box.php:1155
3488
+ #: widgets/icon-box/icon-box.php:1253 widgets/icon-box/icon-box.php:1317
3489
+ #: widgets/icon-box/icon-box.php:1509
3490
+ #: widgets/image-accordion/image-accordion.php:314
3491
+ #: widgets/image-accordion/image-accordion.php:614
3492
+ #: widgets/image-accordion/image-accordion.php:673
3493
+ #: widgets/image-box/image-box.php:1349 widgets/image-box/image-box.php:1413
3494
+ #: widgets/image-comparison/image-comparison.php:203
3495
+ #: widgets/image-comparison/image-comparison.php:560
3496
+ #: widgets/instagram-feed/instagram-feed.php:350
3497
+ #: widgets/instagram-feed/instagram-feed.php:1063
3498
+ #: widgets/mail-chimp/mail-chimp.php:613 widgets/mail-chimp/mail-chimp.php:825
3499
+ #: widgets/mail-chimp/mail-chimp.php:1184
3500
+ #: widgets/mail-chimp/mail-chimp.php:1230 widgets/nav-menu/nav-menu.php:745
3501
+ #: widgets/nav-menu/nav-menu.php:882 widgets/nav-menu/nav-menu.php:1117
3502
+ #: widgets/ninja-forms/ninja-forms.php:351
3503
+ #: widgets/ninja-forms/ninja-forms.php:719 widgets/post-list/post-list.php:696
3504
+ #: widgets/post-list/post-list.php:740 widgets/post-tab/post-tab.php:236
3505
+ #: widgets/post-tab/post-tab.php:303 widgets/pricing/pricing.php:635
3506
+ #: widgets/pricing/pricing.php:868 widgets/pricing/pricing.php:944
3507
+ #: widgets/pricing/pricing.php:981 widgets/pricing/pricing.php:1073
3508
+ #: widgets/pricing/pricing.php:1130 widgets/pricing/pricing.php:1640
3509
+ #: widgets/pricing/pricing.php:2173 widgets/progressbar/progressbar.php:181
3510
+ #: widgets/progressbar/progressbar.php:286 widgets/tab/tab.php:478
3511
+ #: widgets/tab/tab.php:577 widgets/tab/tab.php:835 widgets/tab/tab.php:1709
3512
+ #: widgets/tab/tab.php:1992 widgets/table/table.php:988
3513
+ #: widgets/table/table.php:1261 widgets/table/table.php:1508
3514
+ #: widgets/table/table.php:1694 widgets/table/table.php:2133
3515
+ #: widgets/table/table.php:2278 widgets/table/table.php:2504
3516
+ #: widgets/team/team.php:685 widgets/team/team.php:983
3517
+ #: widgets/team/team.php:2012 widgets/team/team.php:2073
3518
+ #: widgets/testimonial/testimonial.php:645
3519
+ #: widgets/testimonial/testimonial.php:1119
3520
+ #: widgets/testimonial/testimonial.php:1149
3521
+ #: widgets/testimonial/testimonial.php:2032 widgets/timeline/timeline.php:470
3522
+ #: widgets/timeline/timeline.php:1002 widgets/twitter-feed/twitter-feed.php:330
3523
+ #: widgets/twitter-feed/twitter-feed.php:508
3524
+ #: widgets/twitter-feed/twitter-feed.php:1184
3525
+ #: widgets/vertical-menu/vertical-menu.php:228
3526
+ #: widgets/vertical-menu/vertical-menu.php:305 widgets/video/video.php:651
3527
+ #: widgets/we-forms/we-forms.php:123 widgets/we-forms/we-forms.php:462
3528
+ #: widgets/woo-category-list/woo-category-list.php:287
3529
+ #: widgets/woo-category-list/woo-category-list.php:338
3530
+ #: widgets/woo-category-list/woo-category-list.php:455
3531
+ #: widgets/woo-category-list/woo-category-list.php:490
3532
+ #: widgets/woo-mini-cart/woo-mini-cart.php:167
3533
+ #: widgets/woo-mini-cart/woo-mini-cart.php:347
3534
+ #: widgets/woo-mini-cart/woo-mini-cart.php:652
3535
+ #: widgets/woo-mini-cart/woo-mini-cart.php:746
3536
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1030
3537
+ #: widgets/woo-product-carousel/woo-product-carousel.php:531
3538
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1037
3539
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1153
3540
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1372
3541
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1613
3542
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1801
3543
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2087
3544
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2282
3545
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2543
3546
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2761
3547
+ #: widgets/woo-product-list/woo-product-list.php:361
3548
+ #: widgets/woo-product-list/woo-product-list.php:566
3549
+ #: widgets/woo-product-list/woo-product-list.php:706
3550
+ #: widgets/woo-product-list/woo-product-list.php:1200
3551
+ #: widgets/woo-product-list/woo-product-list.php:1316
3552
+ #: widgets/woo-product-list/woo-product-list.php:1536
3553
+ #: widgets/woo-product-list/woo-product-list.php:1747
3554
+ #: widgets/woo-product-list/woo-product-list.php:1947
3555
+ #: widgets/woo-product-list/woo-product-list.php:2331
3556
+ #: widgets/wp-forms/wp-forms.php:170 widgets/wp-forms/wp-forms.php:542
3557
+ msgid "Border Radius"
3558
+ msgstr ""
3559
+
3560
+ #: widgets/accordion/accordion.php:321 widgets/accordion/accordion.php:411
3561
+ #: widgets/accordion/accordion.php:585
3562
+ #: widgets/advanced-accordion/advanced-accordion.php:318
3563
+ #: widgets/advanced-accordion/advanced-accordion.php:408
3564
+ #: widgets/advanced-accordion/advanced-accordion.php:582
3565
+ #: widgets/advanced-tab/advanced-tab.php:579
3566
+ #: widgets/advanced-tab/advanced-tab.php:759
3567
+ #: widgets/advanced-tab/advanced-tab.php:814
3568
+ #: widgets/advanced-tab/advanced-tab.php:1993
3569
+ #: widgets/advanced-tab/advanced-tab.php:2050
3570
+ #: widgets/advanced-toggle/advanced-toggle.php:248
3571
+ #: widgets/advanced-toggle/advanced-toggle.php:306
3572
+ #: widgets/blog-posts/blog-posts.php:1022
3573
+ #: widgets/blog-posts/blog-posts.php:1093
3574
+ #: widgets/caldera-forms/caldera-forms.php:342
3575
+ #: widgets/caldera-forms/caldera-forms.php:397
3576
+ #: widgets/caldera-forms/caldera-forms.php:452
3577
+ #: widgets/caldera-forms/caldera-forms.php:783
3578
+ #: widgets/caldera-forms/caldera-forms.php:842
3579
+ #: widgets/client-logo/client-logo.php:672
3580
+ #: widgets/client-logo/client-logo.php:699
3581
+ #: widgets/contact-form7/contact-form7.php:342
3582
+ #: widgets/contact-form7/contact-form7.php:397
3583
+ #: widgets/contact-form7/contact-form7.php:452
3584
+ #: widgets/contact-form7/contact-form7.php:783
3585
+ #: widgets/contact-form7/contact-form7.php:842
3586
+ #: widgets/countdown-timer/countdown-timer.php:454
3587
+ #: widgets/countdown-timer/countdown-timer.php:520
3588
+ #: widgets/countdown-timer/countdown-timer.php:699
3589
+ #: widgets/countdown-timer/countdown-timer.php:792
3590
+ #: widgets/countdown-timer/countdown-timer.php:975
3591
+ #: widgets/countdown-timer/countdown-timer.php:1065
3592
+ #: widgets/countdown-timer/countdown-timer.php:1248
3593
+ #: widgets/countdown-timer/countdown-timer.php:1338
3594
+ #: widgets/countdown-timer/countdown-timer.php:1524
3595
+ #: widgets/countdown-timer/countdown-timer.php:1613
3596
+ #: widgets/dual-button/dual-button.php:495
3597
+ #: widgets/dual-button/dual-button.php:614
3598
+ #: widgets/dual-button/dual-button.php:716
3599
+ #: widgets/dual-button/dual-button.php:833
3600
+ #: widgets/dual-button/dual-button.php:914
3601
+ #: widgets/facebook-feed/facebook-feed.php:357
3602
+ #: widgets/facebook-feed/facebook-feed.php:392 widgets/funfact/funfact.php:447
3603
+ #: widgets/funfact/funfact.php:484 widgets/funfact/funfact.php:1016
3604
+ #: widgets/gallery/gallery.php:475 widgets/gallery/gallery.php:502
3605
+ #: widgets/gallery/gallery.php:1165 widgets/gallery/gallery.php:1229
3606
+ #: widgets/gallery/gallery.php:1355 widgets/gallery/gallery.php:1418
3607
+ #: widgets/gallery/gallery.php:1544 widgets/gallery/gallery.php:1607
3608
+ #: widgets/gallery/gallery.php:2877 widgets/hotspot/hotspot.php:591
3609
+ #: widgets/icon-box/icon-box.php:1238 widgets/icon-box/icon-box.php:1302
3610
+ #: widgets/icon-box/icon-box.php:1539 widgets/image-box/image-box.php:556
3611
+ #: widgets/image-box/image-box.php:821 widgets/image-box/image-box.php:873
3612
+ #: widgets/instagram-feed/instagram-feed.php:342
3613
+ #: widgets/instagram-feed/instagram-feed.php:1135
3614
+ #: widgets/instagram-feed/instagram-feed.php:1189
3615
+ #: widgets/mail-chimp/mail-chimp.php:635 widgets/mail-chimp/mail-chimp.php:856
3616
+ #: widgets/nav-menu/nav-menu.php:788 widgets/piechart/piechart.php:544
3617
+ #: widgets/post-tab/post-tab.php:249 widgets/post-tab/post-tab.php:316
3618
+ #: widgets/pricing/pricing.php:956 widgets/pricing/pricing.php:993
3619
+ #: widgets/tab/tab.php:490 widgets/tab/tab.php:589 widgets/tab/tab.php:770
3620
+ #: widgets/tab/tab.php:825 widgets/tab/tab.php:2004
3621
+ #: widgets/table/table.php:2524 widgets/testimonial/testimonial.php:1610
3622
+ #: widgets/testimonial/testimonial.php:2150
3623
+ #: widgets/testimonial/testimonial.php:2200
3624
+ #: widgets/twitter-feed/twitter-feed.php:402
3625
+ #: widgets/twitter-feed/twitter-feed.php:456
3626
+ #: widgets/twitter-feed/twitter-feed.php:500
3627
+ #: widgets/vertical-menu/vertical-menu.php:297 widgets/video/video.php:679
3628
+ msgid "Box Shadow"
3629
+ msgstr ""
3630
+
3631
+ #: widgets/accordion/accordion.php:331
3632
+ #: widgets/advanced-accordion/advanced-accordion.php:328
3633
+ #: widgets/header-offcanvas/header-offcanvas.php:91
3634
+ #: widgets/header-offcanvas/header-offcanvas.php:324
3635
+ msgid "Closed"
3636
+ msgstr ""
3637
+
3638
+ #: widgets/accordion/accordion.php:430 widgets/accordion/accordion.php:514
3639
+ #: widgets/advanced-accordion/advanced-accordion.php:427
3640
+ #: widgets/advanced-accordion/advanced-accordion.php:511
3641
+ #: widgets/advanced-tab/advanced-tab.php:520
3642
+ #: widgets/advanced-tab/advanced-tab.php:671
3643
+ #: widgets/advanced-tab/advanced-tab.php:1946
3644
+ #: widgets/advanced-tab/advanced-tab.php:2011
3645
+ #: widgets/advanced-toggle/advanced-toggle.php:234
3646
+ #: widgets/advanced-toggle/advanced-toggle.php:269
3647
+ #: widgets/blog-posts/blog-posts.php:839 widgets/blog-posts/blog-posts.php:1344
3648
+ #: widgets/blog-posts/blog-posts.php:2207
3649
+ #: widgets/business-hours/business-hours.php:194
3650
+ #: widgets/business-hours/business-hours.php:290
3651
+ #: widgets/business-hours/business-hours.php:354 widgets/button/button.php:180
3652
+ #: widgets/caldera-forms/caldera-forms.php:154
3653
+ #: widgets/caldera-forms/caldera-forms.php:277
3654
+ #: widgets/caldera-forms/caldera-forms.php:620 widgets/chart/chart.php:516
3655
+ #: widgets/chart/chart.php:576 widgets/chart/chart.php:803
3656
+ #: widgets/client-logo/client-logo.php:460
3657
+ #: widgets/client-logo/client-logo.php:647
3658
+ #: widgets/client-logo/client-logo.php:876
3659
+ #: widgets/contact-form7/contact-form7.php:153
3660
+ #: widgets/contact-form7/contact-form7.php:277
3661
+ #: widgets/contact-form7/contact-form7.php:620
3662
+ #: widgets/creative-button/creative-button.php:260
3663
+ #: widgets/creative-button/creative-button.php:589
3664
+ #: widgets/drop-caps/drop-caps.php:186 widgets/dual-button/dual-button.php:503
3665
+ #: widgets/dual-button/dual-button.php:724
3666
+ #: widgets/facebook-feed/facebook-feed.php:303
3667
+ #: widgets/facebook-feed/facebook-feed.php:881 widgets/funfact/funfact.php:682
3668
+ #: widgets/funfact/funfact.php:852 widgets/funfact/funfact.php:1003
3669
+ #: widgets/gallery/gallery.php:1087 widgets/gallery/gallery.php:1277
3670
+ #: widgets/gallery/gallery.php:1466 widgets/gallery/gallery.php:2713
3671
+ #: widgets/gallery/gallery.php:2900 widgets/header-info/header-info.php:128
3672
+ #: widgets/header-offcanvas/header-offcanvas.php:286
3673
+ #: widgets/header-offcanvas/header-offcanvas.php:455
3674
+ #: widgets/header-search/header-search.php:221 widgets/heading/heading.php:411
3675
+ #: widgets/hotspot/hotspot.php:453 widgets/icon-box/icon-box.php:693
3676
+ #: widgets/icon-box/icon-box.php:997 widgets/icon-box/icon-box.php:1219
3677
+ #: widgets/icon-box/icon-box.php:1288 widgets/icon-box/icon-box.php:1490
3678
+ #: widgets/image-accordion/image-accordion.php:281
3679
+ #: widgets/image-accordion/image-accordion.php:461
3680
+ #: widgets/image-accordion/image-accordion.php:512
3681
+ #: widgets/image-box/image-box.php:919 widgets/image-box/image-box.php:1066
3682
+ #: widgets/image-box/image-box.php:1269
3683
+ #: widgets/image-comparison/image-comparison.php:215
3684
+ #: widgets/image-comparison/image-comparison.php:303
3685
+ #: widgets/image-comparison/image-comparison.php:363
3686
+ #: widgets/instagram-feed/instagram-feed.php:500
3687
+ #: widgets/instagram-feed/instagram-feed.php:671
3688
+ #: widgets/instagram-feed/instagram-feed.php:1051
3689
+ #: widgets/mail-chimp/mail-chimp.php:643 widgets/mail-chimp/mail-chimp.php:837
3690
+ #: widgets/mail-chimp/mail-chimp.php:1172
3691
+ #: widgets/mail-chimp/mail-chimp.php:1206 widgets/nav-menu/nav-menu.php:238
3692
+ #: widgets/nav-menu/nav-menu.php:838 widgets/nav-menu/nav-menu.php:1053
3693
+ #: widgets/nav-menu/nav-menu.php:1325 widgets/ninja-forms/ninja-forms.php:421
3694
+ #: widgets/ninja-forms/ninja-forms.php:731 widgets/page-list/page-list.php:344
3695
+ #: widgets/page-list/page-list.php:446 widgets/page-list/page-list.php:847
3696
+ #: widgets/piechart/piechart.php:365 widgets/post-list/post-list.php:638
3697
+ #: widgets/post-tab/post-tab.php:142 widgets/post-tab/post-tab.php:186
3698
+ #: widgets/pricing/pricing.php:517 widgets/pricing/pricing.php:754
3699
+ #: widgets/pricing/pricing.php:1195 widgets/pricing/pricing.php:1299
3700
+ #: widgets/pricing/pricing.php:1935 widgets/pricing/pricing.php:2060
3701
+ #: widgets/progressbar/progressbar.php:193
3702
+ #: widgets/social-share/social-share.php:645 widgets/social/social.php:462
3703
+ #: widgets/tab/tab.php:451 widgets/tab/tab.php:530 widgets/tab/tab.php:682
3704
+ #: widgets/tab/tab.php:1957 widgets/table/table.php:762
3705
+ #: widgets/table/table.php:859 widgets/table/table.php:1313
3706
+ #: widgets/table/table.php:1604 widgets/table/table.php:1666
3707
+ #: widgets/table/table.php:1949 widgets/table/table.php:2086
3708
+ #: widgets/table/table.php:2466 widgets/tablepress/tablepress.php:389
3709
+ #: widgets/tablepress/tablepress.php:631 widgets/team/team.php:652
3710
+ #: widgets/team/team.php:971 widgets/team/team.php:1553
3711
+ #: widgets/team/team.php:2117 widgets/testimonial/testimonial.php:438
3712
+ #: widgets/testimonial/testimonial.php:599
3713
+ #: widgets/testimonial/testimonial.php:768
3714
+ #: widgets/testimonial/testimonial.php:1091 widgets/timeline/timeline.php:446
3715
+ #: widgets/twitter-feed/twitter-feed.php:318
3716
+ #: widgets/twitter-feed/twitter-feed.php:596
3717
+ #: widgets/vertical-menu/vertical-menu.php:216
3718
+ #: widgets/vertical-menu/vertical-menu.php:360
3719
+ #: widgets/vertical-menu/vertical-menu.php:481 widgets/video/video.php:337
3720
+ #: widgets/we-forms/we-forms.php:110 widgets/we-forms/we-forms.php:267
3721
+ #: widgets/we-forms/we-forms.php:433
3722
+ #: widgets/woo-category-list/woo-category-list.php:266
3723
+ #: widgets/woo-category-list/woo-category-list.php:554
3724
+ #: widgets/woo-category-list/woo-category-list.php:852
3725
+ #: widgets/woo-mini-cart/woo-mini-cart.php:112
3726
+ #: widgets/woo-mini-cart/woo-mini-cart.php:300
3727
+ #: widgets/woo-mini-cart/woo-mini-cart.php:378
3728
+ #: widgets/woo-mini-cart/woo-mini-cart.php:475
3729
+ #: widgets/woo-mini-cart/woo-mini-cart.php:784
3730
+ #: widgets/woo-mini-cart/woo-mini-cart.php:896
3731
+ #: widgets/woo-mini-cart/woo-mini-cart.php:999
3732
+ #: widgets/woo-product-carousel/woo-product-carousel.php:720
3733
+ #: widgets/woo-product-carousel/woo-product-carousel.php:974
3734
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1171
3735
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1393
3736
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1588
3737
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1813
3738
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2052
3739
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2257
3740
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2561
3741
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2706
3742
+ #: widgets/woo-product-list/woo-product-list.php:578
3743
+ #: widgets/woo-product-list/woo-product-list.php:718
3744
+ #: widgets/woo-product-list/woo-product-list.php:882
3745
+ #: widgets/woo-product-list/woo-product-list.php:1137
3746
+ #: widgets/woo-product-list/woo-product-list.php:1334
3747
+ #: widgets/woo-product-list/woo-product-list.php:1557
3748
+ #: widgets/woo-product-list/woo-product-list.php:1692
3749
+ #: widgets/woo-product-list/woo-product-list.php:1922
3750
+ #: widgets/woo-product-list/woo-product-list.php:2349
3751
+ #: widgets/wp-forms/wp-forms.php:254 widgets/wp-forms/wp-forms.php:353
3752
+ #: widgets/wp-forms/wp-forms.php:554
3753
+ msgid "Padding"
3754
+ msgstr ""
3755
+
3756
+ #: widgets/accordion/accordion.php:443
3757
+ #: widgets/advanced-accordion/advanced-accordion.php:440
3758
+ #: widgets/advanced-tab/advanced-tab.php:650
3759
+ #: widgets/caldera-forms/caldera-forms.php:218
3760
+ #: widgets/contact-form7/contact-form7.php:217
3761
+ #: widgets/countdown-timer/countdown-timer.php:295
3762
+ #: widgets/countdown-timer/countdown-timer.php:368
3763
+ #: widgets/countdown-timer/countdown-timer.php:578
3764
+ #: widgets/countdown-timer/countdown-timer.php:851
3765
+ #: widgets/countdown-timer/countdown-timer.php:1126
3766
+ #: widgets/countdown-timer/countdown-timer.php:1402
3767
+ #: widgets/facebook-feed/facebook-feed.php:260 widgets/funfact/funfact.php:397
3768
+ #: widgets/funfact/funfact.php:661
3769
+ #: widgets/instagram-feed/instagram-feed.php:362
3770
+ #: widgets/instagram-feed/instagram-feed.php:683
3771
+ #: widgets/mail-chimp/mail-chimp.php:703 widgets/pricing/pricing.php:906
3772
+ #: widgets/pricing/pricing.php:1174 widgets/progressbar/progressbar.php:208
3773
+ #: widgets/tab/tab.php:661 widgets/team/team.php:1264
3774
+ #: widgets/team/team.php:1350 widgets/team/team.php:1783
3775
+ #: widgets/team/team.php:1838 widgets/team/team.php:1889
3776
+ #: widgets/testimonial/testimonial.php:1064
3777
+ #: widgets/testimonial/testimonial.php:1397
3778
+ #: widgets/testimonial/testimonial.php:1518
3779
+ #: widgets/testimonial/testimonial.php:1634
3780
+ msgid "Margin Bottom"
3781
+ msgstr ""
3782
+
3783
+ #: widgets/accordion/accordion.php:604
3784
+ #: widgets/advanced-accordion/advanced-accordion.php:601
3785
+ #: widgets/advanced-tab/advanced-tab.php:539
3786
+ #: widgets/advanced-tab/advanced-tab.php:2075
3787
+ #: widgets/blog-posts/blog-posts.php:827 widgets/blog-posts/blog-posts.php:1670
3788
+ #: widgets/blog-posts/blog-posts.php:1776
3789
+ #: widgets/blog-posts/blog-posts.php:1865
3790
+ #: widgets/blog-posts/blog-posts.php:2160
3791
+ #: widgets/business-hours/business-hours.php:181
3792
+ #: widgets/caldera-forms/caldera-forms.php:100
3793
+ #: widgets/caldera-forms/caldera-forms.php:632
3794
+ #: widgets/client-logo/client-logo.php:471
3795
+ #: widgets/client-logo/client-logo.php:634
3796
+ #: widgets/contact-form7/contact-form7.php:99
3797
+ #: widgets/contact-form7/contact-form7.php:632
3798
+ #: widgets/countdown-timer/countdown-timer.php:463
3799
+ #: widgets/countdown-timer/countdown-timer.php:713
3800
+ #: widgets/countdown-timer/countdown-timer.php:990
3801
+ #: widgets/countdown-timer/countdown-timer.php:1262
3802
+ #: widgets/countdown-timer/countdown-timer.php:1538
3803
+ #: widgets/drop-caps/drop-caps.php:199 widgets/dual-button/dual-button.php:516
3804
+ #: widgets/dual-button/dual-button.php:737
3805
+ #: widgets/facebook-feed/facebook-feed.php:739 widgets/gallery/gallery.php:1075
3806
+ #: widgets/gallery/gallery.php:1265 widgets/gallery/gallery.php:1454
3807
+ #: widgets/header-info/header-info.php:116
3808
+ #: widgets/header-offcanvas/header-offcanvas.php:304
3809
+ #: widgets/header-offcanvas/header-offcanvas.php:473
3810
+ #: widgets/header-search/header-search.php:203 widgets/heading/heading.php:350
3811
+ #: widgets/heading/heading.php:519 widgets/heading/heading.php:615
3812
+ #: widgets/heading/heading.php:679 widgets/heading/heading.php:776
3813
+ #: widgets/heading/heading.php:853 widgets/hotspot/hotspot.php:668
3814
+ #: widgets/hotspot/hotspot.php:713 widgets/hotspot/hotspot.php:751
3815
+ #: widgets/icon-box/icon-box.php:820 widgets/icon-box/icon-box.php:908
3816
+ #: widgets/icon-box/icon-box.php:1008
3817
+ #: widgets/image-accordion/image-accordion.php:294
3818
+ #: widgets/image-box/image-box.php:601
3819
+ #: widgets/image-comparison/image-comparison.php:291
3820
+ #: widgets/image-comparison/image-comparison.php:351
3821
+ #: widgets/image-comparison/image-comparison.php:547
3822
+ #: widgets/mail-chimp/mail-chimp.php:568 widgets/mail-chimp/mail-chimp.php:924
3823
+ #: widgets/mail-chimp/mail-chimp.php:1218 widgets/nav-menu/nav-menu.php:1073
3824
+ #: widgets/nav-menu/nav-menu.php:1305 widgets/ninja-forms/ninja-forms.php:123
3825
+ #: widgets/ninja-forms/ninja-forms.php:743 widgets/page-list/page-list.php:330
3826
+ #: widgets/page-list/page-list.php:458 widgets/page-list/page-list.php:689
3827
+ #: widgets/page-list/page-list.php:748 widgets/piechart/piechart.php:301
3828
+ #: widgets/post-list/post-list.php:650 widgets/post-tab/post-tab.php:130
3829
+ #: widgets/post-tab/post-tab.php:174 widgets/pricing/pricing.php:529
3830
+ #: widgets/pricing/pricing.php:1317 widgets/pricing/pricing.php:1917
3831
+ #: widgets/social-share/social-share.php:627 widgets/social/social.php:482
3832
+ #: widgets/tab/tab.php:549 widgets/table/table.php:781
3833
+ #: widgets/table/table.php:1325 widgets/table/table.php:1616
3834
+ #: widgets/table/table.php:1961 widgets/table/table.php:2105
3835
+ #: widgets/table/table.php:2209 widgets/table/table.php:2485
3836
+ #: widgets/team/team.php:796 widgets/team/team.php:867
3837
+ #: widgets/team/team.php:959 widgets/team/team.php:1439
3838
+ #: widgets/team/team.php:1567 widgets/testimonial/testimonial.php:611
3839
+ #: widgets/testimonial/testimonial.php:843
3840
+ #: widgets/testimonial/testimonial.php:1300
3841
+ #: widgets/testimonial/testimonial.php:1484
3842
+ #: widgets/testimonial/testimonial.php:1620 widgets/timeline/timeline.php:514
3843
+ #: widgets/timeline/timeline.php:562 widgets/timeline/timeline.php:601
3844
+ #: widgets/timeline/timeline.php:649 widgets/timeline/timeline.php:721
3845
+ #: widgets/timeline/timeline.php:795 widgets/twitter-feed/twitter-feed.php:520
3846
+ #: widgets/twitter-feed/twitter-feed.php:838
3847
+ #: widgets/twitter-feed/twitter-feed.php:873
3848
+ #: widgets/twitter-feed/twitter-feed.php:955
3849
+ #: widgets/twitter-feed/twitter-feed.php:1196 widgets/we-forms/we-forms.php:255
3850
+ #: widgets/we-forms/we-forms.php:421
3851
+ #: widgets/woo-category-list/woo-category-list.php:542
3852
+ #: widgets/woo-category-list/woo-category-list.php:840
3853
+ #: widgets/woo-mini-cart/woo-mini-cart.php:312
3854
+ #: widgets/woo-mini-cart/woo-mini-cart.php:390
3855
+ #: widgets/woo-mini-cart/woo-mini-cart.php:772
3856
+ #: widgets/woo-mini-cart/woo-mini-cart.php:914
3857
+ #: widgets/woo-product-carousel/woo-product-carousel.php:732
3858
+ #: widgets/woo-product-carousel/woo-product-carousel.php:783
3859
+ #: widgets/woo-product-carousel/woo-product-carousel.php:868
3860
+ #: widgets/woo-product-carousel/woo-product-carousel.php:909
3861
+ #: widgets/woo-product-carousel/woo-product-carousel.php:986
3862
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1189
3863
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1414
3864
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1601
3865
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2064
3866
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2269
3867
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2579
3868
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2724
3869
+ #: widgets/woo-product-list/woo-product-list.php:894
3870
+ #: widgets/woo-product-list/woo-product-list.php:945
3871
+ #: widgets/woo-product-list/woo-product-list.php:1031
3872
+ #: widgets/woo-product-list/woo-product-list.php:1072
3873
+ #: widgets/woo-product-list/woo-product-list.php:1149
3874
+ #: widgets/woo-product-list/woo-product-list.php:1352
3875
+ #: widgets/woo-product-list/woo-product-list.php:1578
3876
+ #: widgets/woo-product-list/woo-product-list.php:1710
3877
+ #: widgets/woo-product-list/woo-product-list.php:1935
3878
+ #: widgets/woo-product-list/woo-product-list.php:2116
3879
+ #: widgets/woo-product-list/woo-product-list.php:2367
3880
+ #: widgets/wp-forms/wp-forms.php:267 widgets/wp-forms/wp-forms.php:566
3881
+ msgid "Margin"
3882
+ msgstr ""
3883
+
3884
+ #: widgets/accordion/accordion.php:619
3885
+ #: widgets/advanced-accordion/advanced-accordion.php:616
3886
+ msgid "Slide Closed Icon"
3887
+ msgstr ""
3888
+
3889
+ #: widgets/accordion/accordion.php:681
3890
+ #: widgets/advanced-accordion/advanced-accordion.php:677
3891
+ msgid " Slide Open icon"
3892
+ msgstr ""
3893
+
3894
+ #: widgets/advanced-accordion/advanced-accordion-handler.php:11
3895
+ msgid "Advanced Accordion"
3896
+ msgstr ""
3897
+
3898
+ #: widgets/advanced-accordion/advanced-accordion.php:53
3899
+ msgid "Keep this open?"
3900
+ msgstr ""
3901
+
3902
+ #: widgets/advanced-tab/advanced-tab-handler.php:11
3903
+ #: widgets/advanced-tab/advanced-tab.php:34
3904
+ msgid "Advanced Tab"
3905
+ msgstr ""
3906
+
3907
+ #: widgets/advanced-tab/advanced-tab.php:45
3908
+ #: widgets/image-comparison/image-comparison.php:53 widgets/tab/tab.php:44
3909
+ #: widgets/timeline/timeline.php:49
3910
+ #: widgets/woo-product-carousel/woo-product-carousel.php:191
3911
+ #: widgets/woo-product-list/woo-product-list.php:149
3912
+ msgid "Horizontal"
3913
+ msgstr ""
3914
+
3915
+ #: widgets/advanced-tab/advanced-tab.php:46
3916
+ #: widgets/image-comparison/image-comparison.php:54 widgets/tab/tab.php:45
3917
+ #: widgets/timeline/timeline.php:48
3918
+ #: widgets/woo-product-carousel/woo-product-carousel.php:190
3919
+ #: widgets/woo-product-list/woo-product-list.php:148
3920
+ msgid "Vertical"
3921
+ msgstr ""
3922
+
3923
+ #: widgets/advanced-tab/advanced-tab.php:54 widgets/tab/tab.php:53
3924
+ msgid "Vertical Nav Width"
3925
+ msgstr ""
3926
+
3927
+ #: widgets/advanced-tab/advanced-tab.php:79 widgets/gallery/gallery.php:2143
3928
+ #: widgets/hotspot/hotspot.php:513 widgets/tab/tab.php:78
3929
+ msgid "Show Caret"
3930
+ msgstr ""
3931
+
3932
+ #: widgets/advanced-tab/advanced-tab.php:91
3933
+ #: widgets/advanced-toggle/advanced-toggle.php:41
3934
+ #: widgets/blog-posts/blog-posts.php:290
3935
+ #: widgets/countdown-timer/countdown-timer.php:48
3936
+ #: widgets/hotspot/hotspot.php:41 widgets/social-share/social-share.php:49
3937
+ #: widgets/social/social.php:43 widgets/tab/tab.php:90
3938
+ #: widgets/testimonial/testimonial.php:50
3939
+ msgid "Choose Style"
3940
+ msgstr ""
3941
+
3942
+ #: widgets/advanced-tab/advanced-tab.php:96
3943
+ #: widgets/countdown-timer/countdown-timer.php:53 widgets/tab/tab.php:95
3944
+ msgid "image style 1"
3945
+ msgstr ""
3946
+
3947
+ #: widgets/advanced-tab/advanced-tab.php:102
3948
+ #: widgets/countdown-timer/countdown-timer.php:59 widgets/tab/tab.php:101
3949
+ msgid "image style 2"
3950
+ msgstr ""
3951
+
3952
+ #: widgets/advanced-tab/advanced-tab.php:108
3953
+ #: widgets/countdown-timer/countdown-timer.php:65 widgets/tab/tab.php:107
3954
+ msgid "image style 3"
3955
+ msgstr ""
3956
+
3957
+ #: widgets/advanced-tab/advanced-tab.php:114
3958
+ #: widgets/countdown-timer/countdown-timer.php:71 widgets/tab/tab.php:113
3959
+ #: widgets/testimonial/testimonial.php:73
3960
+ msgid "image style 4"
3961
+ msgstr ""
3962
+
3963
+ #: widgets/advanced-tab/advanced-tab.php:120
3964
+ #: widgets/countdown-timer/countdown-timer.php:77 widgets/tab/tab.php:119
3965
+ #: widgets/testimonial/testimonial.php:79
3966
+ msgid "image style 5"
3967
+ msgstr ""
3968
+
3969
+ #: widgets/advanced-tab/advanced-tab.php:135 widgets/tab/tab.php:134
3970
+ msgid "Full Width Nav"
3971
+ msgstr ""
3972
+
3973
+ #: widgets/advanced-tab/advanced-tab.php:150 widgets/tab/tab.php:149
3974
+ msgid "Nav Icon Position"
3975
+ msgstr ""
3976
+
3977
+ #: widgets/advanced-tab/advanced-tab.php:164
3978
+ #: widgets/advanced-tab/advanced-tab.php:189
3979
+ #: widgets/advanced-tab/advanced-tab.php:214
3980
+ #: widgets/advanced-tab/advanced-tab.php:239
3981
+ #: widgets/blog-posts/blog-posts.php:935
3982
+ #: widgets/dual-button/dual-button.php:227
3983
+ #: widgets/dual-button/dual-button.php:251
3984
+ #: widgets/dual-button/dual-button.php:356
3985
+ #: widgets/dual-button/dual-button.php:380
3986
+ #: widgets/header-info/header-info.php:194
3987
+ #: widgets/mail-chimp/mail-chimp.php:1019
3988
+ #: widgets/mail-chimp/mail-chimp.php:1045 widgets/pricing/pricing.php:387
3989
+ #: widgets/tab/tab.php:163 widgets/tab/tab.php:188 widgets/tab/tab.php:213
3990
+ #: widgets/tab/tab.php:238 widgets/table/table.php:163
3991
+ #: widgets/table/table.php:438 widgets/table/table.php:2357
3992
+ #: widgets/vertical-menu/vertical-menu.php:372
3993
+ msgid "Icon Spacing"
3994
+ msgstr ""
3995
+
3996
+ #: widgets/advanced-tab/advanced-tab.php:265 widgets/tab/tab.php:264
3997
+ msgid "Nav Alignment"
3998
+ msgstr ""
3999
+
4000
+ #: widgets/advanced-tab/advanced-tab.php:273
4001
+ #: widgets/advanced-tab/advanced-tab.php:303
4002
+ #: widgets/advanced-tab/advanced-tab.php:329
4003
+ #: widgets/advanced-toggle/advanced-toggle.php:85
4004
+ #: widgets/blog-posts/blog-posts.php:513 widgets/blog-posts/blog-posts.php:881
4005
+ #: widgets/blog-posts/blog-posts.php:1646
4006
+ #: widgets/blog-posts/blog-posts.php:1841 widgets/button/button.php:133
4007
+ #: widgets/caldera-forms/caldera-forms.php:580
4008
+ #: widgets/category-list/category-list.php:154
4009
+ #: widgets/contact-form7/contact-form7.php:580
4010
+ #: widgets/creative-button/creative-button.php:130
4011
+ #: widgets/dual-button/dual-button.php:74
4012
+ #: widgets/dual-button/dual-button.php:536
4013
+ #: widgets/dual-button/dual-button.php:757 widgets/funfact/funfact.php:231
4014
+ #: widgets/gallery/gallery.php:182 widgets/gallery/gallery.php:208
4015
+ #: widgets/gallery/gallery.php:2093 widgets/gallery/gallery.php:2126
4016
+ #: widgets/header-offcanvas/header-offcanvas.php:240
4017
+ #: widgets/header-search/header-search.php:314 widgets/heading/heading.php:302
4018
+ #: widgets/hotspot/hotspot.php:494 widgets/icon-box/icon-box.php:396
4019
+ #: widgets/image-accordion/image-accordion.php:444
4020
+ #: widgets/image-accordion/image-accordion.php:482
4021
+ #: widgets/image-box/image-box.php:236
4022
+ #: widgets/instagram-feed/instagram-feed.php:259
4023
+ #: widgets/motion-text/motion-text.php:96 widgets/nav-menu/nav-menu.php:122
4024
+ #: widgets/ninja-forms/ninja-forms.php:75
4025
+ #: widgets/ninja-forms/ninja-forms.php:244
4026
+ #: widgets/ninja-forms/ninja-forms.php:607 widgets/page-list/page-list.php:197
4027
+ #: widgets/page-list/page-list.php:404 widgets/page-list/page-list.php:528
4028
+ #: widgets/piechart/piechart.php:321 widgets/post-list/post-list.php:321
4029
+ #: widgets/pricing/pricing.php:454 widgets/pricing/pricing.php:682
4030
+ #: widgets/pricing/pricing.php:1687 widgets/pricing/pricing.php:2260
4031
+ #: widgets/social-share/social-share.php:141
4032
+ #: widgets/social-share/social-share.php:424 widgets/social/social.php:135
4033
+ #: widgets/social/social.php:386 widgets/tab/tab.php:272
4034
+ #: widgets/tab/tab.php:302 widgets/table/table.php:270
4035
+ #: widgets/table/table.php:519 widgets/tablepress/tablepress.php:143
4036
+ #: widgets/tablepress/tablepress.php:169 widgets/team/team.php:504
4037
+ #: widgets/team/team.php:636 widgets/team/team.php:1476
4038
+ #: widgets/testimonial/testimonial.php:722
4039
+ #: widgets/testimonial/testimonial.php:748
4040
+ #: widgets/testimonial/testimonial.php:1579 widgets/timeline/timeline.php:425
4041
+ #: widgets/video/video.php:297 widgets/we-forms/we-forms.php:399
4042
+ #: widgets/woo-category-list/woo-category-list.php:575
4043
+ #: widgets/woo-category-list/woo-category-list.php:873
4044
+ #: widgets/woo-mini-cart/woo-mini-cart.php:83
4045
+ #: widgets/woo-product-carousel/woo-product-carousel.php:40
4046
+ #: widgets/woo-product-carousel/woo-product-carousel.php:642
4047
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1104
4048
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1551
4049
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2313
4050
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2506
4051
+ #: widgets/woo-product-list/woo-product-list.php:801
4052
+ #: widgets/woo-product-list/woo-product-list.php:1267
4053
+ #: widgets/woo-product-list/woo-product-list.php:1885
4054
+ #: widgets/woo-product-list/woo-product-list.php:2294
4055
+ #: widgets/wp-forms/wp-forms.php:107 widgets/wp-forms/wp-forms.php:434
4056
+ msgid "Center"
4057
+ msgstr ""
4058
+
4059
+ #: widgets/advanced-tab/advanced-tab.php:295
4060
+ msgid "Nav Content Alignment"
4061
+ msgstr ""
4062
+
4063
+ #: widgets/advanced-tab/advanced-tab.php:321 widgets/tab/tab.php:294
4064
+ msgid "Nav Item Alignment"
4065
+ msgstr ""
4066
+
4067
+ #: widgets/advanced-tab/advanced-tab.php:356 widgets/heading/heading.php:490
4068
+ #: widgets/heading/heading.php:542 widgets/heading/heading.php:577
4069
+ #: widgets/heading/heading.php:642 widgets/page-list/page-list.php:134
4070
+ #: widgets/timeline/timeline.php:75
4071
+ msgid "Sub Title"
4072
+ msgstr ""
4073
+
4074
+ #: widgets/advanced-tab/advanced-tab.php:365
4075
+ msgid "Z-Index"
4076
+ msgstr ""
4077
+
4078
+ #: widgets/advanced-tab/advanced-tab.php:380
4079
+ #: widgets/advanced-toggle/advanced-toggle.php:181 widgets/tab/tab.php:329
4080
+ msgid "Keep this tab open? "
4081
+ msgstr ""
4082
+
4083
+ #: widgets/advanced-tab/advanced-tab.php:390 widgets/icon-box/icon-box.php:42
4084
+ #: widgets/tab/tab.php:339 widgets/table/table.php:94
4085
+ #: widgets/table/table.php:369
4086
+ msgid "Icon Type"
4087
+ msgstr ""
4088
+
4089
+ #: widgets/advanced-tab/advanced-tab.php:403 widgets/funfact/funfact.php:57
4090
+ #: widgets/hotspot/hotspot.php:728 widgets/icon-box/icon-box.php:55
4091
+ #: widgets/image-box/image-box.php:37 widgets/image-box/image-box.php:899
4092
+ #: widgets/piechart/piechart.php:95 widgets/pricing/pricing.php:91
4093
+ #: widgets/tab/tab.php:352 widgets/table/table.php:107
4094
+ #: widgets/table/table.php:134 widgets/table/table.php:382
4095
+ #: widgets/table/table.php:408 widgets/team/team.php:746
4096
+ #: widgets/team/team.php:1773
4097
+ #: widgets/woo-category-list/woo-category-list.php:362
4098
+ #: widgets/woo-product-carousel/woo-product-carousel.php:966
4099
+ #: widgets/woo-product-list/woo-product-list.php:1129
4100
+ msgid "Image"
4101
+ msgstr ""
4102
+
4103
+ #: widgets/advanced-tab/advanced-tab.php:412
4104
+ #: widgets/image-box/image-box.php:155 widgets/tab/tab.php:361
4105
+ #: widgets/timeline/timeline.php:121
4106
+ msgid "Title Icon"
4107
+ msgstr ""
4108
+
4109
+ #: widgets/advanced-tab/advanced-tab.php:456 widgets/faq/faq.php:139
4110
+ #: widgets/tab/tab.php:405
4111
+ msgid "Title Border Radius"
4112
+ msgstr ""
4113
+
4114
+ #: widgets/advanced-tab/advanced-tab.php:467
4115
+ #: widgets/advanced-toggle/advanced-toggle.php:192 widgets/faq/faq.php:66
4116
+ #: widgets/tab/tab.php:416
4117
+ msgid "Tab content"
4118
+ msgstr ""
4119
+
4120
+ #: widgets/advanced-tab/advanced-tab.php:490 widgets/tab/tab.php:500
4121
+ msgid "Nav Wrapper "
4122
+ msgstr ""
4123
+
4124
+ #: widgets/advanced-tab/advanced-tab.php:498 widgets/tab/tab.php:508
4125
+ msgid "Make Fluid"
4126
+ msgstr ""
4127
+
4128
+ #: widgets/advanced-tab/advanced-tab.php:588 widgets/tab/tab.php:598
4129
+ msgid "Nav Items "
4130
+ msgstr ""
4131
+
4132
+ #: widgets/advanced-tab/advanced-tab.php:596
4133
+ #: widgets/advanced-tab/advanced-tab.php:2067
4134
+ #: widgets/advanced-toggle/advanced-toggle.php:401
4135
+ #: widgets/blog-posts/blog-posts.php:2241 widgets/button/button.php:193
4136
+ #: widgets/caldera-forms/caldera-forms.php:79
4137
+ #: widgets/caldera-forms/caldera-forms.php:122
4138
+ #: widgets/caldera-forms/caldera-forms.php:467
4139
+ #: widgets/caldera-forms/caldera-forms.php:477
4140
+ #: widgets/caldera-forms/caldera-forms.php:599
4141
+ #: widgets/client-logo/client-logo.php:868
4142
+ #: widgets/contact-form7/contact-form7.php:78
4143
+ #: widgets/contact-form7/contact-form7.php:121
4144
+ #: widgets/contact-form7/contact-form7.php:467
4145
+ #: widgets/contact-form7/contact-form7.php:477
4146
+ #: widgets/contact-form7/contact-form7.php:599
4147
+ #: widgets/creative-button/creative-button.php:273
4148
+ #: widgets/dual-button/dual-button.php:440
4149
+ #: widgets/dual-button/dual-button.php:661
4150
+ #: widgets/dual-button/dual-button.php:872 widgets/funfact/funfact.php:760
4151
+ #: widgets/funfact/funfact.php:895 widgets/gallery/gallery.php:1067
4152
+ #: widgets/gallery/gallery.php:1257 widgets/gallery/gallery.php:1446
4153
+ #: widgets/gallery/gallery.php:2658 widgets/gallery/gallery.php:2749
4154
+ #: widgets/header-info/header-info.php:153 widgets/hotspot/hotspot.php:648
4155
+ #: widgets/hotspot/hotspot.php:692 widgets/icon-box/icon-box.php:1021
4156
+ #: widgets/icon-box/icon-box.php:1548
4157
+ #: widgets/image-accordion/image-accordion.php:533
4158
+ #: widgets/image-box/image-box.php:1139 widgets/image-box/image-box.php:1222
4159
+ #: widgets/image-box/image-box.php:1282
4160
+ #: widgets/instagram-feed/instagram-feed.php:862
4161
+ #: widgets/instagram-feed/instagram-feed.php:1076
4162
+ #: widgets/mail-chimp/mail-chimp.php:547 widgets/mail-chimp/mail-chimp.php:592
4163
+ #: widgets/mail-chimp/mail-chimp.php:816
4164
+ #: widgets/motion-text/motion-text.php:306 widgets/nav-menu/nav-menu.php:297
4165
+ #: widgets/nav-menu/nav-menu.php:517 widgets/nav-menu/nav-menu.php:911
4166
+ #: widgets/nav-menu/nav-menu.php:1044 widgets/ninja-forms/ninja-forms.php:115
4167
+ #: widgets/ninja-forms/ninja-forms.php:165
4168
+ #: widgets/ninja-forms/ninja-forms.php:216
4169
+ #: widgets/ninja-forms/ninja-forms.php:296
4170
+ #: widgets/ninja-forms/ninja-forms.php:521
4171
+ #: widgets/ninja-forms/ninja-forms.php:664
4172
+ #: widgets/ninja-forms/ninja-forms.php:827 widgets/page-list/page-list.php:319
4173
+ #: widgets/page-list/page-list.php:808 widgets/piechart/piechart.php:289
4174
+ #: widgets/post-list/post-list.php:605 widgets/post-tab/post-tab.php:165
4175
+ #: widgets/pricing/pricing.php:747 widgets/pricing/pricing.php:1337
4176
+ #: widgets/pricing/pricing.php:1959 widgets/social-share/social-share.php:615
4177
+ #: widgets/social/social.php:525 widgets/tab/tab.php:606
4178
+ #: widgets/table/table.php:904 widgets/table/table.php:1076
4179
+ #: widgets/table/table.php:1338 widgets/table/table.php:1715
4180
+ #: widgets/table/table.php:1835 widgets/table/table.php:1870
4181
+ #: widgets/table/table.php:2000 widgets/table/table.php:2029
4182
+ #: widgets/team/team.php:1604 widgets/testimonial/testimonial.php:834
4183
+ #: widgets/timeline/timeline.php:506 widgets/timeline/timeline.php:554
4184
+ #: widgets/timeline/timeline.php:593 widgets/timeline/timeline.php:713
4185
+ #: widgets/timeline/timeline.php:787 widgets/twitter-feed/twitter-feed.php:343
4186
+ #: widgets/twitter-feed/twitter-feed.php:829
4187
+ #: widgets/twitter-feed/twitter-feed.php:864
4188
+ #: widgets/twitter-feed/twitter-feed.php:946
4189
+ #: widgets/vertical-menu/vertical-menu.php:186
4190
+ #: widgets/vertical-menu/vertical-menu.php:340
4191
+ #: widgets/vertical-menu/vertical-menu.php:461 widgets/video/video.php:374
4192
+ #: widgets/we-forms/we-forms.php:136
4193
+ #: widgets/woo-category-list/woo-category-list.php:629
4194
+ #: widgets/woo-category-list/woo-category-list.php:712
4195
+ #: widgets/woo-category-list/woo-category-list.php:924
4196
+ #: widgets/woo-category-list/woo-category-list.php:1006
4197
+ #: widgets/woo-mini-cart/woo-mini-cart.php:149
4198
+ #: widgets/woo-mini-cart/woo-mini-cart.php:687
4199
+ #: widgets/woo-mini-cart/woo-mini-cart.php:936
4200
+ #: widgets/woo-mini-cart/woo-mini-cart.php:966
4201
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1012
4202
+ #: widgets/woo-product-carousel/woo-product-carousel.php:799
4203
+ #: widgets/woo-product-carousel/woo-product-carousel.php:925
4204
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1216
4205
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1849
4206
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2448
4207
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2743
4208
+ #: widgets/woo-product-list/woo-product-list.php:961
4209
+ #: widgets/woo-product-list/woo-product-list.php:1088
4210
+ #: widgets/woo-product-list/woo-product-list.php:1380
4211
+ #: widgets/woo-product-list/woo-product-list.php:1729
4212
+ #: widgets/woo-product-list/woo-product-list.php:2141
4213
+ #: widgets/woo-product-list/woo-product-list.php:2186
4214
+ #: widgets/woo-product-list/woo-product-list.php:2236
4215
+ #: widgets/wp-forms/wp-forms.php:79 widgets/wp-forms/wp-forms.php:345
4216
+ #: widgets/wp-forms/wp-forms.php:379 widgets/wp-forms/wp-forms.php:488
4217
+ msgid "Typography"
4218
+ msgstr ""
4219
+
4220
+ #: widgets/advanced-tab/advanced-tab.php:604
4221
+ #: widgets/blog-posts/blog-posts.php:947 widgets/gallery/gallery.php:1691
4222
+ #: widgets/header-info/header-info.php:175
4223
+ #: widgets/image-accordion/image-accordion.php:392
4224
+ #: widgets/mail-chimp/mail-chimp.php:1071 widgets/post-list/post-list.php:614
4225
+ #: widgets/pricing/pricing.php:255 widgets/pricing/pricing.php:1966
4226
+ #: widgets/social-share/social-share.php:590 widgets/social/social.php:500
4227
+ #: widgets/tab/tab.php:614 widgets/table/table.php:878
4228
+ #: widgets/table/table.php:1051 widgets/team/team.php:1579
4229
+ #: widgets/timeline/timeline.php:688 widgets/timeline/timeline.php:762
4230
+ #: widgets/video/video.php:349 widgets/woo-mini-cart/woo-mini-cart.php:124
4231
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2469
4232
+ #: widgets/woo-product-list/woo-product-list.php:2257
4233
+ msgid "Icon Size"
4234
+ msgstr ""
4235
+
4236
+ #: widgets/advanced-tab/advanced-tab.php:629
4237
+ #: widgets/instagram-feed/instagram-feed.php:706
4238
+ #: widgets/mail-chimp/mail-chimp.php:729 widgets/tab/tab.php:639
4239
+ #: widgets/testimonial/testimonial.php:1660
4240
+ #: widgets/twitter-feed/twitter-feed.php:543
4241
+ #: widgets/twitter-feed/twitter-feed.php:569
4242
+ #: widgets/twitter-feed/twitter-feed.php:1069
4243
+ msgid "Margin Right"
4244
+ msgstr ""
4245
+
4246
+ #: widgets/advanced-tab/advanced-tab.php:700
4247
+ #: widgets/advanced-tab/advanced-tab.php:774
4248
+ #: widgets/advanced-toggle/advanced-toggle.php:143
4249
+ #: widgets/advanced-toggle/advanced-toggle.php:165 widgets/faq/faq.php:101
4250
+ #: widgets/piechart/piechart.php:212 widgets/pricing/pricing.php:479
4251
+ #: widgets/tab/tab.php:711 widgets/tab/tab.php:785
4252
+ #: widgets/timeline/timeline.php:533 widgets/timeline/timeline.php:828
4253
+ msgid "Title Color"
4254
+ msgstr ""
4255
+
4256
+ #: widgets/advanced-tab/advanced-tab.php:712
4257
+ #: widgets/advanced-tab/advanced-tab.php:785
4258
+ #: widgets/header-info/header-info.php:162 widgets/icon-box/icon-box.php:516
4259
+ #: widgets/image-box/image-box.php:406 widgets/image-box/image-box.php:450
4260
+ #: widgets/pricing/pricing.php:242 widgets/tab/tab.php:723
4261
+ #: widgets/tab/tab.php:796 widgets/table/table.php:183
4262
+ #: widgets/table/table.php:458 widgets/table/table.php:1572
4263
+ #: widgets/table/table.php:2323 widgets/team/team.php:1976
4264
+ #: widgets/timeline/timeline.php:271 widgets/timeline/timeline.php:1024
4265
+ #: widgets/timeline/timeline.php:1075
4266
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1447
4267
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1486
4268
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2606
4269
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2662
4270
+ #: widgets/woo-product-list/woo-product-list.php:1611
4271
+ #: widgets/woo-product-list/woo-product-list.php:1650
4272
+ #: widgets/woo-product-list/woo-product-list.php:2394
4273
+ #: widgets/woo-product-list/woo-product-list.php:2450
4274
+ msgid "Icon Color"
4275
+ msgstr ""
4276
+
4277
+ #: widgets/advanced-tab/advanced-tab.php:838 widgets/tab/tab.php:849
4278
+ msgid "First and Last Child Border Radius"
4279
+ msgstr ""
4280
+
4281
+ #: widgets/advanced-tab/advanced-tab.php:847 widgets/tab/tab.php:858
4282
+ msgid "First Child Border Radius"
4283
+ msgstr ""
4284
+
4285
+ #: widgets/advanced-tab/advanced-tab.php:859 widgets/tab/tab.php:870
4286
+ msgid "First Child Border Width"
4287
+ msgstr ""
4288
+
4289
+ #: widgets/advanced-tab/advanced-tab.php:871 widgets/tab/tab.php:882
4290
+ msgid "Last Child Border Radius"
4291
+ msgstr ""
4292
+
4293
+ #: widgets/advanced-tab/advanced-tab.php:883 widgets/tab/tab.php:894
4294
+ msgid "Last Child Border Width"
4295
+ msgstr ""
4296
+
4297
+ #: widgets/advanced-tab/advanced-tab.php:899 widgets/tab/tab.php:910
4298
+ msgid "Caret "
4299
+ msgstr ""
4300
+
4301
+ #: widgets/advanced-tab/advanced-tab.php:941
4302
+ #: widgets/advanced-tab/advanced-tab.php:1066
4303
+ #: widgets/advanced-tab/advanced-tab.php:1191
4304
+ #: widgets/advanced-tab/advanced-tab.php:1444
4305
+ #: widgets/advanced-tab/advanced-tab.php:1750
4306
+ #: widgets/blog-posts/blog-posts.php:1125
4307
+ #: widgets/blog-posts/blog-posts.php:1749
4308
+ #: widgets/caldera-forms/caldera-forms.php:194
4309
+ #: widgets/caldera-forms/caldera-forms.php:250
4310
+ #: widgets/caldera-forms/caldera-forms.php:687
4311
+ #: widgets/category-list/category-list.php:246
4312
+ #: widgets/client-logo/client-logo.php:1159
4313
+ #: widgets/client-logo/client-logo.php:1249
4314
+ #: widgets/contact-form7/contact-form7.php:193
4315
+ #: widgets/contact-form7/contact-form7.php:250
4316
+ #: widgets/contact-form7/contact-form7.php:687
4317
+ #: widgets/countdown-timer/countdown-timer.php:238
4318
+ #: widgets/countdown-timer/countdown-timer.php:1639
4319
+ #: widgets/dual-button/dual-button.php:960
4320
+ #: widgets/facebook-feed/facebook-feed.php:577 widgets/funfact/funfact.php:1115
4321
+ #: widgets/gallery/gallery.php:2189 widgets/gallery/gallery.php:2296
4322
+ #: widgets/gallery/gallery.php:2450 widgets/gallery/gallery.php:2535
4323
+ #: widgets/header-search/header-search.php:270 widgets/heading/heading.php:694
4324
+ #: widgets/heading/heading.php:826 widgets/icon-box/icon-box.php:724
4325
+ #: widgets/image-box/image-box.php:383
4326
+ #: widgets/image-comparison/image-comparison.php:411
4327
+ #: widgets/nav-menu/nav-menu.php:153 widgets/nav-menu/nav-menu.php:1278
4328
+ #: widgets/page-list/page-list.php:620 widgets/post-list/post-list.php:413
4329
+ #: widgets/progressbar/progressbar.php:150
4330
+ #: widgets/social-share/social-share.php:535 widgets/social/social.php:577
4331
+ #: widgets/tab/tab.php:952 widgets/tab/tab.php:1077 widgets/tab/tab.php:1202
4332
+ #: widgets/tab/tab.php:1455 widgets/tab/tab.php:1761
4333
+ #: widgets/table/table.php:934 widgets/table/table.php:1207
4334
+ #: widgets/table/table.php:2430 widgets/team/team.php:775
4335
+ #: widgets/team/team.php:1070 widgets/team/team.php:1655
4336
+ #: widgets/team/team.php:2141 widgets/testimonial/testimonial.php:792
4337
+ #: widgets/testimonial/testimonial.php:1277
4338
+ #: widgets/testimonial/testimonial.php:1794
4339
+ #: widgets/testimonial/testimonial.php:1904
4340
+ #: widgets/testimonial/testimonial.php:2069 widgets/video/video.php:425
4341
+ #: widgets/woo-category-list/woo-category-list.php:382
4342
+ #: widgets/woo-category-list/woo-category-list.php:516
4343
+ #: widgets/woo-category-list/woo-category-list.php:814
4344
+ #: widgets/woo-mini-cart/woo-mini-cart.php:696
4345
+ msgid "Height"
4346
+ msgstr ""
4347
+
4348
+ #: widgets/advanced-tab/advanced-tab.php:984
4349
+ #: widgets/advanced-tab/advanced-tab.php:1638 widgets/tab/tab.php:995
4350
+ #: widgets/tab/tab.php:1649
4351
+ msgid "Bottom Icon Position"
4352
+ msgstr ""
4353
+
4354
+ #: widgets/advanced-tab/advanced-tab.php:1221 widgets/tab/tab.php:1232
4355
+ msgid "Bottom Line"
4356
+ msgstr ""
4357
+
4358
+ #: widgets/advanced-tab/advanced-tab.php:1277 widgets/tab/tab.php:1288
4359
+ msgid "Hear Symbol Background"
4360
+ msgstr ""
4361
+
4362
+ #: widgets/advanced-tab/advanced-tab.php:1301
4363
+ #: widgets/advanced-tab/advanced-tab.php:1586
4364
+ #: widgets/advanced-tab/advanced-tab.php:1813 widgets/tab/tab.php:1312
4365
+ #: widgets/tab/tab.php:1597 widgets/tab/tab.php:1824
4366
+ msgid "Caret Width"
4367
+ msgstr ""
4368
+
4369
+ #: widgets/advanced-tab/advanced-tab.php:1327
4370
+ #: widgets/advanced-tab/advanced-tab.php:1612
4371
+ #: widgets/advanced-tab/advanced-tab.php:1839 widgets/tab/tab.php:1338
4372
+ #: widgets/tab/tab.php:1623 widgets/tab/tab.php:1850
4373
+ msgid "Caret Height"
4374
+ msgstr ""
4375
+
4376
+ #: widgets/advanced-tab/advanced-tab.php:1353
4377
+ #: widgets/advanced-tab/advanced-tab.php:1865 widgets/tab/tab.php:1364
4378
+ #: widgets/tab/tab.php:1876
4379
+ msgid "Bottom Position"
4380
+ msgstr ""
4381
+
4382
+ #: widgets/advanced-tab/advanced-tab.php:1383
4383
+ #: widgets/advanced-tab/advanced-tab.php:1668
4384
+ #: widgets/advanced-tab/advanced-tab.php:1895 widgets/tab/tab.php:1394
4385
+ #: widgets/tab/tab.php:1679 widgets/tab/tab.php:1906
4386
+ msgid "Left Position"
4387
+ msgstr ""
4388
+
4389
+ #: widgets/advanced-tab/advanced-tab.php:1928
4390
+ #: widgets/image-box/image-box.php:119 widgets/image-box/image-box.php:1032
4391
+ #: widgets/tab/tab.php:1939 widgets/table/table.php:1014
4392
+ #: widgets/tablepress/tablepress.php:410
4393
+ #: widgets/woo-mini-cart/woo-mini-cart.php:269
4394
+ msgid "Body"
4395
+ msgstr ""
4396
+
4397
+ #: widgets/advanced-tab/advanced-tab.php:1935 widgets/tab/tab.php:1946
4398
+ msgid "Body Color"
4399
+ msgstr ""
4400
+
4401
+ #: widgets/advanced-tab/advanced-tab.php:2004
4402
+ #: widgets/blog-posts/blog-posts.php:554 widgets/tab/tab.php:444
4403
+ #: widgets/table/table.php:746
4404
+ msgid "Wrapper"
4405
+ msgstr ""
4406
+
4407
+ #: widgets/advanced-tab/advanced-tab.php:2059
4408
+ msgid "Sub Title "
4409
+ msgstr ""
4410
+
4411
+ #: widgets/advanced-toggle/advanced-toggle-handler.php:11
4412
+ msgid "Advanced Toggle"
4413
+ msgstr ""
4414
+
4415
+ #: widgets/advanced-toggle/advanced-toggle.php:34
4416
+ msgid "Advanced Tooggle"
4417
+ msgstr ""
4418
+
4419
+ #: widgets/advanced-toggle/advanced-toggle.php:46
4420
+ #: widgets/blog-posts/blog-posts.php:295 widgets/hotspot/hotspot.php:46
4421
+ msgid "Image style 1"
4422
+ msgstr ""
4423
+
4424
+ #: widgets/advanced-toggle/advanced-toggle.php:52
4425
+ #: widgets/blog-posts/blog-posts.php:301 widgets/hotspot/hotspot.php:52
4426
+ msgid "Image style 2"
4427
+ msgstr ""
4428
+
4429
+ #: widgets/advanced-toggle/advanced-toggle.php:64
4430
+ #: widgets/mail-chimp/mail-chimp.php:71
4431
+ msgid "Please note!"
4432
+ msgstr ""
4433
+
4434
+ #: widgets/advanced-toggle/advanced-toggle.php:64
4435
+ msgid "This style show's only first two tabs."
4436
+ msgstr ""
4437
+
4438
+ #: widgets/advanced-toggle/advanced-toggle.php:77
4439
+ #: widgets/blog-posts/blog-posts.php:505 widgets/blog-posts/blog-posts.php:873
4440
+ #: widgets/blog-posts/blog-posts.php:1638
4441
+ #: widgets/blog-posts/blog-posts.php:1833 widgets/button/button.php:125
4442
+ #: widgets/caldera-forms/caldera-forms.php:572
4443
+ #: widgets/category-list/category-list.php:146
4444
+ #: widgets/contact-form7/contact-form7.php:572
4445
+ #: widgets/creative-button/creative-button.php:122
4446
+ #: widgets/dual-button/dual-button.php:66
4447
+ #: widgets/dual-button/dual-button.php:528
4448
+ #: widgets/dual-button/dual-button.php:749 widgets/funfact/funfact.php:223
4449
+ #: widgets/gallery/gallery.php:200
4450
+ #: widgets/header-offcanvas/header-offcanvas.php:232
4451
+ #: widgets/header-search/header-search.php:306 widgets/heading/heading.php:294
4452
+ #: widgets/hotspot/hotspot.php:486
4453
+ #: widgets/image-accordion/image-accordion.php:436
4454
+ #: widgets/image-box/image-box.php:228
4455
+ #: widgets/instagram-feed/instagram-feed.php:251
4456
+ #: widgets/motion-text/motion-text.php:88
4457
+ #: widgets/ninja-forms/ninja-forms.php:67
4458
+ #: widgets/ninja-forms/ninja-forms.php:236
4459
+ #: widgets/ninja-forms/ninja-forms.php:599 widgets/page-list/page-list.php:373
4460
+ #: widgets/page-list/page-list.php:520 widgets/post-list/post-list.php:313
4461
+ #: widgets/pricing/pricing.php:446 widgets/pricing/pricing.php:674
4462
+ #: widgets/pricing/pricing.php:2252 widgets/social-share/social-share.php:133
4463
+ #: widgets/social-share/social-share.php:416 widgets/social/social.php:127
4464
+ #: widgets/social/social.php:378 widgets/team/team.php:628
4465
+ #: widgets/team/team.php:932 widgets/team/team.php:1468
4466
+ #: widgets/testimonial/testimonial.php:1571 widgets/timeline/timeline.php:417
4467
+ #: widgets/video/video.php:288 widgets/woo-mini-cart/woo-mini-cart.php:75
4468
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2304
4469
+ #: widgets/wp-forms/wp-forms.php:99 widgets/wp-forms/wp-forms.php:426
4470
+ msgid "Alignment"
4471
+ msgstr ""
4472
+
4473
+ #: widgets/advanced-toggle/advanced-toggle.php:123
4474
+ msgid "Indicator Background Color"
4475
+ msgstr ""
4476
+
4477
+ #: widgets/advanced-toggle/advanced-toggle.php:216
4478
+ msgid "Switch Container"
4479
+ msgstr ""
4480
+
4481
+ #: widgets/advanced-toggle/advanced-toggle.php:283
4482
+ msgid "Switch Toggle"
4483
+ msgstr ""
4484
+
4485
+ #: widgets/advanced-toggle/advanced-toggle.php:316
4486
+ msgid "This control working only active side"
4487
+ msgstr ""
4488
+
4489
+ #: widgets/advanced-toggle/advanced-toggle.php:352
4490
+ #: widgets/advanced-toggle/advanced-toggle.php:373
4491
+ msgid "Toggle Color"
4492
+ msgstr ""
4493
+
4494
+ #: widgets/blog-posts/blog-posts-handler.php:11
4495
+ msgid "Blog Posts"
4496
+ msgstr ""
4497
+
4498
+ #: widgets/blog-posts/blog-posts.php:40
4499
+ #: widgets/category-list/category-list.php:45
4500
+ #: widgets/facebook-feed/facebook-feed.php:199 widgets/gallery/gallery.php:91
4501
+ #: widgets/gallery/gallery.php:348 widgets/page-list/page-list.php:45
4502
+ #: widgets/post-list/post-list.php:120 widgets/testimonial/testimonial.php:40
4503
+ #: widgets/testimonial/testimonial.php:568
4504
+ #: widgets/woo-category-list/woo-category-list.php:116
4505
+ #: widgets/woo-product-carousel/woo-product-carousel.php:179
4506
+ #: widgets/woo-product-list/woo-product-list.php:134
4507
+ msgid "Layout"
4508
+ msgstr ""
4509
+
4510
+ #: widgets/blog-posts/blog-posts.php:46
4511
+ msgid "Layout Style"
4512
+ msgstr ""
4513
+
4514
+ #: widgets/blog-posts/blog-posts.php:49
4515
+ #: widgets/social-share/social-share.php:449 widgets/social/social.php:411
4516
+ #: widgets/team/team.php:1501
4517
+ msgid "Block"
4518
+ msgstr ""
4519
+
4520
+ #: widgets/blog-posts/blog-posts.php:50
4521
+ msgid "Grid With Thumb"
4522
+ msgstr ""
4523
+
4524
+ #: widgets/blog-posts/blog-posts.php:51
4525
+ msgid "Grid Without Thumb"
4526
+ msgstr ""
4527
+
4528
+ #: widgets/blog-posts/blog-posts.php:60 widgets/post-list/post-list.php:143
4529
+ msgid "Show Featured Image"
4530
+ msgstr ""
4531
+
4532
+ #: widgets/blog-posts/blog-posts.php:73
4533
+ msgid "Featured image alignment"
4534
+ msgstr ""
4535
+
4536
+ #: widgets/blog-posts/blog-posts.php:95
4537
+ msgid "Show Posts Per Row"
4538
+ msgstr ""
4539
+
4540
+ #: widgets/blog-posts/blog-posts.php:98 widgets/testimonial/testimonial.php:318
4541
+ msgid "1"
4542
+ msgstr ""
4543
+
4544
+ #: widgets/blog-posts/blog-posts.php:100 widgets/post-grid/post-grid.php:60
4545
+ #: widgets/post-tab/post-tab.php:62 widgets/testimonial/testimonial.php:316
4546
+ msgid "3"
4547
+ msgstr ""
4548
+
4549
+ #: widgets/blog-posts/blog-posts.php:101
4550
+ #: widgets/testimonial/testimonial.php:315
4551
+ msgid "4"
4552
+ msgstr ""
4553
+
4554
+ #: widgets/blog-posts/blog-posts.php:102
4555
+ msgid "6"
4556
+ msgstr ""
4557
+
4558
+ #: widgets/blog-posts/blog-posts.php:113 widgets/chart/chart.php:320
4559
+ #: widgets/dual-button/dual-button.php:921
4560
+ msgid "Show Title"
4561
+ msgstr ""
4562
+
4563
+ #: widgets/blog-posts/blog-posts.php:123
4564
+ msgid "Crop title by word"
4565
+ msgstr ""
4566
+
4567
+ #: widgets/blog-posts/blog-posts.php:134
4568
+ msgid "Show Content"
4569
+ msgstr ""
4570
+
4571
+ #: widgets/blog-posts/blog-posts.php:144
4572
+ msgid "Crop content by word"
4573
+ msgstr ""
4574
+
4575
+ #: widgets/blog-posts/blog-posts.php:156
4576
+ #: widgets/twitter-feed/twitter-feed.php:236
4577
+ msgid "Show Read More"
4578
+ msgstr ""
4579
+
4580
+ #: widgets/blog-posts/blog-posts.php:170
4581
+ msgid "Query"
4582
+ msgstr ""
4583
+
4584
+ #: widgets/blog-posts/blog-posts.php:177
4585
+ msgid "Posts Count"
4586
+ msgstr ""
4587
+
4588
+ #: widgets/blog-posts/blog-posts.php:188
4589
+ msgid "Select posts by:"
4590
+ msgstr ""
4591
+
4592
+ #: widgets/blog-posts/blog-posts.php:192 widgets/post-list/post-list.php:50
4593
+ msgid "Recent Post"
4594
+ msgstr ""
4595
+
4596
+ #: widgets/blog-posts/blog-posts.php:193 widgets/post-list/post-list.php:52
4597
+ msgid "Selected Post"
4598
+ msgstr ""
4599
+
4600
+ #: widgets/blog-posts/blog-posts.php:194
4601
+ msgid "Category Post"
4602
+ msgstr ""
4603
+
4604
+ #: widgets/blog-posts/blog-posts.php:203
4605
+ msgid "Search & Select"
4606
+ msgstr ""
4607
+
4608
+ #: widgets/blog-posts/blog-posts.php:214 widgets/post-grid/post-grid.php:47
4609
+ #: widgets/post-tab/post-tab.php:49
4610
+ msgid "Select Categories"
4611
+ msgstr ""
4612
+
4613
+ #: widgets/blog-posts/blog-posts.php:226
4614
+ #: widgets/image-comparison/image-comparison.php:123
4615
+ msgid "Offset"
4616
+ msgstr ""
4617
+
4618
+ #: widgets/blog-posts/blog-posts.php:237
4619
+ #: widgets/woo-category-list/woo-category-list.php:86
4620
+ #: widgets/woo-product-carousel/woo-product-carousel.php:149
4621
+ #: widgets/woo-product-list/woo-product-list.php:104
4622
+ msgid "Order by"
4623
+ msgstr ""
4624
+
4625
+ #: widgets/blog-posts/blog-posts.php:240 widgets/blog-posts/blog-posts.php:345
4626
+ #: widgets/instagram-feed/instagram-feed.php:543
4627
+ #: widgets/instagram-feed/instagram-feed.php:615
4628
+ #: widgets/timeline/timeline.php:132 widgets/timeline/timeline.php:891
4629
+ #: widgets/twitter-feed/twitter-feed.php:675
4630
+ #: widgets/woo-product-carousel/woo-product-carousel.php:153
4631
+ #: widgets/woo-product-list/woo-product-list.php:108
4632
+ msgid "Date"
4633
+ msgstr ""
4634
+
4635
+ #: widgets/blog-posts/blog-posts.php:242 widgets/blog-posts/blog-posts.php:344
4636
+ msgid "Author"
4637
+ msgstr ""
4638
+
4639
+ #: widgets/blog-posts/blog-posts.php:243
4640
+ msgid "Modified"
4641
+ msgstr ""
4642
+
4643
+ #: widgets/blog-posts/blog-posts.php:244
4644
+ #: widgets/facebook-feed/facebook-feed.php:1202
4645
+ #: widgets/twitter-feed/twitter-feed.php:1101
4646
+ msgid "Comments"
4647
+ msgstr ""
4648
+
4649
+ #: widgets/blog-posts/blog-posts.php:253
4650
+ #: widgets/woo-category-list/woo-category-list.php:101
4651
+ #: widgets/woo-product-carousel/woo-product-carousel.php:164
4652
+ #: widgets/woo-product-list/woo-product-list.php:119
4653
+ msgid "Order"
4654
+ msgstr ""
4655
+
4656
+ #: widgets/blog-posts/blog-posts.php:256
4657
+ #: widgets/woo-category-list/woo-category-list.php:105
4658
+ msgid "ASC"
4659
+ msgstr ""
4660
+
4661
+ #: widgets/blog-posts/blog-posts.php:257
4662
+ #: widgets/woo-category-list/woo-category-list.php:106
4663
+ msgid "DESC"
4664
+ msgstr ""
4665
+
4666
+ #: widgets/blog-posts/blog-posts.php:269 widgets/blog-posts/blog-posts.php:341
4667
+ msgid "Meta Data"
4668
+ msgstr ""
4669
+
4670
+ #: widgets/blog-posts/blog-posts.php:277
4671
+ msgid "Show Floating Date"
4672
+ msgstr ""
4673
+
4674
+ #: widgets/blog-posts/blog-posts.php:315
4675
+ msgid "Show Meta Data"
4676
+ msgstr ""
4677
+
4678
+ #: widgets/blog-posts/blog-posts.php:325 widgets/post-list/post-list.php:264
4679
+ msgid "Meta Position"
4680
+ msgstr ""
4681
+
4682
+ #: widgets/blog-posts/blog-posts.php:328 widgets/heading/heading.php:126
4683
+ #: widgets/heading/heading.php:241
4684
+ msgid "Before Title"
4685
+ msgstr ""
4686
+
4687
+ #: widgets/blog-posts/blog-posts.php:329 widgets/heading/heading.php:127
4688
+ #: widgets/heading/heading.php:242
4689
+ msgid "After Title"
4690
+ msgstr ""
4691
+
4692
+ #: widgets/blog-posts/blog-posts.php:330
4693
+ msgid "After Content"
4694
+ msgstr ""
4695
+
4696
+ #: widgets/blog-posts/blog-posts.php:346
4697
+ #: widgets/woo-product-carousel/woo-product-carousel.php:112
4698
+ #: widgets/woo-product-carousel/woo-product-carousel.php:121
4699
+ #: widgets/woo-product-carousel/woo-product-carousel.php:155
4700
+ #: widgets/woo-product-list/woo-product-list.php:67
4701
+ #: widgets/woo-product-list/woo-product-list.php:76
4702
+ #: widgets/woo-product-list/woo-product-list.php:110
4703
+ msgid "Category"
4704
+ msgstr ""
4705
+
4706
+ #: widgets/blog-posts/blog-posts.php:347
4707
+ #: widgets/instagram-feed/instagram-feed.php:781
4708
+ #: widgets/instagram-feed/instagram-feed.php:921
4709
+ msgid "Comment"
4710
+ msgstr ""
4711
+
4712
+ #: widgets/blog-posts/blog-posts.php:362
4713
+ msgid "Show Author Image"
4714
+ msgstr ""
4715
+
4716
+ #: widgets/blog-posts/blog-posts.php:376
4717
+ msgid "Author Icon"
4718
+ msgstr ""
4719
+
4720
+ #: widgets/blog-posts/blog-posts.php:393 widgets/timeline/timeline.php:336
4721
+ msgid "Date Icon"
4722
+ msgstr ""
4723
+
4724
+ #: widgets/blog-posts/blog-posts.php:409
4725
+ msgid "Category Icon"
4726
+ msgstr ""
4727
+
4728
+ #: widgets/blog-posts/blog-posts.php:425
4729
+ msgid "Comment Icon"
4730
+ msgstr ""
4731
+
4732
+ #: widgets/blog-posts/blog-posts.php:446
4733
+ msgid "Read More Button"
4734
+ msgstr ""
4735
+
4736
+ #: widgets/blog-posts/blog-posts.php:454 widgets/button/button.php:44
4737
+ #: widgets/caldera-forms/caldera-forms.php:70 widgets/chart/chart.php:74
4738
+ #: widgets/chart/chart.php:182 widgets/contact-form7/contact-form7.php:69
4739
+ #: widgets/countdown-timer/countdown-timer.php:389
4740
+ #: widgets/countdown-timer/countdown-timer.php:601
4741
+ #: widgets/countdown-timer/countdown-timer.php:877
4742
+ #: widgets/countdown-timer/countdown-timer.php:1152
4743
+ #: widgets/countdown-timer/countdown-timer.php:1428
4744
+ #: widgets/creative-button/creative-button.php:44
4745
+ #: widgets/gallery/gallery.php:1434 widgets/icon-box/icon-box.php:209
4746
+ #: widgets/image-box/image-box.php:273
4747
+ #: widgets/image-comparison/image-comparison.php:80
4748
+ #: widgets/image-comparison/image-comparison.php:106
4749
+ #: widgets/image-comparison/image-comparison.php:243
4750
+ #: widgets/mail-chimp/mail-chimp.php:114 widgets/mail-chimp/mail-chimp.php:207
4751
+ #: widgets/mail-chimp/mail-chimp.php:300 widgets/mail-chimp/mail-chimp.php:381
4752
+ #: widgets/mail-chimp/mail-chimp.php:538 widgets/page-list/page-list.php:275
4753
+ #: widgets/pricing/pricing.php:322 widgets/social-share/social-share.php:223
4754
+ #: widgets/social/social.php:172 widgets/team/team.php:208
4755
+ #: widgets/twitter-feed/twitter-feed.php:144 widgets/we-forms/we-forms.php:247
4756
+ #: widgets/woo-category-list/woo-category-list.php:508
4757
+ msgid "Label"
4758
+ msgstr ""
4759
+
4760
+ #: widgets/blog-posts/blog-posts.php:456 widgets/blog-posts/blog-posts.php:457
4761
+ #: widgets/button/button.php:46 widgets/button/button.php:47
4762
+ #: widgets/creative-button/creative-button.php:46
4763
+ #: widgets/creative-button/creative-button.php:47
4764
+ #: widgets/icon-box/icon-box.php:211 widgets/icon-box/icon-box.php:212
4765
+ #: widgets/image-box/image-box.php:275 widgets/image-box/image-box.php:276
4766
+ #: widgets/pricing/pricing.php:324 widgets/pricing/pricing.php:325
4767
+ msgid "Learn more "
4768
+ msgstr ""
4769
+
4770
+ #: widgets/blog-posts/blog-posts.php:464 widgets/button/button.php:84
4771
+ #: widgets/creative-button/creative-button.php:84
4772
+ #: widgets/dual-button/dual-button.php:185
4773
+ #: widgets/dual-button/dual-button.php:314 widgets/funfact/funfact.php:73
4774
+ #: widgets/icon-box/icon-box.php:66 widgets/icon-box/icon-box.php:244
4775
+ #: widgets/image-box/image-box.php:141 widgets/image-box/image-box.php:309
4776
+ #: widgets/pricing/pricing.php:104 widgets/pricing/pricing.php:344
4777
+ #: widgets/video/video.php:79
4778
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1315
4779
+ #: widgets/woo-product-list/woo-product-list.php:1479
4780
+ msgid "Add icon? "
4781
+ msgstr ""
4782
+
4783
+ #: widgets/blog-posts/blog-posts.php:494 widgets/button/button.php:114
4784
+ #: widgets/creative-button/creative-button.php:111
4785
+ #: widgets/dual-button/dual-button.php:215
4786
+ #: widgets/dual-button/dual-button.php:344 widgets/icon-box/icon-box.php:278
4787
+ #: widgets/image-accordion/image-accordion.php:106
4788
+ #: widgets/image-box/image-box.php:176 widgets/image-box/image-box.php:342
4789
+ #: widgets/image-comparison/image-comparison.php:62
4790
+ #: widgets/image-comparison/image-comparison.php:255
4791
+ #: widgets/mail-chimp/mail-chimp.php:172 widgets/mail-chimp/mail-chimp.php:266
4792
+ #: widgets/mail-chimp/mail-chimp.php:358 widgets/mail-chimp/mail-chimp.php:431
4793
+ #: widgets/mail-chimp/mail-chimp.php:498 widgets/pricing/pricing.php:375
4794
+ #: widgets/pricing/pricing.php:1439 widgets/social-share/social-share.php:67
4795
+ #: widgets/social/social.php:61 widgets/table/table.php:152
4796
+ #: widgets/table/table.php:426 widgets/video/video.php:114
4797
+ msgid "Before"
4798
+ msgstr ""
4799
+
4800
+ #: widgets/blog-posts/blog-posts.php:495 widgets/button/button.php:115
4801
+ #: widgets/creative-button/creative-button.php:112
4802
+ #: widgets/dual-button/dual-button.php:216
4803
+ #: widgets/dual-button/dual-button.php:345 widgets/icon-box/icon-box.php:279
4804
+ #: widgets/image-accordion/image-accordion.php:107
4805
+ #: widgets/image-box/image-box.php:177 widgets/image-box/image-box.php:343
4806
+ #: widgets/image-comparison/image-comparison.php:88
4807
+ #: widgets/image-comparison/image-comparison.php:316
4808
+ #: widgets/mail-chimp/mail-chimp.php:173 widgets/mail-chimp/mail-chimp.php:267
4809
+ #: widgets/mail-chimp/mail-chimp.php:359 widgets/mail-chimp/mail-chimp.php:432
4810
+ #: widgets/mail-chimp/mail-chimp.php:499 widgets/pricing/pricing.php:376
4811
+ #: widgets/pricing/pricing.php:1443 widgets/social-share/social-share.php:68
4812
+ #: widgets/social/social.php:62 widgets/table/table.php:153
4813
+ #: widgets/table/table.php:427 widgets/video/video.php:115
4814
+ msgid "After"
4815
+ msgstr ""
4816
+
4817
+ #: widgets/blog-posts/blog-posts.php:531 widgets/button/button.php:150
4818
+ #: widgets/creative-button/creative-button.php:147
4819
+ #: widgets/pricing/pricing.php:415
4820
+ msgid "Class"
4821
+ msgstr ""
4822
+
4823
+ #: widgets/blog-posts/blog-posts.php:533 widgets/button/button.php:152
4824
+ #: widgets/creative-button/creative-button.php:149
4825
+ #: widgets/pricing/pricing.php:417
4826
+ msgid "Class Name"
4827
+ msgstr ""
4828
+
4829
+ #: widgets/blog-posts/blog-posts.php:540 widgets/button/button.php:159
4830
+ #: widgets/creative-button/creative-button.php:156
4831
+ #: widgets/pricing/pricing.php:424
4832
+ msgid "id"
4833
+ msgstr ""
4834
+
4835
+ #: widgets/blog-posts/blog-posts.php:542 widgets/button/button.php:161
4836
+ #: widgets/creative-button/creative-button.php:158
4837
+ #: widgets/pricing/pricing.php:426
4838
+ msgid "ID"
4839
+ msgstr ""
4840
+
4841
+ #: widgets/blog-posts/blog-posts.php:579 widgets/page-list/page-list.php:189
4842
+ #: widgets/page-list/page-list.php:396 widgets/testimonial/testimonial.php:714
4843
+ #: widgets/woo-category-list/woo-category-list.php:592
4844
+ #: widgets/woo-category-list/woo-category-list.php:890
4845
+ #: widgets/woo-product-carousel/woo-product-carousel.php:656
4846
+ #: widgets/woo-product-carousel/woo-product-carousel.php:682
4847
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1118
4848
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1565
4849
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2520
4850
+ #: widgets/woo-product-list/woo-product-list.php:819
4851
+ #: widgets/woo-product-list/woo-product-list.php:845
4852
+ #: widgets/woo-product-list/woo-product-list.php:1281
4853
+ #: widgets/woo-product-list/woo-product-list.php:1899
4854
+ #: widgets/woo-product-list/woo-product-list.php:2308
4855
+ msgid "Vertical Alignment"
4856
+ msgstr ""
4857
+
4858
+ #: widgets/blog-posts/blog-posts.php:587 widgets/funfact/funfact.php:959
4859
+ #: widgets/nav-menu/nav-menu.php:824 widgets/pricing/pricing.php:1392
4860
+ #: widgets/pricing/pricing.php:1462
4861
+ #: widgets/woo-category-list/woo-category-list.php:600
4862
+ #: widgets/woo-category-list/woo-category-list.php:898
4863
+ #: widgets/woo-product-carousel/woo-product-carousel.php:665
4864
+ #: widgets/woo-product-carousel/woo-product-carousel.php:691
4865
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1127
4866
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1574
4867
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2529
4868
+ #: widgets/woo-product-list/woo-product-list.php:828
4869
+ #: widgets/woo-product-list/woo-product-list.php:854
4870
+ #: widgets/woo-product-list/woo-product-list.php:1290
4871
+ #: widgets/woo-product-list/woo-product-list.php:1908
4872
+ #: widgets/woo-product-list/woo-product-list.php:2317
4873
+ msgid "Middle"
4874
+ msgstr ""
4875
+
4876
+ #: widgets/blog-posts/blog-posts.php:605
4877
+ msgid "Container Border radius"
4878
+ msgstr ""
4879
+
4880
+ #: widgets/blog-posts/blog-posts.php:617
4881
+ msgid "Container Padding"
4882
+ msgstr ""
4883
+
4884
+ #: widgets/blog-posts/blog-posts.php:629 widgets/blog-posts/blog-posts.php:899
4885
+ #: widgets/faq/faq.php:273
4886
+ msgid "Container Margin"
4887
+ msgstr ""
4888
+
4889
+ #: widgets/blog-posts/blog-posts.php:657 widgets/faq/faq.php:242
4890
+ #: widgets/gallery/gallery.php:428 widgets/team/team.php:664
4891
+ msgid "Content Padding"
4892
+ msgstr ""
4893
+
4894
+ #: widgets/blog-posts/blog-posts.php:670 widgets/blog-posts/blog-posts.php:680
4895
+ msgid "Container Border"
4896
+ msgstr ""
4897
+
4898
+ #: widgets/blog-posts/blog-posts.php:688 widgets/faq/faq.php:222
4899
+ msgid "Content Border"
4900
+ msgstr ""
4901
+
4902
+ #: widgets/blog-posts/blog-posts.php:701 widgets/blog-posts/blog-posts.php:2313
4903
+ #: widgets/button/button.php:286 widgets/pricing/pricing.php:548
4904
+ #: widgets/pricing/pricing.php:775 widgets/pricing/pricing.php:1562
4905
+ #: widgets/pricing/pricing.php:2080 widgets/table/table.php:1428
4906
+ #: widgets/table/table.php:2228 widgets/video/video.php:583
4907
+ msgctxt "Border Control"
4908
+ msgid "Border Type"
4909
+ msgstr ""
4910
+
4911
+ #: widgets/blog-posts/blog-posts.php:705 widgets/blog-posts/blog-posts.php:2317
4912
+ #: widgets/button/button.php:290 widgets/pricing/pricing.php:552
4913
+ #: widgets/pricing/pricing.php:779 widgets/pricing/pricing.php:1566
4914
+ #: widgets/pricing/pricing.php:2084 widgets/table/table.php:1433
4915
+ #: widgets/table/table.php:2233 widgets/video/video.php:587
4916
+ msgctxt "Border Control"
4917
+ msgid "Solid"
4918
+ msgstr ""
4919
+
4920
+ #: widgets/blog-posts/blog-posts.php:706 widgets/blog-posts/blog-posts.php:2318
4921
+ #: widgets/button/button.php:291 widgets/pricing/pricing.php:553
4922
+ #: widgets/pricing/pricing.php:780 widgets/pricing/pricing.php:1567
4923
+ #: widgets/pricing/pricing.php:2085 widgets/table/table.php:1434
4924
+ #: widgets/table/table.php:2234 widgets/video/video.php:588
4925
+ msgctxt "Border Control"
4926
+ msgid "Double"
4927
+ msgstr ""
4928
+
4929
+ #: widgets/blog-posts/blog-posts.php:707 widgets/blog-posts/blog-posts.php:2319
4930
+ #: widgets/button/button.php:292 widgets/pricing/pricing.php:554
4931
+ #: widgets/pricing/pricing.php:781 widgets/pricing/pricing.php:1568
4932
+ #: widgets/pricing/pricing.php:2086 widgets/table/table.php:1435
4933
+ #: widgets/table/table.php:2235 widgets/video/video.php:589
4934
+ msgctxt "Border Control"
4935
+ msgid "Dotted"
4936
+ msgstr ""
4937
+
4938
+ #: widgets/blog-posts/blog-posts.php:708 widgets/blog-posts/blog-posts.php:2320
4939
+ #: widgets/button/button.php:293 widgets/pricing/pricing.php:555
4940
+ #: widgets/pricing/pricing.php:782 widgets/pricing/pricing.php:1569
4941
+ #: widgets/pricing/pricing.php:2087 widgets/table/table.php:1436
4942
+ #: widgets/table/table.php:2236 widgets/video/video.php:590
4943
+ msgctxt "Border Control"
4944
+ msgid "Dashed"
4945
+ msgstr ""
4946
+
4947
+ #: widgets/blog-posts/blog-posts.php:709 widgets/blog-posts/blog-posts.php:2321
4948
+ #: widgets/button/button.php:294 widgets/pricing/pricing.php:556
4949
+ #: widgets/pricing/pricing.php:783 widgets/pricing/pricing.php:1570
4950
+ #: widgets/pricing/pricing.php:2088 widgets/table/table.php:1437
4951
+ #: widgets/table/table.php:2237 widgets/video/video.php:591
4952
+ msgctxt "Border Control"
4953
+ msgid "Groove"
4954
+ msgstr ""
4955
+
4956
+ #: widgets/blog-posts/blog-posts.php:723 widgets/blog-posts/blog-posts.php:2331
4957
+ #: widgets/button/button.php:305 widgets/pricing/pricing.php:793
4958
+ #: widgets/pricing/pricing.php:1580 widgets/pricing/pricing.php:2098
4959
+ #: widgets/table/table.php:1447 widgets/table/table.php:2247
4960
+ #: widgets/video/video.php:601
4961
+ msgctxt "Border Control"
4962
+ msgid "Width"
4963
+ msgstr ""
4964
+
4965
+ #: widgets/blog-posts/blog-posts.php:750 widgets/blog-posts/blog-posts.php:769
4966
+ #: widgets/blog-posts/blog-posts.php:2355
4967
+ #: widgets/blog-posts/blog-posts.php:2380 widgets/button/button.php:326
4968
+ #: widgets/button/button.php:345 widgets/pricing/pricing.php:817
4969
+ #: widgets/pricing/pricing.php:842 widgets/pricing/pricing.php:1598
4970
+ #: widgets/pricing/pricing.php:1617 widgets/table/table.php:1475
4971
+ #: widgets/table/table.php:1494 widgets/video/video.php:619
4972
+ #: widgets/video/video.php:638
4973
+ msgctxt "Border Control"
4974
+ msgid "Color"
4975
+ msgstr ""
4976
+
4977
+ #: widgets/blog-posts/blog-posts.php:763 widgets/blog-posts/blog-posts.php:1039
4978
+ #: widgets/blog-posts/blog-posts.php:1598
4979
+ #: widgets/blog-posts/blog-posts.php:2028
4980
+ #: widgets/blog-posts/blog-posts.php:2281
4981
+ #: widgets/blog-posts/blog-posts.php:2371 widgets/button/button.php:242
4982
+ #: widgets/button/button.php:339 widgets/caldera-forms/caldera-forms.php:354
4983
+ #: widgets/caldera-forms/caldera-forms.php:809
4984
+ #: widgets/category-list/category-list.php:321
4985
+ #: widgets/category-list/category-list.php:380 widgets/chart/chart.php:127
4986
+ #: widgets/chart/chart.php:235 widgets/client-logo/client-logo.php:540
4987
+ #: widgets/client-logo/client-logo.php:691
4988
+ #: widgets/client-logo/client-logo.php:757
4989
+ #: widgets/client-logo/client-logo.php:999
4990
+ #: widgets/client-logo/client-logo.php:1405
4991
+ #: widgets/contact-form7/contact-form7.php:354
4992
+ #: widgets/contact-form7/contact-form7.php:809
4993
+ #: widgets/creative-button/creative-button.php:330
4994
+ #: widgets/dual-button/dual-button.php:561
4995
+ #: widgets/dual-button/dual-button.php:781
4996
+ #: widgets/facebook-feed/facebook-feed.php:367
4997
+ #: widgets/facebook-feed/facebook-feed.php:477
4998
+ #: widgets/facebook-feed/facebook-feed.php:543
4999
+ #: widgets/facebook-feed/facebook-feed.php:683
5000
+ #: widgets/facebook-feed/facebook-feed.php:822 widgets/funfact/funfact.php:457
5001
+ #: widgets/funfact/funfact.php:581 widgets/gallery/gallery.php:494
5002
+ #: widgets/gallery/gallery.php:723 widgets/gallery/gallery.php:1176
5003
+ #: widgets/gallery/gallery.php:1365 widgets/gallery/gallery.php:1554
5004
+ #: widgets/gallery/gallery.php:1785 widgets/gallery/gallery.php:1966
5005
+ #: widgets/header-offcanvas/header-offcanvas.php:160
5006
+ #: widgets/header-offcanvas/header-offcanvas.php:355
5007
+ #: widgets/header-search/header-search.php:134 widgets/hotspot/hotspot.php:88
5008
+ #: widgets/icon-box/icon-box.php:575 widgets/icon-box/icon-box.php:1118
5009
+ #: widgets/icon-box/icon-box.php:1273 widgets/icon-box/icon-box.php:1426
5010
+ #: widgets/image-accordion/image-accordion.php:629
5011
+ #: widgets/image-accordion/image-accordion.php:760
5012
+ #: widgets/image-box/image-box.php:420 widgets/image-box/image-box.php:969
5013
+ #: widgets/image-box/image-box.php:1150 widgets/image-box/image-box.php:1232
5014
+ #: widgets/image-box/image-box.php:1376
5015
+ #: widgets/image-comparison/image-comparison.php:488
5016
+ #: widgets/instagram-feed/instagram-feed.php:587
5017
+ #: widgets/instagram-feed/instagram-feed.php:873
5018
+ #: widgets/instagram-feed/instagram-feed.php:1145
5019
+ #: widgets/mail-chimp/mail-chimp.php:973 widgets/nav-menu/nav-menu.php:384
5020
+ #: widgets/nav-menu/nav-menu.php:589 widgets/nav-menu/nav-menu.php:985
5021
+ #: widgets/nav-menu/nav-menu.php:1194 widgets/ninja-forms/ninja-forms.php:757
5022
+ #: widgets/page-list/page-list.php:491 widgets/page-list/page-list.php:677
5023
+ #: widgets/page-list/page-list.php:760 widgets/piechart/piechart.php:576
5024
+ #: widgets/post-list/post-list.php:491 widgets/post-list/post-list.php:551
5025
+ #: widgets/post-list/post-list.php:710 widgets/pricing/pricing.php:491
5026
+ #: widgets/pricing/pricing.php:608 widgets/pricing/pricing.php:728
5027
+ #: widgets/pricing/pricing.php:833 widgets/pricing/pricing.php:966
5028
+ #: widgets/pricing/pricing.php:1087 widgets/pricing/pricing.php:1523
5029
+ #: widgets/pricing/pricing.php:1611 widgets/pricing/pricing.php:1771
5030
+ #: widgets/pricing/pricing.php:2029 widgets/pricing/pricing.php:2138
5031
+ #: widgets/pricing/pricing.php:2211 widgets/social-share/social-share.php:299
5032
+ #: widgets/social/social.php:261 widgets/table/table.php:1119
5033
+ #: widgets/table/table.php:1386 widgets/table/table.php:1488
5034
+ #: widgets/table/table.php:1760 widgets/table/table.php:1902
5035
+ #: widgets/team/team.php:296 widgets/team/team.php:567
5036
+ #: widgets/team/team.php:1160 widgets/team/team.php:1241
5037
+ #: widgets/team/team.php:1319 widgets/team/team.php:1416
5038
+ #: widgets/team/team.php:2032 widgets/testimonial/testimonial.php:1002
5039
+ #: widgets/testimonial/testimonial.php:1225
5040
+ #: widgets/testimonial/testimonial.php:1358
5041
+ #: widgets/testimonial/testimonial.php:1454
5042
+ #: widgets/testimonial/testimonial.php:2169 widgets/timeline/timeline.php:229
5043
+ #: widgets/timeline/timeline.php:809 widgets/timeline/timeline.php:1068
5044
+ #: widgets/twitter-feed/twitter-feed.php:412
5045
+ #: widgets/twitter-feed/twitter-feed.php:718
5046
+ #: widgets/twitter-feed/twitter-feed.php:909
5047
+ #: widgets/twitter-feed/twitter-feed.php:991
5048
+ #: widgets/twitter-feed/twitter-feed.php:1094
5049
+ #: widgets/twitter-feed/twitter-feed.php:1299
5050
+ #: widgets/vertical-menu/vertical-menu.php:396
5051
+ #: widgets/vertical-menu/vertical-menu.php:505 widgets/video/video.php:539
5052
+ #: widgets/video/video.php:632 widgets/we-forms/we-forms.php:532
5053
+ #: widgets/woo-category-list/woo-category-list.php:309
5054
+ #: widgets/woo-category-list/woo-category-list.php:469
5055
+ #: widgets/woo-category-list/woo-category-list.php:669
5056
+ #: widgets/woo-category-list/woo-category-list.php:742
5057
+ #: widgets/woo-category-list/woo-category-list.php:964
5058
+ #: widgets/woo-category-list/woo-category-list.php:1036
5059
+ #: widgets/woo-mini-cart/woo-mini-cart.php:66
5060
+ #: widgets/woo-mini-cart/woo-mini-cart.php:226
5061
+ #: widgets/woo-mini-cart/woo-mini-cart.php:431
5062
+ #: widgets/woo-mini-cart/woo-mini-cart.php:552
5063
+ #: widgets/woo-mini-cart/woo-mini-cart.php:613
5064
+ #: widgets/woo-mini-cart/woo-mini-cart.php:841
5065
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1088
5066
+ #: widgets/woo-product-carousel/woo-product-carousel.php:579
5067
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1260
5068
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1476
5069
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1689
5070
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1860
5071
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2127
5072
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2355
5073
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2655
5074
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2825
5075
+ #: widgets/woo-product-list/woo-product-list.php:464
5076
+ #: widgets/woo-product-list/woo-product-list.php:1424
5077
+ #: widgets/woo-product-list/woo-product-list.php:1640
5078
+ #: widgets/woo-product-list/woo-product-list.php:1811
5079
+ #: widgets/woo-product-list/woo-product-list.php:2023
5080
+ #: widgets/woo-product-list/woo-product-list.php:2443
5081
+ #: widgets/wp-forms/wp-forms.php:580
5082
+ msgid "Hover"
5083
+ msgstr ""
5084
+
5085
+ #: widgets/blog-posts/blog-posts.php:815
5086
+ #: widgets/client-logo/client-logo.php:1182
5087
+ #: widgets/header-offcanvas/header-offcanvas.php:267
5088
+ #: widgets/header-offcanvas/header-offcanvas.php:436
5089
+ #: widgets/header-search/header-search.php:184
5090
+ #: widgets/image-box/image-box.php:907 widgets/nav-menu/nav-menu.php:188
5091
+ #: widgets/page-list/page-list.php:358
5092
+ #: widgets/social-share/social-share.php:479 widgets/social/social.php:441
5093
+ #: widgets/team/team.php:847 widgets/team/team.php:1532
5094
+ #: widgets/testimonial/testimonial.php:1817
5095
+ msgid "Border radius"
5096
+ msgstr ""
5097
+
5098
+ #: widgets/blog-posts/blog-posts.php:855 widgets/post-list/post-list.php:593
5099
+ msgid "Meta"
5100
+ msgstr ""
5101
+
5102
+ #: widgets/blog-posts/blog-posts.php:911
5103
+ #: widgets/woo-product-list/woo-product-list.php:393
5104
+ msgid "Item Margin"
5105
+ msgstr ""
5106
+
5107
+ #: widgets/blog-posts/blog-posts.php:923
5108
+ #: widgets/woo-product-carousel/woo-product-carousel.php:551
5109
+ #: widgets/woo-product-list/woo-product-list.php:381
5110
+ msgid "Item Padding"
5111
+ msgstr ""
5112
+
5113
+ #: widgets/blog-posts/blog-posts.php:1115
5114
+ msgid "Floating Date"
5115
+ msgstr ""
5116
+
5117
+ #: widgets/blog-posts/blog-posts.php:1284
5118
+ msgid "Date Typography"
5119
+ msgstr ""
5120
+
5121
+ #: widgets/blog-posts/blog-posts.php:1309
5122
+ msgid "Month Typography"
5123
+ msgstr ""
5124
+
5125
+ #: widgets/blog-posts/blog-posts.php:1398
5126
+ msgid "Triangle"
5127
+ msgstr ""
5128
+
5129
+ #: widgets/blog-posts/blog-posts.php:1409
5130
+ msgid "Triangle Background"
5131
+ msgstr ""
5132
+
5133
+ #: widgets/blog-posts/blog-posts.php:1426
5134
+ msgid "Triangle Size"
5135
+ msgstr ""
5136
+
5137
+ #: widgets/blog-posts/blog-posts.php:1454
5138
+ msgid "Triangle Position Left"
5139
+ msgstr ""
5140
+
5141
+ #: widgets/blog-posts/blog-posts.php:1482
5142
+ msgid "Triangle Position Top"
5143
+ msgstr ""
5144
+
5145
+ #: widgets/blog-posts/blog-posts.php:1511
5146
+ msgid "Triangle Direction"
5147
+ msgstr ""
5148
+
5149
+ #: widgets/blog-posts/blog-posts.php:1515
5150
+ #: widgets/client-logo/client-logo.php:592 widgets/funfact/funfact.php:301
5151
+ #: widgets/funfact/funfact.php:344 widgets/icon-box/icon-box.php:1449
5152
+ #: widgets/image-box/image-box.php:681
5153
+ msgid "From Left"
5154
+ msgstr ""
5155
+
5156
+ #: widgets/blog-posts/blog-posts.php:1519
5157
+ #: widgets/client-logo/client-logo.php:604 widgets/funfact/funfact.php:305
5158
+ #: widgets/funfact/funfact.php:348 widgets/icon-box/icon-box.php:1457
5159
+ #: widgets/image-box/image-box.php:689
5160
+ msgid "From Right"
5161
+ msgstr ""
5162
+
5163
+ #: widgets/blog-posts/blog-posts.php:1654
5164
+ #: widgets/blog-posts/blog-posts.php:1849 widgets/timeline/timeline.php:433
5165
+ msgid "justify"
5166
+ msgstr ""
5167
+
5168
+ #: widgets/blog-posts/blog-posts.php:1694
5169
+ #: widgets/client-logo/client-logo.php:429
5170
+ #: widgets/testimonial/testimonial.php:271
5171
+ msgid "Show Separator"
5172
+ msgstr ""
5173
+
5174
+ #: widgets/blog-posts/blog-posts.php:1708
5175
+ #: widgets/blog-posts/blog-posts.php:2017
5176
+ #: widgets/blog-posts/blog-posts.php:2036
5177
+ #: widgets/client-logo/client-logo.php:1394
5178
+ #: widgets/client-logo/client-logo.php:1413
5179
+ #: widgets/testimonial/testimonial.php:1212
5180
+ #: widgets/testimonial/testimonial.php:1232
5181
+ msgid "Separator Color"
5182
+ msgstr ""
5183
+
5184
+ #: widgets/blog-posts/blog-posts.php:1881
5185
+ msgid "Show Highlight Border"
5186
+ msgstr ""
5187
+
5188
+ #: widgets/blog-posts/blog-posts.php:1894
5189
+ #: widgets/client-logo/client-logo.php:1288
5190
+ msgid "Hight"
5191
+ msgstr ""
5192
+
5193
+ #: widgets/blog-posts/blog-posts.php:1948
5194
+ #: widgets/client-logo/client-logo.php:1336
5195
+ msgid "Top Bottom Position"
5196
+ msgstr ""
5197
+
5198
+ #: widgets/blog-posts/blog-posts.php:1976
5199
+ #: widgets/client-logo/client-logo.php:1360
5200
+ msgid "Left Right Position"
5201
+ msgstr ""
5202
+
5203
+ #: widgets/blog-posts/blog-posts.php:2045
5204
+ msgid "Transition"
5205
+ msgstr ""
5206
+
5207
+ #: widgets/blog-posts/blog-posts.php:2079
5208
+ msgid "Author Image"
5209
+ msgstr ""
5210
+
5211
+ #: widgets/blog-posts/blog-posts.php:2090
5212
+ msgid "Image Width"
5213
+ msgstr ""
5214
+
5215
+ #: widgets/blog-posts/blog-posts.php:2117
5216
+ msgid "Image Height"
5217
+ msgstr ""
5218
+
5219
+ #: widgets/blog-posts/blog-posts.php:2179 widgets/tablepress/tablepress.php:654
5220
+ msgid "Radius"
5221
+ msgstr ""
5222
+
5223
+ #: widgets/blog-posts/blog-posts.php:2198 widgets/button/button-handler.php:11
5224
+ #: widgets/button/button.php:172 widgets/caldera-forms/caldera-forms.php:564
5225
+ #: widgets/contact-form7/contact-form7.php:564
5226
+ #: widgets/creative-button/creative-button.php:252
5227
+ #: widgets/dual-button/dual-button.php:157
5228
+ #: widgets/dual-button/dual-button.php:286 widgets/icon-box/icon-box.php:987
5229
+ #: widgets/image-accordion/image-accordion.php:504
5230
+ #: widgets/image-box/image-box.php:258 widgets/image-box/image-box.php:1259
5231
+ #: widgets/instagram-feed/instagram-feed.php:1040
5232
+ #: widgets/mail-chimp/mail-chimp.php:807 widgets/pricing/pricing.php:316
5233
+ #: widgets/pricing/pricing.php:1951 widgets/pricing/pricing.php:2335
5234
+ #: widgets/table/table.php:709 widgets/table/table.php:1289
5235
+ #: widgets/twitter-feed/twitter-feed.php:309 widgets/we-forms/we-forms.php:342
5236
+ #: widgets/woo-mini-cart/woo-mini-cart.php:991
5237
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1063
5238
+ #: widgets/woo-product-list/woo-product-list.php:1226
5239
+ msgid "Button"
5240
+ msgstr ""
5241
+
5242
+ #: widgets/blog-posts/blog-posts.php:2219 widgets/button/button.php:405
5243
+ #: widgets/caldera-forms/caldera-forms.php:509 widgets/chart/chart.php:490
5244
+ #: widgets/chart/chart.php:550 widgets/chart/chart.php:742
5245
+ #: widgets/contact-form7/contact-form7.php:509
5246
+ #: widgets/creative-button/creative-button.php:568
5247
+ #: widgets/gallery/gallery.php:1759
5248
+ #: widgets/header-offcanvas/header-offcanvas.php:204
5249
+ #: widgets/header-offcanvas/header-offcanvas.php:399
5250
+ #: widgets/header-search/header-search.php:75
5251
+ #: widgets/mail-chimp/mail-chimp.php:779 widgets/mail-chimp/mail-chimp.php:1138
5252
+ #: widgets/nav-menu/nav-menu.php:920 widgets/table/table.php:1584
5253
+ #: widgets/team/team.php:1010 widgets/testimonial/testimonial.php:915
5254
+ #: widgets/testimonial/testimonial.php:1037
5255
+ #: widgets/testimonial/testimonial.php:1964
5256
+ #: widgets/twitter-feed/twitter-feed.php:1046
5257
+ #: widgets/woo-product-carousel/woo-product-carousel.php:853
5258
+ #: widgets/woo-product-list/woo-product-list.php:1015
5259
+ msgid "Font Size"
5260
+ msgstr ""
5261
+
5262
+ #: widgets/blog-posts/blog-posts.php:2258
5263
+ #: widgets/blog-posts/blog-posts.php:2288 widgets/button/button.php:218
5264
+ #: widgets/button/button.php:249 widgets/category-list/category-list.php:364
5265
+ #: widgets/creative-button/creative-button.php:298
5266
+ #: widgets/creative-button/creative-button.php:337
5267
+ #: widgets/gallery/gallery.php:1120 widgets/gallery/gallery.php:1195
5268
+ #: widgets/gallery/gallery.php:1310 widgets/gallery/gallery.php:1384
5269
+ #: widgets/gallery/gallery.php:1499 widgets/gallery/gallery.php:1573
5270
+ #: widgets/header-info/header-info.php:140 widgets/hotspot/hotspot.php:656
5271
+ #: widgets/hotspot/hotspot.php:700 widgets/icon-box/icon-box.php:1060
5272
+ #: widgets/icon-box/icon-box.php:1125
5273
+ #: widgets/image-accordion/image-accordion.php:550
5274
+ #: widgets/image-accordion/image-accordion.php:636
5275
+ #: widgets/image-box/image-box.php:1318 widgets/image-box/image-box.php:1383
5276
+ #: widgets/instagram-feed/instagram-feed.php:1110
5277
+ #: widgets/instagram-feed/instagram-feed.php:1152
5278
+ #: widgets/ninja-forms/ninja-forms.php:102
5279
+ #: widgets/ninja-forms/ninja-forms.php:153
5280
+ #: widgets/ninja-forms/ninja-forms.php:271
5281
+ #: widgets/ninja-forms/ninja-forms.php:509
5282
+ #: widgets/ninja-forms/ninja-forms.php:559
5283
+ #: widgets/ninja-forms/ninja-forms.php:674
5284
+ #: widgets/ninja-forms/ninja-forms.php:776
5285
+ #: widgets/ninja-forms/ninja-forms.php:815
5286
+ #: widgets/ninja-forms/ninja-forms.php:854 widgets/page-list/page-list.php:732
5287
+ #: widgets/post-list/post-list.php:535 widgets/pricing/pricing.php:2006
5288
+ #: widgets/pricing/pricing.php:2036 widgets/table/table.php:82
5289
+ #: widgets/table/table.php:358 widgets/table/table.php:837
5290
+ #: widgets/table/table.php:1105 widgets/table/table.php:1137
5291
+ #: widgets/table/table.php:1169 widgets/table/table.php:1363
5292
+ #: widgets/table/table.php:1393 widgets/tablepress/tablepress.php:323
5293
+ #: widgets/tablepress/tablepress.php:498 widgets/tablepress/tablepress.php:545
5294
+ #: widgets/twitter-feed/twitter-feed.php:285
5295
+ #: widgets/twitter-feed/twitter-feed.php:377
5296
+ #: widgets/twitter-feed/twitter-feed.php:419 widgets/video/video.php:516
5297
+ #: widgets/video/video.php:546 widgets/we-forms/we-forms.php:507
5298
+ #: widgets/we-forms/we-forms.php:539
5299
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1235
5300
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1267
5301
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1653
5302
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1696
5303
+ #: widgets/woo-product-list/woo-product-list.php:532
5304
+ #: widgets/woo-product-list/woo-product-list.php:590
5305
+ #: widgets/woo-product-list/woo-product-list.php:672
5306
+ #: widgets/woo-product-list/woo-product-list.php:1399
5307
+ #: widgets/woo-product-list/woo-product-list.php:1431
5308
+ #: widgets/woo-product-list/woo-product-list.php:1987
5309
+ #: widgets/woo-product-list/woo-product-list.php:2030
5310
+ #: widgets/wp-forms/wp-forms.php:67 widgets/wp-forms/wp-forms.php:146
5311
+ #: widgets/wp-forms/wp-forms.php:333 widgets/wp-forms/wp-forms.php:389
5312
+ #: widgets/wp-forms/wp-forms.php:510 widgets/wp-forms/wp-forms.php:599
5313
+ #: widgets/wp-forms/wp-forms.php:638
5314
+ msgid "Text Color"
5315
+ msgstr ""
5316
+
5317
+ #: widgets/business-hours/business-hours-handler.php:11
5318
+ msgid "Business Hours"
5319
+ msgstr ""
5320
+
5321
+ #: widgets/business-hours/business-hours.php:46
5322
+ #: widgets/business-hours/business-hours.php:241
5323
+ msgid "Day"
5324
+ msgstr ""
5325
+
5326
+ #: widgets/business-hours/business-hours.php:48
5327
+ #: widgets/business-hours/business-hours.php:132
5328
+ msgid "Saturday"
5329
+ msgstr ""
5330
+
5331
+ #: widgets/business-hours/business-hours.php:55
5332
+ #: widgets/business-hours/business-hours.php:305
5333
+ msgid "Time"
5334
+ msgstr ""
5335
+
5336
+ #: widgets/business-hours/business-hours.php:57
5337
+ msgid "9:00 AM - 6:00 PM"
5338
+ msgstr ""
5339
+
5340
+ #: widgets/business-hours/business-hours.php:64
5341
+ msgid "Hight Light this day"
5342
+ msgstr ""
5343
+
5344
+ #: widgets/business-hours/business-hours.php:75
5345
+ msgid "Day Color"
5346
+ msgstr ""
5347
+
5348
+ #: widgets/business-hours/business-hours.php:91
5349
+ msgid "Time Color"
5350
+ msgstr ""
5351
+
5352
+ #: widgets/business-hours/business-hours.php:126
5353
+ msgid "Sunday"
5354
+ msgstr ""
5355
+
5356
+ #: widgets/business-hours/business-hours.php:128
5357
+ #: widgets/business-hours/business-hours.php:134
5358
+ msgid "yes"
5359
+ msgstr ""
5360
+
5361
+ #: widgets/business-hours/business-hours.php:133
5362
+ #: widgets/business-hours/business-hours.php:139
5363
+ #: widgets/business-hours/business-hours.php:144
5364
+ #: widgets/business-hours/business-hours.php:149
5365
+ #: widgets/business-hours/business-hours.php:154
5366
+ #: widgets/business-hours/business-hours.php:159
5367
+ msgid "10:00 AM to 7:00 PM"
5368
+ msgstr ""
5369
+
5370
+ #: widgets/business-hours/business-hours.php:138
5371
+ msgid "Monday"
5372
+ msgstr ""
5373
+
5374
+ #: widgets/business-hours/business-hours.php:143
5375
+ msgid "Tues Day"
5376
+ msgstr ""
5377
+
5378
+ #: widgets/business-hours/business-hours.php:148
5379
+ msgid "Wednesday"
5380
+ msgstr ""
5381
+
5382
+ #: widgets/business-hours/business-hours.php:153
5383
+ msgid "Thursday"
5384
+ msgstr ""
5385
+
5386
+ #: widgets/business-hours/business-hours.php:158
5387
+ msgid "Friday"
5388
+ msgstr ""
5389
+
5390
+ #: widgets/business-hours/business-hours.php:173
5391
+ #: widgets/woo-category-list/woo-category-list.php:238
5392
+ #: widgets/woo-mini-cart/woo-mini-cart.php:455
5393
+ #: widgets/woo-product-carousel/woo-product-carousel.php:491
5394
+ #: widgets/woo-product-list/woo-product-list.php:321
5395
+ msgid "Item"
5396
+ msgstr ""
5397
+
5398
+ #: widgets/button/button.php:58 widgets/creative-button/creative-button.php:58
5399
+ #: widgets/icon-box/icon-box.php:224 widgets/image-box/image-box.php:290
5400
+ #: widgets/table/table.php:335
5401
+ msgid "URL"
5402
+ msgstr ""
5403
+
5404
+ #: widgets/button/button.php:75 widgets/client-logo/client-logo.php:165
5405
+ #: widgets/creative-button/creative-button.php:75
5406
+ #: widgets/funfact/funfact.php:214 widgets/gallery/gallery.php:158
5407
+ #: widgets/icon-box/icon-box.php:331
5408
+ #: widgets/image-comparison/image-comparison.php:117
5409
+ #: widgets/post-list/post-list.php:112 widgets/testimonial/testimonial.php:395
5410
+ #: widgets/timeline/timeline.php:328
5411
+ msgid "Settings"
5412
+ msgstr ""
5413
+
5414
+ #: widgets/button/button.php:377
5415
+ #: widgets/creative-button/creative-button.php:540
5416
+ #: widgets/progressbar/progressbar.php:173
5417
+ #: widgets/progressbar/progressbar.php:278
5418
+ msgid "Shadow"
5419
+ msgstr ""
5420
+
5421
+ #: widgets/button/button.php:425
5422
+ msgid "Add space after icon"
5423
+ msgstr ""
5424
+
5425
+ #: widgets/button/button.php:451
5426
+ msgid "Add space before icon"
5427
+ msgstr ""
5428
+
5429
+ #: widgets/button/button.php:478
5430
+ msgid "Move icon Vertically"
5431
+ msgstr ""
5432
+
5433
+ #: widgets/caldera-forms/caldera-forms-handler.php:11
5434
+ #: widgets/caldera-forms/caldera-forms.php:50
5435
+ msgid "Caldera Forms"
5436
+ msgstr ""
5437
+
5438
+ #: widgets/caldera-forms/caldera-forms.php:42
5439
+ msgid "Form Not Found!"
5440
+ msgstr ""
5441
+
5442
+ #: widgets/caldera-forms/caldera-forms.php:112
5443
+ #: widgets/contact-form7/contact-form7.php:111
5444
+ msgid "Hint"
5445
+ msgstr ""
5446
+
5447
+ #: widgets/caldera-forms/caldera-forms.php:146
5448
+ #: widgets/contact-form7/contact-form7.php:145
5449
+ #: widgets/mail-chimp/mail-chimp.php:583
5450
+ msgid "Input"
5451
+ msgstr ""
5452
+
5453
+ #: widgets/caldera-forms/caldera-forms.php:241
5454
+ #: widgets/contact-form7/contact-form7.php:241
5455
+ msgid "Textarea"
5456
+ msgstr ""
5457
+
5458
+ #: widgets/caldera-forms/caldera-forms.php:409
5459
+ #: widgets/contact-form7/contact-form7.php:409
5460
+ #: widgets/ninja-forms/ninja-forms.php:455 widgets/table/table.php:1792
5461
+ #: widgets/we-forms/we-forms.php:207
5462
+ #: widgets/woo-product-list/woo-product-list.php:625
5463
+ #: widgets/woo-product-list/woo-product-list.php:757
5464
+ #: widgets/wp-forms/wp-forms.php:291
5465
+ msgid "Focus"
5466
+ msgstr ""
5467
+
5468
+ #: widgets/caldera-forms/caldera-forms.php:500
5469
+ #: widgets/contact-form7/contact-form7.php:500
5470
+ #: widgets/mail-chimp/mail-chimp.php:126 widgets/mail-chimp/mail-chimp.php:219
5471
+ #: widgets/mail-chimp/mail-chimp.php:312 widgets/mail-chimp/mail-chimp.php:391
5472
+ #: widgets/mail-chimp/mail-chimp.php:755
5473
+ #: widgets/ninja-forms/ninja-forms.php:551 widgets/wp-forms/wp-forms.php:370
5474
+ msgid "Placeholder"
5475
+ msgstr ""
5476
+
5477
+ #: widgets/caldera-forms/caldera-forms.php:539
5478
+ #: widgets/contact-form7/contact-form7.php:539
5479
+ #: widgets/mail-chimp/mail-chimp.php:764
5480
+ msgid "Placeholder Color"
5481
+ msgstr ""
5482
+
5483
+ #: widgets/caldera-forms/caldera-forms.php:645
5484
+ #: widgets/contact-form7/contact-form7.php:645
5485
+ #: widgets/header-search/header-search.php:240
5486
+ #: widgets/social-share/social-share.php:498 widgets/social/social.php:534
5487
+ #: widgets/table/table.php:922 widgets/table/table.php:1195
5488
+ #: widgets/team/team.php:1032 widgets/team/team.php:1613
5489
+ #: widgets/woo-category-list/woo-category-list.php:370
5490
+ msgid "Use Height Width"
5491
+ msgstr ""
5492
+
5493
+ #: widgets/caldera-forms/caldera-forms.php:717 widgets/chart/chart.php:815
5494
+ #: widgets/contact-form7/contact-form7.php:717
5495
+ #: widgets/countdown-timer/countdown-timer.php:267
5496
+ #: widgets/countdown-timer/countdown-timer.php:1668
5497
+ #: widgets/header-search/header-search.php:288
5498
+ #: widgets/icon-box/icon-box.php:761 widgets/social-share/social-share.php:560
5499
+ #: widgets/social/social.php:607 widgets/team/team.php:1095
5500
+ #: widgets/team/team.php:1685 widgets/team/team.php:2184
5501
+ msgid "Line Height"
5502
+ msgstr ""
5503
+
5504
+ #: widgets/caldera-forms/caldera-forms.php:891
5505
+ msgid "Please select a Contact Form From Setting!"
5506
+ msgstr ""
5507
+
5508
+ #: widgets/category-list/category-list-handler.php:11
5509
+ msgid "Category List"
5510
+ msgstr ""
5511
+
5512
+ #: widgets/category-list/category-list.php:38
5513
+ #: widgets/category-list/category-list.php:117
5514
+ #: widgets/facebook-feed/facebook-feed.php:50
5515
+ #: widgets/instagram-feed/instagram-feed.php:49
5516
+ #: widgets/page-list/page-list.php:38 widgets/page-list/page-list.php:438
5517
+ #: widgets/post-list/post-list.php:39 widgets/post-list/post-list.php:284
5518
+ #: widgets/pricing/pricing.php:201 widgets/twitter-feed/twitter-feed.php:92
5519
+ msgid "List"
5520
+ msgstr ""
5521
+
5522
+ #: widgets/category-list/category-list.php:50
5523
+ #: widgets/client-logo/client-logo.php:1051 widgets/funfact/funfact.php:107
5524
+ #: widgets/gallery/gallery.php:337 widgets/gallery/gallery.php:2055
5525
+ #: widgets/page-list/page-list.php:50 widgets/post-list/post-list.php:125
5526
+ #: widgets/progressbar/progressbar.php:50 widgets/team/team.php:53
5527
+ #: widgets/testimonial/testimonial.php:55
5528
+ msgid "Default"
5529
+ msgstr ""
5530
+
5531
+ #: widgets/category-list/category-list.php:54
5532
+ #: widgets/mail-chimp/mail-chimp.php:515 widgets/page-list/page-list.php:54
5533
+ #: widgets/post-list/post-list.php:129
5534
+ msgid "Inline"
5535
+ msgstr ""
5536
+
5537
+ #: widgets/category-list/category-list.php:70
5538
+ #: widgets/category-list/category-list.php:356
5539
+ #: widgets/dual-button/dual-button.php:51
5540
+ #: widgets/dual-button/dual-button.php:155
5541
+ #: widgets/dual-button/dual-button.php:284
5542
+ #: widgets/header-info/header-info.php:60 widgets/page-list/page-list.php:124
5543
+ #: widgets/page-list/page-list.php:724 widgets/post-list/post-list.php:76
5544
+ #: widgets/post-list/post-list.php:527 widgets/social-share/social-share.php:54
5545
+ #: widgets/social/social.php:48 widgets/table/table.php:61
5546
+ #: widgets/table/table.php:313 widgets/table/table.php:618
5547
+ #: widgets/video/video.php:52
5548
+ msgid "Text"
5549
+ msgstr ""
5550
+
5551
+ #: widgets/category-list/category-list.php:73
5552
+ #: widgets/client-logo/client-logo.php:64 widgets/page-list/page-list.php:127
5553
+ #: widgets/post-list/post-list.php:79
5554
+ msgid "List Title"
5555
+ msgstr ""
5556
+
5557
+ #: widgets/category-list/category-list.php:94
5558
+ msgid "Select Category"
5559
+ msgstr ""
5560
+
5561
+ #: widgets/category-list/category-list.php:125
5562
+ #: widgets/post-list/post-list.php:292
5563
+ msgid "Space Between"
5564
+ msgstr ""
5565
+
5566
+ #: widgets/category-list/category-list.php:169
5567
+ #: widgets/page-list/page-list.php:543 widgets/post-list/post-list.php:336
5568
+ #: widgets/pricing/pricing.php:1799
5569
+ msgid "Divider"
5570
+ msgstr ""
5571
+
5572
+ #: widgets/category-list/category-list.php:186 widgets/heading/heading.php:222
5573
+ #: widgets/image-box/image-box.php:757 widgets/page-list/page-list.php:560
5574
+ #: widgets/post-list/post-list.php:353 widgets/pricing/pricing.php:1815
5575
+ #: widgets/tablepress/tablepress.php:213 widgets/tablepress/tablepress.php:340
5576
+ #: widgets/tablepress/tablepress.php:423
5577
+ msgid "Solid"
5578
+ msgstr ""
5579
+
5580
+ #: widgets/category-list/category-list.php:187
5581
+ #: widgets/client-logo/client-logo.php:1053 widgets/heading/heading.php:221
5582
+ #: widgets/image-box/image-box.php:759 widgets/page-list/page-list.php:561
5583
+ #: widgets/post-list/post-list.php:354 widgets/pricing/pricing.php:1817
5584
+ #: widgets/tablepress/tablepress.php:215 widgets/tablepress/tablepress.php:342
5585
+ #: widgets/tablepress/tablepress.php:425
5586
+ msgid "Dotted"
5587
+ msgstr ""
5588
+
5589
+ #: widgets/category-list/category-list.php:188
5590
+ #: widgets/client-logo/client-logo.php:1052 widgets/image-box/image-box.php:760
5591
+ #: widgets/page-list/page-list.php:562 widgets/post-list/post-list.php:355
5592
+ #: widgets/pricing/pricing.php:1818 widgets/tablepress/tablepress.php:216
5593
+ #: widgets/tablepress/tablepress.php:343 widgets/tablepress/tablepress.php:426
5594
+ msgid "Dashed"
5595
+ msgstr ""
5596
+
5597
+ #: widgets/category-list/category-list.php:204
5598
+ #: widgets/page-list/page-list.php:578 widgets/post-list/post-list.php:371
5599
+ #: widgets/pricing/pricing.php:1848
5600
+ msgid "Weight"
5601
+ msgstr ""
5602
+
5603
+ #: widgets/category-list/category-list.php:392
5604
+ msgid "Left Padding"
5605
+ msgstr ""
5606
+
5607
+ #: widgets/chart/chart-handler.php:11 widgets/chart/chart.php:400
5608
+ #: widgets/piechart/piechart.php:382
5609
+ msgid "Chart"
5610
+ msgstr ""
5611
+
5612
+ #: widgets/chart/chart.php:36
5613
+ msgid "Data "
5614
+ msgstr ""
5615
+
5616
+ #: widgets/chart/chart.php:45 widgets/instagram-feed/instagram-feed.php:522
5617
+ #: widgets/instagram-feed/instagram-feed.php:594 widgets/team/team.php:1203
5618
+ #: widgets/team/team.php:1811 widgets/twitter-feed/twitter-feed.php:632
5619
+ #: widgets/twitter-feed/twitter-feed.php:725
5620
+ #: widgets/woo-category-list/woo-category-list.php:90
5621
+ msgid "Name"
5622
+ msgstr ""
5623
+
5624
+ #: widgets/chart/chart.php:47 widgets/chart/chart.php:58
5625
+ msgid "January"
5626
+ msgstr ""
5627
+
5628
+ #: widgets/chart/chart.php:55 widgets/chart/chart.php:473
5629
+ #: widgets/woo-category-list/woo-category-list.php:57
5630
+ #: widgets/woo-product-carousel/woo-product-carousel.php:323
5631
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2409
5632
+ #: widgets/woo-product-list/woo-product-list.php:294
5633
+ #: widgets/woo-product-list/woo-product-list.php:2197
5634
+ msgid "Categories"
5635
+ msgstr ""
5636
+
5637
+ #: widgets/chart/chart.php:59
5638
+ msgid "February"
5639
+ msgstr ""
5640
+
5641
+ #: widgets/chart/chart.php:60
5642
+ msgid "March"
5643
+ msgstr ""
5644
+
5645
+ #: widgets/chart/chart.php:76 widgets/chart/chart.php:165
5646
+ #: widgets/chart/chart.php:184 widgets/chart/chart.php:273
5647
+ msgid "Label #1"
5648
+ msgstr ""
5649
+
5650
+ #: widgets/chart/chart.php:82 widgets/chart/chart.php:191
5651
+ msgid "Data"
5652
+ msgstr ""
5653
+
5654
+ #: widgets/chart/chart.php:86
5655
+ msgid "Enter data values by \",\" separated(1). Example: 2,4,8,16,32 etc"
5656
+ msgstr ""
5657
+
5658
+ #: widgets/chart/chart.php:152 widgets/chart/chart.php:260
5659
+ #: widgets/chart/chart.php:460 widgets/image-box/image-box.php:729
5660
+ #: widgets/tablepress/tablepress.php:231 widgets/tablepress/tablepress.php:355
5661
+ #: widgets/tablepress/tablepress.php:438
5662
+ #: widgets/woo-mini-cart/woo-mini-cart.php:493
5663
+ msgid "Border Width"
5664
+ msgstr ""
5665
+
5666
+ #: widgets/chart/chart.php:162 widgets/chart/chart.php:270
5667
+ msgid "Set Data"
5668
+ msgstr ""
5669
+
5670
+ #: widgets/chart/chart.php:166 widgets/chart/chart.php:274
5671
+ msgid "Label #2"
5672
+ msgstr ""
5673
+
5674
+ #: widgets/chart/chart.php:167 widgets/chart/chart.php:275
5675
+ msgid "Label #3"
5676
+ msgstr ""
5677
+
5678
+ #: widgets/chart/chart.php:292
5679
+ msgid "Settings "
5680
+ msgstr ""
5681
+
5682
+ #: widgets/chart/chart.php:300
5683
+ msgid "Chart Styles"
5684
+ msgstr ""
5685
+
5686
+ #: widgets/chart/chart.php:304
5687
+ msgid "Bar (Vertical)"
5688
+ msgstr ""
5689
+
5690
+ #: widgets/chart/chart.php:305
5691
+ msgid "Bar (Horozontal)"
5692
+ msgstr ""
5693
+
5694
+ #: widgets/chart/chart.php:307
5695
+ msgid "Radar"
5696
+ msgstr ""
5697
+
5698
+ #: widgets/chart/chart.php:308
5699
+ msgid "Doughnut"
5700
+ msgstr ""
5701
+
5702
+ #: widgets/chart/chart.php:309
5703
+ msgid "Pie"
5704
+ msgstr ""
5705
+
5706
+ #: widgets/chart/chart.php:310
5707
+ msgid "Polar Area"
5708
+ msgstr ""
5709
+
5710
+ #: widgets/chart/chart.php:342
5711
+ msgid "Grid Lines"
5712
+ msgstr ""
5713
+
5714
+ #: widgets/chart/chart.php:351
5715
+ msgid "Grid Color"
5716
+ msgstr ""
5717
+
5718
+ #: widgets/chart/chart.php:362
5719
+ msgid "Enable Label"
5720
+ msgstr ""
5721
+
5722
+ #: widgets/chart/chart.php:373
5723
+ msgid "Enable Legends"
5724
+ msgstr ""
5725
+
5726
+ #: widgets/chart/chart.php:383
5727
+ msgid "Show Tooltip"
5728
+ msgstr ""
5729
+
5730
+ #: widgets/chart/chart.php:409 widgets/chart/chart.php:589
5731
+ msgid "Point Style"
5732
+ msgstr ""
5733
+
5734
+ #: widgets/chart/chart.php:427
5735
+ msgid "Stepped Line"
5736
+ msgstr ""
5737
+
5738
+ #: widgets/chart/chart.php:436
5739
+ msgid "Tension"
5740
+ msgstr ""
5741
+
5742
+ #: widgets/chart/chart.php:446
5743
+ msgid "Fill"
5744
+ msgstr ""
5745
+
5746
+ #: widgets/chart/chart.php:481 widgets/chart/chart.php:541
5747
+ #: widgets/chart/chart.php:754
5748
+ msgid "Font Color"
5749
+ msgstr ""
5750
+
5751
+ #: widgets/chart/chart.php:503 widgets/chart/chart.php:563
5752
+ #: widgets/chart/chart.php:763
5753
+ msgid "Font Style"
5754
+ msgstr ""
5755
+
5756
+ #: widgets/chart/chart.php:533
5757
+ msgid "Legend"
5758
+ msgstr ""
5759
+
5760
+ #: widgets/chart/chart.php:598
5761
+ msgid "Box Width"
5762
+ msgstr ""
5763
+
5764
+ #: widgets/chart/chart.php:641 widgets/progressbar/progressbar.php:53
5765
+ msgid "Tooltip"
5766
+ msgstr ""
5767
+
5768
+ #: widgets/chart/chart.php:659
5769
+ msgid "Title Font Color"
5770
+ msgstr ""
5771
+
5772
+ #: widgets/chart/chart.php:668
5773
+ msgid "Title Font Size"
5774
+ msgstr ""
5775
+
5776
+ #: widgets/chart/chart.php:681
5777
+ msgid "Title Font Style"
5778
+ msgstr ""
5779
+
5780
+ #: widgets/chart/chart.php:695
5781
+ msgid "Body Font Color"
5782
+ msgstr ""
5783
+
5784
+ #: widgets/chart/chart.php:704
5785
+ msgid "Body Font Size"
5786
+ msgstr ""
5787
+
5788
+ #: widgets/chart/chart.php:717
5789
+ msgid "Body Font Style"
5790
+ msgstr ""
5791
+
5792
+ #: widgets/chart/chart.php:839 widgets/pricing/pricing.php:182
5793
+ msgid "Duration"
5794
+ msgstr ""
5795
+
5796
+ #: widgets/client-logo/client-logo-handler.php:12
5797
+ #: widgets/client-logo/client-logo.php:72
5798
+ #: widgets/testimonial/style/style1.php:15
5799
+ #: widgets/testimonial/style/style2.php:15
5800
+ #: widgets/testimonial/style/style4-old.php:36
5801
+ #: widgets/testimonial/style/style5.php:49
5802
+ #: widgets/testimonial/style/style6.php:29
5803
+ #: widgets/testimonial/testimonial.php:1505
5804
+ msgid "Client Logo"
5805
+ msgstr ""
5806
+
5807
+ #: widgets/client-logo/client-logo.php:41
5808
+ #: widgets/client-logo/client-logo.php:506
5809
+ #: widgets/testimonial/testimonial.php:334
5810
+ msgid "Logo"
5811
+ msgstr ""
5812
+
5813
+ #: widgets/client-logo/client-logo.php:48
5814
+ msgid "Slide Style "
5815
+ msgstr ""
5816
+
5817
+ #: widgets/client-logo/client-logo.php:52 widgets/image-box/image-box.php:74
5818
+ #: widgets/piechart/piechart.php:56
5819
+ msgid "Simple"
5820
+ msgstr ""
5821
+
5822
+ #: widgets/client-logo/client-logo.php:53
5823
+ msgid "Banner"
5824
+ msgstr ""
5825
+
5826
+ #: widgets/client-logo/client-logo.php:62
5827
+ #: widgets/testimonial/testimonial.php:286
5828
+ #: widgets/testimonial/testimonial.php:1324
5829
+ msgid "Client Name"
5830
+ msgstr ""
5831
+
5832
+ #: widgets/client-logo/client-logo.php:83
5833
+ msgid "Enable Hover Logo"
5834
+ msgstr ""
5835
+
5836
+ #: widgets/client-logo/client-logo.php:95
5837
+ msgid "Hover Logo"
5838
+ msgstr ""
5839
+
5840
+ #: widgets/client-logo/client-logo.php:109 widgets/gallery/gallery.php:290
5841
+ #: widgets/image-box/image-box.php:87
5842
+ msgid "Enable Link"
5843
+ msgstr ""
5844
+
5845
+ #: widgets/client-logo/client-logo.php:120
5846
+ #: widgets/dual-button/dual-button.php:167
5847
+ #: widgets/dual-button/dual-button.php:296
5848
+ #: widgets/facebook-feed/facebook-feed.php:870 widgets/gallery/gallery.php:304
5849
+ #: widgets/header-info/header-info.php:72 widgets/icon-box/icon-box.php:306
5850
+ #: widgets/image-box/image-box.php:98 widgets/motion-text/motion-text.php:73
5851
+ #: widgets/nav-menu/nav-menu.php:91 widgets/nav-menu/nav-menu.php:104
5852
+ #: widgets/page-list/page-list.php:245 widgets/pricing/pricing.php:332
5853
+ #: widgets/social/social.php:182 widgets/team/team.php:217
5854
+ msgid "Link"
5855
+ msgstr ""
5856
+
5857
+ #: widgets/client-logo/client-logo.php:122
5858
+ #: widgets/dual-button/dual-button.php:169
5859
+ #: widgets/dual-button/dual-button.php:298 widgets/gallery/gallery.php:306
5860
+ #: widgets/header-info/header-info.php:74 widgets/icon-box/icon-box.php:308
5861
+ #: widgets/image-accordion/image-accordion.php:177
5862
+ #: widgets/image-box/image-box.php:100 widgets/motion-text/motion-text.php:75
5863
+ #: widgets/page-list/page-list.php:247
5864
+ msgid "https://your-link.com"
5865
+ msgstr ""
5866
+
5867
+ #: widgets/client-logo/client-logo.php:134 widgets/hotspot/hotspot.php:364
5868
+ msgid "Repeater List"
5869
+ msgstr ""
5870
+
5871
+ #: widgets/client-logo/client-logo.php:139 widgets/timeline/timeline.php:304
5872
+ #: widgets/timeline/timeline.php:308 widgets/timeline/timeline.php:312
5873
+ msgid "Title #1"
5874
+ msgstr ""
5875
+
5876
+ #: widgets/client-logo/client-logo.php:142
5877
+ msgid "Title #2"
5878
+ msgstr ""
5879
+
5880
+ #: widgets/client-logo/client-logo.php:145
5881
+ msgid "Title #3"
5882
+ msgstr ""
5883
+
5884
+ #: widgets/client-logo/client-logo.php:148
5885
+ msgid "Title #4"
5886
+ msgstr ""
5887
+
5888
+ #: widgets/client-logo/client-logo.php:151
5889
+ msgid "Title #5"
5890
+ msgstr ""
5891
+
5892
+ #: widgets/client-logo/client-logo.php:172
5893
+ #: widgets/client-logo/client-logo.php:1062
5894
+ #: widgets/testimonial/testimonial.php:402
5895
+ msgid "Spacing Left Right"
5896
+ msgstr ""
5897
+
5898
+ #: widgets/client-logo/client-logo.php:208
5899
+ msgid "Spacing Top Bottom"
5900
+ msgstr ""
5901
+
5902
+ #: widgets/client-logo/client-logo.php:244
5903
+ #: widgets/testimonial/testimonial.php:450
5904
+ msgid "Slides To Show"
5905
+ msgstr ""
5906
+
5907
+ #: widgets/client-logo/client-logo.php:277
5908
+ #: widgets/testimonial/testimonial.php:462
5909
+ msgid "Slides To Scroll"
5910
+ msgstr ""
5911
+
5912
+ #: widgets/client-logo/client-logo.php:312
5913
+ #: widgets/testimonial/testimonial.php:486
5914
+ #: widgets/woo-product-carousel/woo-product-carousel.php:376
5915
+ msgid "Autoplay"
5916
+ msgstr ""
5917
+
5918
+ #: widgets/client-logo/client-logo.php:323
5919
+ msgid "Speed (ms)"
5920
+ msgstr ""
5921
+
5922
+ #: widgets/client-logo/client-logo.php:337
5923
+ #: widgets/testimonial/testimonial.php:554
5924
+ msgid "Pause on Hover"
5925
+ msgstr ""
5926
+
5927
+ #: widgets/client-logo/client-logo.php:351
5928
+ #: widgets/testimonial/testimonial.php:498
5929
+ msgid "Show arrow"
5930
+ msgstr ""
5931
+
5932
+ #: widgets/client-logo/client-logo.php:362
5933
+ #: widgets/testimonial/testimonial.php:522
5934
+ msgid "Left arrow Icon"
5935
+ msgstr ""
5936
+
5937
+ #: widgets/client-logo/client-logo.php:378
5938
+ #: widgets/testimonial/testimonial.php:538
5939
+ msgid "Right arrow Icon"
5940
+ msgstr ""
5941
+
5942
+ #: widgets/client-logo/client-logo.php:393
5943
+ #: widgets/testimonial/testimonial.php:510
5944
+ msgid "Show dots"
5945
+ msgstr ""
5946
+
5947
+ #: widgets/client-logo/client-logo.php:405
5948
+ msgid "Additional Options"
5949
+ msgstr ""
5950
+
5951
+ #: widgets/client-logo/client-logo.php:414
5952
+ msgid "Rows"
5953
+ msgstr ""
5954
+
5955
+ #: widgets/client-logo/client-logo.php:415
5956
+ msgid ""
5957
+ "Setting this to more than 1 initializes grid mode. Use slidesPerRow to set "
5958
+ "how many slides should be in each row.\n"
5959
+ "\t\t\t\t"
5960
+ msgstr ""
5961
+
5962
+ #: widgets/client-logo/client-logo.php:420
5963
+ msgid "One row"
5964
+ msgstr ""
5965
+
5966
+ #: widgets/client-logo/client-logo.php:421
5967
+ msgid "Two row"
5968
+ msgstr ""
5969
+
5970
+ #: widgets/client-logo/client-logo.php:422
5971
+ msgid "Three row"
5972
+ msgstr ""
5973
+
5974
+ #: widgets/client-logo/client-logo.php:442
5975
+ #: widgets/facebook-feed/facebook-feed.php:286
5976
+ #: widgets/instagram-feed/instagram-feed.php:281
5977
+ #: widgets/timeline/timeline.php:1122 widgets/twitter-feed/twitter-feed.php:469
5978
+ msgid "Container"
5979
+ msgstr ""
5980
+
5981
+ #: widgets/client-logo/client-logo.php:483
5982
+ #: widgets/image-accordion/image-accordion.php:223
5983
+ msgid "Min Height"
5984
+ msgstr ""
5985
+
5986
+ #: widgets/client-logo/client-logo.php:596 widgets/funfact/funfact.php:1152
5987
+ #: widgets/icon-box/icon-box.php:1453
5988
+ msgid "From Top"
5989
+ msgstr ""
5990
+
5991
+ #: widgets/client-logo/client-logo.php:600 widgets/icon-box/icon-box.php:1461
5992
+ msgid "From Bottom"
5993
+ msgstr ""
5994
+
5995
+ #: widgets/client-logo/client-logo.php:622
5996
+ #: widgets/tablepress/tablepress.php:575
5997
+ msgid "Hover Background"
5998
+ msgstr ""
5999
+
6000
+ #: widgets/client-logo/client-logo.php:787
6001
+ msgid "Opacity Hover"
6002
+ msgstr ""
6003
+
6004
+ #: widgets/client-logo/client-logo.php:816
6005
+ #: widgets/woo-product-carousel/woo-product-carousel.php:438
6006
+ msgid "Arrows"
6007
+ msgstr ""
6008
+
6009
+ #: widgets/client-logo/client-logo.php:831
6010
+ msgid "Outside"
6011
+ msgstr ""
6012
+
6013
+ #: widgets/client-logo/client-logo.php:832
6014
+ msgid "Inside"
6015
+ msgstr ""
6016
+
6017
+ #: widgets/client-logo/client-logo.php:916
6018
+ msgid "Left Arrow Position"
6019
+ msgstr ""
6020
+
6021
+ #: widgets/client-logo/client-logo.php:940
6022
+ msgid "Right Arrow Position"
6023
+ msgstr ""
6024
+
6025
+ #: widgets/client-logo/client-logo.php:973
6026
+ #: widgets/client-logo/client-logo.php:1006
6027
+ #: widgets/image-comparison/image-comparison.php:446
6028
+ #: widgets/image-comparison/image-comparison.php:462
6029
+ #: widgets/image-comparison/image-comparison.php:503
6030
+ #: widgets/image-comparison/image-comparison.php:519
6031
+ msgid "Arrow Color"
6032
+ msgstr ""
6033
+
6034
+ #: widgets/client-logo/client-logo.php:984
6035
+ #: widgets/client-logo/client-logo.php:1017
6036
+ msgid "Arrow Background"
6037
+ msgstr ""
6038
+
6039
+ #: widgets/client-logo/client-logo.php:1036
6040
+ #: widgets/woo-product-carousel/woo-product-carousel.php:439
6041
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2201
6042
+ msgid "Dots"
6043
+ msgstr ""
6044
+
6045
+ #: widgets/client-logo/client-logo.php:1047
6046
+ msgid "Dot Style"
6047
+ msgstr ""
6048
+
6049
+ #: widgets/client-logo/client-logo.php:1054
6050
+ msgid "Paginate"
6051
+ msgstr ""
6052
+
6053
+ #: widgets/client-logo/client-logo.php:1098
6054
+ msgid "Spacing Top To Bottom"
6055
+ msgstr ""
6056
+
6057
+ #: widgets/client-logo/client-logo.php:1122
6058
+ msgid "Dot Color"
6059
+ msgstr ""
6060
+
6061
+ #: widgets/client-logo/client-logo.php:1278
6062
+ msgid "Separator"
6063
+ msgstr ""
6064
+
6065
+ #: widgets/contact-form7/contact-form7-handler.php:11
6066
+ #: widgets/contact-form7/contact-form7.php:47
6067
+ msgid "Contact form 7"
6068
+ msgstr ""
6069
+
6070
+ #: widgets/countdown-timer/countdown-timer-handler.php:11
6071
+ msgid "Countdown Timer"
6072
+ msgstr ""
6073
+
6074
+ #: widgets/countdown-timer/countdown-timer.php:40
6075
+ msgid "Presets"
6076
+ msgstr ""
6077
+
6078
+ #: widgets/countdown-timer/countdown-timer.php:83
6079
+ #: widgets/testimonial/testimonial.php:85
6080
+ msgid "image style 6"
6081
+ msgstr ""
6082
+
6083
+ #: widgets/countdown-timer/countdown-timer.php:97
6084
+ msgid "Timer Settings "
6085
+ msgstr ""
6086
+
6087
+ #: widgets/countdown-timer/countdown-timer.php:105
6088
+ msgid "Countdown Due Date"
6089
+ msgstr ""
6090
+
6091
+ #: widgets/countdown-timer/countdown-timer.php:108
6092
+ msgid "Set the due date and time"
6093
+ msgstr ""
6094
+
6095
+ #: widgets/countdown-timer/countdown-timer.php:114
6096
+ msgid "Custom Labels"
6097
+ msgstr ""
6098
+
6099
+ #: widgets/countdown-timer/countdown-timer.php:123
6100
+ #: widgets/countdown-timer/countdown-timer.php:125
6101
+ #: widgets/countdown-timer/countdown-timer.php:331
6102
+ msgid "Weeks"
6103
+ msgstr ""
6104
+
6105
+ #: widgets/countdown-timer/countdown-timer.php:134
6106
+ #: widgets/countdown-timer/countdown-timer.php:136
6107
+ #: widgets/countdown-timer/countdown-timer.php:534
6108
+ msgid "Days"
6109
+ msgstr ""
6110
+
6111
+ #: widgets/countdown-timer/countdown-timer.php:143
6112
+ #: widgets/countdown-timer/countdown-timer.php:145
6113
+ #: widgets/countdown-timer/countdown-timer.php:810
6114
+ msgid "Hours"
6115
+ msgstr ""
6116
+
6117
+ #: widgets/countdown-timer/countdown-timer.php:152
6118
+ #: widgets/countdown-timer/countdown-timer.php:154
6119
+ #: widgets/countdown-timer/countdown-timer.php:1082
6120
+ msgid "Minutes"
6121
+ msgstr ""
6122
+
6123
+ #: widgets/countdown-timer/countdown-timer.php:161
6124
+ #: widgets/countdown-timer/countdown-timer.php:163
6125
+ #: widgets/countdown-timer/countdown-timer.php:1358
6126
+ msgid "Seconds"
6127
+ msgstr ""
6128
+
6129
+ #: widgets/countdown-timer/countdown-timer.php:172
6130
+ msgid "Expire Action"
6131
+ msgstr ""
6132
+
6133
+ #: widgets/countdown-timer/countdown-timer.php:179
6134
+ msgid "On Expiry Title"
6135
+ msgstr ""
6136
+
6137
+ #: widgets/countdown-timer/countdown-timer.php:181
6138
+ msgid "Countdown is finished!"
6139
+ msgstr ""
6140
+
6141
+ #: widgets/countdown-timer/countdown-timer.php:188
6142
+ msgid "On Expiry Content"
6143
+ msgstr ""
6144
+
6145
+ #: widgets/countdown-timer/countdown-timer.php:190
6146
+ msgid ""
6147
+ "Lorem Ipsum is simply dummy text of the printing and typesetting industry. "
6148
+ "Lorem Ipsum has been the industry's standard dummy text ever since the 1500s"
6149
+ msgstr ""
6150
+
6151
+ #: widgets/countdown-timer/countdown-timer.php:343
6152
+ #: widgets/countdown-timer/countdown-timer.php:543
6153
+ #: widgets/countdown-timer/countdown-timer.php:818
6154
+ #: widgets/countdown-timer/countdown-timer.php:1091
6155
+ #: widgets/countdown-timer/countdown-timer.php:1367
6156
+ msgid "Digits"
6157
+ msgstr ""
6158
+
6159
+ #: widgets/countdown-timer/countdown-timer.php:478
6160
+ #: widgets/countdown-timer/countdown-timer.php:732
6161
+ #: widgets/countdown-timer/countdown-timer.php:1010
6162
+ #: widgets/countdown-timer/countdown-timer.php:1283
6163
+ #: widgets/countdown-timer/countdown-timer.php:1558
6164
+ #: widgets/heading/heading.php:287
6165
+ #: widgets/image-accordion/image-accordion.php:215
6166
+ #: widgets/image-comparison/image-comparison.php:183
6167
+ msgid "General"
6168
+ msgstr ""
6169
+
6170
+ #: widgets/countdown-timer/countdown-timer.php:1698
6171
+ msgid "Outer Part"
6172
+ msgstr ""
6173
+
6174
+ #: widgets/countdown-timer/countdown-timer.php:1707
6175
+ msgid "Outer Background"
6176
+ msgstr ""
6177
+
6178
+ #: widgets/countdown-timer/countdown-timer.php:1715
6179
+ msgid "Inner Part"
6180
+ msgstr ""
6181
+
6182
+ #: widgets/countdown-timer/countdown-timer.php:1724
6183
+ msgid "Inner Background"
6184
+ msgstr ""
6185
+
6186
+ #: widgets/creative-button/creative-button-handler.php:11
6187
+ msgid "Creative Button"
6188
+ msgstr ""
6189
+
6190
+ #: widgets/creative-button/creative-button.php:165
6191
+ msgid "Hover Style"
6192
+ msgstr ""
6193
+
6194
+ #: widgets/creative-button/creative-button.php:170
6195
+ msgid "No Effect"
6196
+ msgstr ""
6197
+
6198
+ #: widgets/creative-button/creative-button.php:171
6199
+ msgid "Left to right with hypen"
6200
+ msgstr ""
6201
+
6202
+ #: widgets/creative-button/creative-button.php:172
6203
+ msgid "Left to right"
6204
+ msgstr ""
6205
+
6206
+ #: widgets/creative-button/creative-button.php:173
6207
+ msgid "Left to right with icon"
6208
+ msgstr ""
6209
+
6210
+ #: widgets/creative-button/creative-button.php:174
6211
+ msgid "Border left to right"
6212
+ msgstr ""
6213
+
6214
+ #: widgets/creative-button/creative-button.php:175
6215
+ msgid "Center ripple effect"
6216
+ msgstr ""
6217
+
6218
+ #: widgets/creative-button/creative-button.php:176
6219
+ msgid "Fade with icon"
6220
+ msgstr ""
6221
+
6222
+ #: widgets/creative-button/creative-button.php:177
6223
+ msgid "Fade with icon skew"
6224
+ msgstr ""
6225
+
6226
+ #: widgets/creative-button/creative-button.php:178
6227
+ msgid "Fade with icon on hover"
6228
+ msgstr ""
6229
+
6230
+ #: widgets/creative-button/creative-button.php:179
6231
+ msgid "Border ripple"
6232
+ msgstr ""
6233
+
6234
+ #: widgets/creative-button/creative-button.php:180
6235
+ msgid "Two side border"
6236
+ msgstr ""
6237
+
6238
+ #: widgets/creative-button/creative-button.php:181
6239
+ msgid "Ripple position aware"
6240
+ msgstr ""
6241
+
6242
+ #: widgets/creative-button/creative-button.php:182
6243
+ msgid "Two dot ripple"
6244
+ msgstr ""
6245
+
6246
+ #: widgets/creative-button/creative-button.php:183
6247
+ msgid "Doors open"
6248
+ msgstr ""
6249
+
6250
+ #: widgets/creative-button/creative-button.php:184
6251
+ msgid "Skew open"
6252
+ msgstr ""
6253
+
6254
+ #: widgets/creative-button/creative-button.php:185
6255
+ msgid "Vertical text cut"
6256
+ msgstr ""
6257
+
6258
+ #: widgets/creative-button/creative-button.php:186
6259
+ msgid "Zingle"
6260
+ msgstr ""
6261
+
6262
+ #: widgets/creative-button/creative-button.php:187
6263
+ msgid "Two shade"
6264
+ msgstr ""
6265
+
6266
+ #: widgets/creative-button/creative-button.php:188
6267
+ msgid "Outer dot click splash effect"
6268
+ msgstr ""
6269
+
6270
+ #: widgets/creative-button/creative-button.php:189
6271
+ msgid "Water ripple click effect"
6272
+ msgstr ""
6273
+
6274
+ #: widgets/creative-button/creative-button.php:197
6275
+ msgid "Ripple Border Color"
6276
+ msgstr ""
6277
+
6278
+ #: widgets/creative-button/creative-button.php:459
6279
+ msgid "Background Color One"
6280
+ msgstr ""
6281
+
6282
+ #: widgets/creative-button/creative-button.php:472
6283
+ msgid "Background Color Two"
6284
+ msgstr ""
6285
+
6286
+ #: widgets/creative-button/creative-button.php:601
6287
+ msgid "Iocn Bg Normal"
6288
+ msgstr ""
6289
+
6290
+ #: widgets/creative-button/creative-button.php:615
6291
+ msgid "Iocn Bg Hover"
6292
+ msgstr ""
6293
+
6294
+ #: widgets/drop-caps/drop-caps-handler.php:11
6295
+ msgid "Drop Caps"
6296
+ msgstr ""
6297
+
6298
+ #: widgets/drop-caps/drop-caps.php:36
6299
+ msgid "Dropcaps"
6300
+ msgstr ""
6301
+
6302
+ #: widgets/drop-caps/drop-caps.php:45
6303
+ msgid ""
6304
+ "Lorem ipsum dolor sit amet, consec adipisicing elit, sed do eiusmod tempor "
6305
+ "incidid ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis "
6306
+ "nostrud exercitation ullamco laboris nisi ut aliquip exl Lorem ipsum dolor "
6307
+ "sit amet, consectetur adipisicing elit, sed do eiusmod tempor incidid ut "
6308
+ "labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud "
6309
+ "exercitation ullamco laboris nisi ut aliquip."
6310
+ msgstr ""
6311
+
6312
+ #: widgets/drop-caps/drop-caps.php:46
6313
+ msgid "Enter Your Drop Caps Content."
6314
+ msgstr ""
6315
+
6316
+ #: widgets/drop-caps/drop-caps.php:147
6317
+ msgid "Dropcap Latter"
6318
+ msgstr ""
6319
+
6320
+ #: widgets/dual-button/dual-button-handler.php:11
6321
+ msgid "Dual Button"
6322
+ msgstr ""
6323
+
6324
+ #: widgets/dual-button/dual-button.php:36
6325
+ msgid "Double Button"
6326
+ msgstr ""
6327
+
6328
+ #: widgets/dual-button/dual-button.php:43
6329
+ #: widgets/dual-button/dual-button.php:848
6330
+ msgid "Middle Text"
6331
+ msgstr ""
6332
+
6333
+ #: widgets/dual-button/dual-button.php:53
6334
+ msgid "Or"
6335
+ msgstr ""
6336
+
6337
+ #: widgets/dual-button/dual-button.php:89 widgets/we-forms/we-forms.php:362
6338
+ msgid "Button Width"
6339
+ msgstr ""
6340
+
6341
+ #: widgets/dual-button/dual-button.php:123
6342
+ msgid "Button Gap"
6343
+ msgstr ""
6344
+
6345
+ #: widgets/dual-button/dual-button.php:149
6346
+ #: widgets/dual-button/dual-button.php:408
6347
+ msgid "Button One"
6348
+ msgstr ""
6349
+
6350
+ #: widgets/dual-button/dual-button.php:278
6351
+ #: widgets/dual-button/dual-button.php:629
6352
+ msgid "Button Two"
6353
+ msgstr ""
6354
+
6355
+ #: widgets/dual-button/dual-button.php:340 widgets/icon-box/icon-box.php:471
6356
+ #: widgets/tablepress/tablepress.php:208 widgets/tablepress/tablepress.php:335
6357
+ #: widgets/tablepress/tablepress.php:418 widgets/video/video.php:575
6358
+ msgid "Border Style"
6359
+ msgstr ""
6360
+
6361
+ #: widgets/dual-button/dual-button.php:449
6362
+ #: widgets/dual-button/dual-button.php:670
6363
+ msgid "Icon font size"
6364
+ msgstr ""
6365
+
6366
+ #: widgets/dual-button/dual-button.php:544
6367
+ #: widgets/dual-button/dual-button.php:765 widgets/nav-menu/nav-menu.php:124
6368
+ #: widgets/video/video.php:305
6369
+ msgid "Justified"
6370
+ msgstr ""
6371
+
6372
+ #: widgets/facebook-feed/facebook-feed-handler.php:15
6373
+ msgid "Facebook Feed"
6374
+ msgstr ""
6375
+
6376
+ #: widgets/facebook-feed/facebook-feed.php:39
6377
+ #: widgets/instagram-feed/instagram-feed.php:38
6378
+ #: widgets/twitter-feed/twitter-feed.php:40
6379
+ msgid "Layout Settings "
6380
+ msgstr ""
6381
+
6382
+ #: widgets/facebook-feed/facebook-feed.php:46
6383
+ #: widgets/instagram-feed/instagram-feed.php:45
6384
+ msgid "Grid Style"
6385
+ msgstr ""
6386
+
6387
+ #: widgets/facebook-feed/facebook-feed.php:51 widgets/gallery/gallery.php:103
6388
+ #: widgets/instagram-feed/instagram-feed.php:50
6389
+ #: widgets/twitter-feed/twitter-feed.php:93
6390
+ msgid "Grid"
6391
+ msgstr ""
6392
+
6393
+ #: widgets/facebook-feed/facebook-feed.php:52
6394
+ #: widgets/instagram-feed/instagram-feed.php:51
6395
+ #: widgets/twitter-feed/twitter-feed.php:94
6396
+ msgid "Masonary"
6397
+ msgstr ""
6398
+
6399
+ #: widgets/facebook-feed/facebook-feed.php:60
6400
+ #: widgets/instagram-feed/instagram-feed.php:59
6401
+ #: widgets/twitter-feed/twitter-feed.php:103
6402
+ msgid "Columns Grid"
6403
+ msgstr ""
6404
+
6405
+ #: widgets/facebook-feed/facebook-feed.php:64
6406
+ #: widgets/instagram-feed/instagram-feed.php:64
6407
+ #: widgets/twitter-feed/twitter-feed.php:107
6408
+ msgid "2 Columns"
6409
+ msgstr ""
6410
+
6411
+ #: widgets/facebook-feed/facebook-feed.php:65
6412
+ #: widgets/instagram-feed/instagram-feed.php:65
6413
+ #: widgets/twitter-feed/twitter-feed.php:108
6414
+ msgid "3 Columns"
6415
+ msgstr ""
6416
+
6417
+ #: widgets/facebook-feed/facebook-feed.php:66
6418
+ #: widgets/instagram-feed/instagram-feed.php:66
6419
+ #: widgets/twitter-feed/twitter-feed.php:109
6420
+ msgid "4 Columns"
6421
+ msgstr ""
6422
+
6423
+ #: widgets/facebook-feed/facebook-feed.php:75
6424
+ #: widgets/instagram-feed/instagram-feed.php:76
6425
+ #: widgets/twitter-feed/twitter-feed.php:88
6426
+ msgid "Feed Style"
6427
+ msgstr ""
6428
+
6429
+ #: widgets/facebook-feed/facebook-feed.php:79
6430
+ msgid "Classic"
6431
+ msgstr ""
6432
+
6433
+ #: widgets/facebook-feed/facebook-feed.php:80
6434
+ msgid "Photos"
6435
+ msgstr ""
6436
+
6437
+ #: widgets/facebook-feed/facebook-feed.php:89
6438
+ #: widgets/instagram-feed/instagram-feed.php:88
6439
+ #: widgets/twitter-feed/twitter-feed.php:119
6440
+ msgid "Show Post"
6441
+ msgstr ""
6442
+
6443
+ #: widgets/facebook-feed/facebook-feed.php:105
6444
+ #: widgets/instagram-feed/instagram-feed.php:104
6445
+ #: widgets/twitter-feed/twitter-feed.php:158
6446
+ msgid "Display Settings "
6447
+ msgstr ""
6448
+
6449
+ #: widgets/facebook-feed/facebook-feed.php:116
6450
+ #: widgets/twitter-feed/twitter-feed.php:166
6451
+ msgid "Show Author"
6452
+ msgstr ""
6453
+
6454
+ #: widgets/facebook-feed/facebook-feed.php:127
6455
+ #: widgets/twitter-feed/twitter-feed.php:177
6456
+ msgid "Author Settings"
6457
+ msgstr ""
6458
+
6459
+ #: widgets/facebook-feed/facebook-feed.php:131
6460
+ #: widgets/instagram-feed/instagram-feed.php:129
6461
+ msgid "Only Profile Image"
6462
+ msgstr ""
6463
+
6464
+ #: widgets/facebook-feed/facebook-feed.php:132
6465
+ #: widgets/instagram-feed/instagram-feed.php:130
6466
+ #: widgets/twitter-feed/twitter-feed.php:182
6467
+ msgid "Only Name"
6468
+ msgstr ""
6469
+
6470
+ #: widgets/facebook-feed/facebook-feed.php:133 widgets/gallery/gallery.php:910
6471
+ #: widgets/instagram-feed/instagram-feed.php:131
6472
+ #: widgets/social-share/social-share.php:55 widgets/social/social.php:49
6473
+ #: widgets/table/table.php:616 widgets/video/video.php:54
6474
+ msgid "Both"
6475
+ msgstr ""
6476
+
6477
+ #: widgets/facebook-feed/facebook-feed.php:143
6478
+ msgid "Author Style"
6479
+ msgstr ""
6480
+
6481
+ #: widgets/facebook-feed/facebook-feed.php:158
6482
+ #: widgets/instagram-feed/instagram-feed.php:160
6483
+ #: widgets/twitter-feed/twitter-feed.php:207
6484
+ msgid "Show Date"
6485
+ msgstr ""
6486
+
6487
+ #: widgets/facebook-feed/facebook-feed.php:171
6488
+ msgid "Show Fotter"
6489
+ msgstr ""
6490
+
6491
+ #: widgets/facebook-feed/facebook-feed.php:183
6492
+ msgid "Show Comments"
6493
+ msgstr ""
6494
+
6495
+ #: widgets/facebook-feed/facebook-feed.php:207
6496
+ #: widgets/facebook-feed/facebook-feed.php:234
6497
+ #: widgets/image-accordion/image-accordion.php:247
6498
+ #: widgets/instagram-feed/instagram-feed.php:385
6499
+ #: widgets/instagram-feed/instagram-feed.php:412
6500
+ #: widgets/instagram-feed/instagram-feed.php:464
6501
+ msgid "Gutter"
6502
+ msgstr ""
6503
+
6504
+ #: widgets/facebook-feed/facebook-feed.php:418
6505
+ msgid "Header Margin"
6506
+ msgstr ""
6507
+
6508
+ #: widgets/facebook-feed/facebook-feed.php:430
6509
+ msgid "Header Padding"
6510
+ msgstr ""
6511
+
6512
+ #: widgets/facebook-feed/facebook-feed.php:442
6513
+ msgid "Date Color"
6514
+ msgstr ""
6515
+
6516
+ #: widgets/facebook-feed/facebook-feed.php:463
6517
+ #: widgets/facebook-feed/facebook-feed.php:484
6518
+ #: widgets/facebook-feed/facebook-feed.php:529
6519
+ #: widgets/facebook-feed/facebook-feed.php:550
6520
+ #: widgets/twitter-feed/twitter-feed.php:653
6521
+ #: widgets/twitter-feed/twitter-feed.php:747
6522
+ msgid "User Name"
6523
+ msgstr ""
6524
+
6525
+ #: widgets/facebook-feed/facebook-feed.php:508
6526
+ #: widgets/piechart/piechart.php:273
6527
+ msgid "Content Color"
6528
+ msgstr ""
6529
+
6530
+ #: widgets/facebook-feed/facebook-feed.php:569
6531
+ #: widgets/instagram-feed/instagram-feed.php:968
6532
+ #: widgets/twitter-feed/twitter-feed.php:1173
6533
+ msgid "Media"
6534
+ msgstr ""
6535
+
6536
+ #: widgets/facebook-feed/facebook-feed.php:604 widgets/gallery/gallery.php:1856
6537
+ #: widgets/gallery/gallery.php:1865 widgets/team/team.php:54
6538
+ #: widgets/team/team.php:892 widgets/team/team.php:904
6539
+ #: widgets/team/team.php:1718
6540
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1008
6541
+ #: widgets/woo-product-list/woo-product-list.php:1171
6542
+ msgid "Overlay"
6543
+ msgstr ""
6544
+
6545
+ #: widgets/facebook-feed/facebook-feed.php:785
6546
+ #: widgets/facebook-feed/facebook-feed.php:829
6547
+ msgid "Play Icon"
6548
+ msgstr ""
6549
+
6550
+ #: widgets/facebook-feed/facebook-feed.php:914
6551
+ msgid "Source Color"
6552
+ msgstr ""
6553
+
6554
+ #: widgets/facebook-feed/facebook-feed.php:926
6555
+ msgid "Caption Name Color"
6556
+ msgstr ""
6557
+
6558
+ #: widgets/facebook-feed/facebook-feed.php:938
6559
+ msgid "Caption Color"
6560
+ msgstr ""
6561
+
6562
+ #: widgets/facebook-feed/facebook-feed.php:978
6563
+ #: widgets/icon-box/icon-box.php:847 widgets/page-list/page-list.php:832
6564
+ #: widgets/team/team.php:1943
6565
+ msgid "Color Hover"
6566
+ msgstr ""
6567
+
6568
+ #: widgets/facebook-feed/facebook-feed.php:1206
6569
+ msgid "Shares"
6570
+ msgstr ""
6571
+
6572
+ #: widgets/faq/faq.php:48
6573
+ msgid "Title type here"
6574
+ msgstr ""
6575
+
6576
+ #: widgets/faq/faq.php:49
6577
+ msgid "How to Change my Photo from Admin Dashboard?"
6578
+ msgstr ""
6579
+
6580
+ #: widgets/faq/faq.php:58
6581
+ msgid "Description type here"
6582
+ msgstr ""
6583
+
6584
+ #: widgets/faq/faq.php:59
6585
+ msgid ""
6586
+ "Far far away, behind the word mountains, far from the countries Vokalia and "
6587
+ "Consonantia, there live the blind texts. Separated they live in "
6588
+ "Bookmarksgrove right at the coast"
6589
+ msgstr ""
6590
+
6591
+ #: widgets/faq/faq.php:151
6592
+ msgid "Title Padding"
6593
+ msgstr ""
6594
+
6595
+ #: widgets/faq/faq.php:170
6596
+ msgid "Title Margin"
6597
+ msgstr ""
6598
+
6599
+ #: widgets/faq/faq.php:212
6600
+ msgid "Content Background"
6601
+ msgstr ""
6602
+
6603
+ #: widgets/faq/faq.php:261
6604
+ msgid "Content Margin"
6605
+ msgstr ""
6606
+
6607
+ #: widgets/funfact/funfact-handler.php:11
6608
+ msgid "Funfact"
6609
+ msgstr ""
6610
+
6611
+ #: widgets/funfact/funfact.php:49
6612
+ msgid "Icon type "
6613
+ msgstr ""
6614
+
6615
+ #: widgets/funfact/funfact.php:104
6616
+ msgid "View"
6617
+ msgstr ""
6618
+
6619
+ #: widgets/funfact/funfact.php:108
6620
+ msgid "Stacked"
6621
+ msgstr ""
6622
+
6623
+ #: widgets/funfact/funfact.php:109
6624
+ msgid "Framed"
6625
+ msgstr ""
6626
+
6627
+ #: widgets/funfact/funfact.php:160
6628
+ msgid "Number "
6629
+ msgstr ""
6630
+
6631
+ #: widgets/funfact/funfact.php:163
6632
+ msgid "Enter number"
6633
+ msgstr ""
6634
+
6635
+ #: widgets/funfact/funfact.php:170
6636
+ msgid "Number Suffix "
6637
+ msgstr ""
6638
+
6639
+ #: widgets/funfact/funfact.php:173
6640
+ msgid "M+"
6641
+ msgstr ""
6642
+
6643
+ #: widgets/funfact/funfact.php:180 widgets/icon-box/icon-box.php:115
6644
+ #: widgets/image-box/image-box.php:126 widgets/piechart/piechart.php:201
6645
+ msgid "Title "
6646
+ msgstr ""
6647
+
6648
+ #: widgets/funfact/funfact.php:182 widgets/icon-box/icon-box.php:120
6649
+ #: widgets/image-box/image-box.php:131
6650
+ msgid "This is the heading"
6651
+ msgstr ""
6652
+
6653
+ #: widgets/funfact/funfact.php:183 widgets/icon-box/icon-box.php:121
6654
+ #: widgets/image-box/image-box.php:132
6655
+ msgid "Enter your title"
6656
+ msgstr ""
6657
+
6658
+ #: widgets/funfact/funfact.php:191
6659
+ msgid "Enable Super"
6660
+ msgstr ""
6661
+
6662
+ #: widgets/funfact/funfact.php:200 widgets/funfact/funfact.php:871
6663
+ msgid "Super"
6664
+ msgstr ""
6665
+
6666
+ #: widgets/funfact/funfact.php:203
6667
+ msgid "+"
6668
+ msgstr ""
6669
+
6670
+ #: widgets/funfact/funfact.php:246 widgets/heading/heading.php:58
6671
+ #: widgets/icon-box/icon-box.php:417 widgets/image-box/image-box.php:190
6672
+ #: widgets/motion-text/motion-text.php:53 widgets/pricing/pricing.php:51
6673
+ msgid "Title HTML Tag"
6674
+ msgstr ""
6675
+
6676
+ #: widgets/funfact/funfact.php:274
6677
+ msgid "Enable Hover Border Bottom"
6678
+ msgstr ""
6679
+
6680
+ #: widgets/funfact/funfact.php:283
6681
+ msgid "Hover Border Bottom Color"
6682
+ msgstr ""
6683
+
6684
+ #: widgets/funfact/funfact.php:297 widgets/icon-box/icon-box.php:1445
6685
+ #: widgets/image-box/image-box.php:677
6686
+ msgid "Hover Direction"
6687
+ msgstr ""
6688
+
6689
+ #: widgets/funfact/funfact.php:331
6690
+ msgid "Enable Vertical Border"
6691
+ msgstr ""
6692
+
6693
+ #: widgets/funfact/funfact.php:340 widgets/funfact/funfact.php:1148
6694
+ msgid "Border Direction"
6695
+ msgstr ""
6696
+
6697
+ #: widgets/funfact/funfact.php:511
6698
+ msgid "Icons"
6699
+ msgstr ""
6700
+
6701
+ #: widgets/funfact/funfact.php:546 widgets/pricing/pricing.php:1052
6702
+ msgid "BG Color"
6703
+ msgstr ""
6704
+
6705
+ #: widgets/funfact/funfact.php:588 widgets/pricing/pricing.php:1094
6706
+ msgid "Primary Color"
6707
+ msgstr ""
6708
+
6709
+ #: widgets/funfact/funfact.php:601 widgets/pricing/pricing.php:1107
6710
+ msgid "Secondary Color"
6711
+ msgstr ""
6712
+
6713
+ #: widgets/funfact/funfact.php:738
6714
+ msgid "Number Count"
6715
+ msgstr ""
6716
+
6717
+ #: widgets/funfact/funfact.php:747 widgets/funfact/funfact.php:882
6718
+ msgid "Number Color"
6719
+ msgstr ""
6720
+
6721
+ #: widgets/funfact/funfact.php:770 widgets/funfact/funfact.php:814
6722
+ #: widgets/icon-box/icon-box.php:673 widgets/image-box/image-box.php:1104
6723
+ #: widgets/image-box/image-box.php:1189 widgets/nav-menu/nav-menu.php:318
6724
+ #: widgets/nav-menu/nav-menu.php:526 widgets/ninja-forms/ninja-forms.php:196
6725
+ #: widgets/ninja-forms/ninja-forms.php:434
6726
+ #: widgets/ninja-forms/ninja-forms.php:529
6727
+ #: widgets/woo-product-list/woo-product-list.php:601
6728
+ #: widgets/woo-product-list/woo-product-list.php:2079
6729
+ #: widgets/woo-product-list/woo-product-list.php:2163
6730
+ msgid "Spacing"
6731
+ msgstr ""
6732
+
6733
+ #: widgets/funfact/funfact.php:787
6734
+ msgid "Right Spacing"
6735
+ msgstr ""
6736
+
6737
+ #: widgets/funfact/funfact.php:927
6738
+ msgid "Horizontal space"
6739
+ msgstr ""
6740
+
6741
+ #: widgets/funfact/funfact.php:950 widgets/heading/heading.php:720
6742
+ #: widgets/image-accordion/image-accordion.php:473
6743
+ #: widgets/pricing/pricing.php:1383 widgets/pricing/pricing.php:1453
6744
+ msgid "Vertical Position"
6745
+ msgstr ""
6746
+
6747
+ #: widgets/funfact/funfact.php:1044 widgets/icon-box/icon-box.php:1264
6748
+ msgid "Entrance Animation"
6749
+ msgstr ""
6750
+
6751
+ #: widgets/funfact/funfact.php:1054 widgets/icon-box/icon-box.php:1390
6752
+ msgid "Enable Overlay"
6753
+ msgstr ""
6754
+
6755
+ #: widgets/funfact/funfact.php:1065
6756
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1836
6757
+ msgid "Overlay Color"
6758
+ msgstr ""
6759
+
6760
+ #: widgets/funfact/funfact.php:1081
6761
+ msgid "Devider"
6762
+ msgstr ""
6763
+
6764
+ #: widgets/funfact/funfact.php:1156 widgets/image-box/image-box.php:685
6765
+ msgid "From Center"
6766
+ msgstr ""
6767
+
6768
+ #: widgets/funfact/funfact.php:1160
6769
+ msgid "From Down"
6770
+ msgstr ""
6771
+
6772
+ #: widgets/gallery/gallery-handler.php:13
6773
+ msgid "Gallery"
6774
+ msgstr ""
6775
+
6776
+ #: widgets/gallery/gallery.php:48
6777
+ msgid "Gallery Content"
6778
+ msgstr ""
6779
+
6780
+ #: widgets/gallery/gallery.php:56
6781
+ msgid "Filter Label"
6782
+ msgstr ""
6783
+
6784
+ #: widgets/gallery/gallery.php:66
6785
+ msgid "Add Images"
6786
+ msgstr ""
6787
+
6788
+ #: widgets/gallery/gallery.php:104
6789
+ msgid "Masonry"
6790
+ msgstr ""
6791
+
6792
+ #: widgets/gallery/gallery.php:113
6793
+ #: widgets/woo-category-list/woo-category-list.php:165
6794
+ #: widgets/woo-product-list/woo-product-list.php:187
6795
+ msgid "Columns"
6796
+ msgstr ""
6797
+
6798
+ #: widgets/gallery/gallery.php:129
6799
+ msgid "Image Aspect Ratio"
6800
+ msgstr ""
6801
+
6802
+ #: widgets/gallery/gallery.php:165
6803
+ msgid "\"All\" Filter Label"
6804
+ msgstr ""
6805
+
6806
+ #: widgets/gallery/gallery.php:167 widgets/tablepress/tablepress.php:79
6807
+ #: widgets/woo-category-list/woo-category-list.php:47
6808
+ msgid "All"
6809
+ msgstr ""
6810
+
6811
+ #: widgets/gallery/gallery.php:174 widgets/icon-box/icon-box.php:388
6812
+ #: widgets/piechart/piechart.php:313 widgets/pricing/pricing.php:1679
6813
+ #: widgets/woo-product-carousel/woo-product-carousel.php:186
6814
+ #: widgets/woo-product-list/woo-product-list.php:144
6815
+ msgid "Content Alignment"
6816
+ msgstr ""
6817
+
6818
+ #: widgets/gallery/gallery.php:225
6819
+ #: widgets/instagram-feed/instagram-feed.php:203
6820
+ msgid "Show Caption"
6821
+ msgstr ""
6822
+
6823
+ #: widgets/gallery/gallery.php:237 widgets/heading/heading.php:170
6824
+ #: widgets/team/team.php:144
6825
+ msgid "Show Description"
6826
+ msgstr ""
6827
+
6828
+ #: widgets/gallery/gallery.php:250
6829
+ msgid "Show Filter Label"
6830
+ msgstr ""
6831
+
6832
+ #: widgets/gallery/gallery.php:262
6833
+ msgid "Show Lightbox"
6834
+ msgstr ""
6835
+
6836
+ #: widgets/gallery/gallery.php:274
6837
+ msgid "Lightbox Icon"
6838
+ msgstr ""
6839
+
6840
+ #: widgets/gallery/gallery.php:318
6841
+ msgid "Show Image Slideshow"
6842
+ msgstr ""
6843
+
6844
+ #: widgets/gallery/gallery.php:320
6845
+ msgid "True"
6846
+ msgstr ""
6847
+
6848
+ #: widgets/gallery/gallery.php:321
6849
+ msgid "Flase"
6850
+ msgstr ""
6851
+
6852
+ #: widgets/gallery/gallery.php:333 widgets/table/table.php:587
6853
+ msgid "Ordering"
6854
+ msgstr ""
6855
+
6856
+ #: widgets/gallery/gallery.php:338
6857
+ #: widgets/woo-product-carousel/woo-product-carousel.php:156
6858
+ #: widgets/woo-product-list/woo-product-list.php:111
6859
+ msgid "Random"
6860
+ msgstr ""
6861
+
6862
+ #: widgets/gallery/gallery.php:355
6863
+ msgid "Columns Gap"
6864
+ msgstr ""
6865
+
6866
+ #: widgets/gallery/gallery.php:382
6867
+ msgid "Rows Gap"
6868
+ msgstr ""
6869
+
6870
+ #: widgets/gallery/gallery.php:445
6871
+ msgid "Thumbnails"
6872
+ msgstr ""
6873
+
6874
+ #: widgets/gallery/gallery.php:532 widgets/gallery/gallery.php:695
6875
+ #: widgets/gallery/gallery.php:868
6876
+ msgid "Gray Scale"
6877
+ msgstr ""
6878
+
6879
+ #: widgets/gallery/gallery.php:538
6880
+ msgid "Image Filter"
6881
+ msgstr ""
6882
+
6883
+ #: widgets/gallery/gallery.php:906
6884
+ msgid "Axis"
6885
+ msgstr ""
6886
+
6887
+ #: widgets/gallery/gallery.php:911
6888
+ msgid "X Axis"
6889
+ msgstr ""
6890
+
6891
+ #: widgets/gallery/gallery.php:912
6892
+ msgid "Y Axis"
6893
+ msgstr ""
6894
+
6895
+ #: widgets/gallery/gallery.php:923
6896
+ msgid "Amount"
6897
+ msgstr ""
6898
+
6899
+ #: widgets/gallery/gallery.php:964
6900
+ msgid "Depth"
6901
+ msgstr ""
6902
+
6903
+ #: widgets/gallery/gallery.php:987
6904
+ msgid "Show Glare"
6905
+ msgstr ""
6906
+
6907
+ #: widgets/gallery/gallery.php:1002
6908
+ msgid "Perspective"
6909
+ msgstr ""
6910
+
6911
+ #: widgets/gallery/gallery.php:1055
6912
+ msgid "Caption"
6913
+ msgstr ""
6914
+
6915
+ #: widgets/gallery/gallery.php:1156 widgets/gallery/gallery.php:1220
6916
+ #: widgets/gallery/gallery.php:1346 widgets/gallery/gallery.php:1409
6917
+ #: widgets/gallery/gallery.php:1535 widgets/gallery/gallery.php:1598
6918
+ #: widgets/motion-text/motion-text.php:316
6919
+ #: widgets/social-share/social-share.php:280
6920
+ #: widgets/social-share/social-share.php:334 widgets/social/social.php:242
6921
+ #: widgets/social/social.php:296 widgets/team/team.php:277
6922
+ #: widgets/team/team.php:331 widgets/video/video.php:688
6923
+ #: widgets/woo-mini-cart/woo-mini-cart.php:159
6924
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1022
6925
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2753
6926
+ #: widgets/woo-product-list/woo-product-list.php:1739
6927
+ msgid "Text Shadow"
6928
+ msgstr ""
6929
+
6930
+ #: widgets/gallery/gallery.php:1623
6931
+ msgid "Link Icon"
6932
+ msgstr ""
6933
+
6934
+ #: widgets/gallery/gallery.php:1863
6935
+ msgid "Multiply"
6936
+ msgstr ""
6937
+
6938
+ #: widgets/gallery/gallery.php:1864
6939
+ msgid "Screen"
6940
+ msgstr ""
6941
+
6942
+ #: widgets/gallery/gallery.php:1866
6943
+ msgid "Darken"
6944
+ msgstr ""
6945
+
6946
+ #: widgets/gallery/gallery.php:1867
6947
+ msgid "Lighten"
6948
+ msgstr ""
6949
+
6950
+ #: widgets/gallery/gallery.php:1868
6951
+ msgid "Color-dodge"
6952
+ msgstr ""
6953
+
6954
+ #: widgets/gallery/gallery.php:1869
6955
+ msgid "Color-burn"
6956
+ msgstr ""
6957
+
6958
+ #: widgets/gallery/gallery.php:1870
6959
+ msgid "Difference"
6960
+ msgstr ""
6961
+
6962
+ #: widgets/gallery/gallery.php:1871
6963
+ msgid "Exclusion"
6964
+ msgstr ""
6965
+
6966
+ #: widgets/gallery/gallery.php:1872
6967
+ msgid "hue"
6968
+ msgstr ""
6969
+
6970
+ #: widgets/gallery/gallery.php:1873
6971
+ msgid "Saturation"
6972
+ msgstr ""
6973
+
6974
+ #: widgets/gallery/gallery.php:1875
6975
+ msgid "Luminosity"
6976
+ msgstr ""
6977
+
6978
+ #: widgets/gallery/gallery.php:1881
6979
+ msgid "Show Overlay"
6980
+ msgstr ""
6981
+
6982
+ #: widgets/gallery/gallery.php:1905 widgets/gallery/gallery.php:1976
6983
+ msgid "Blend Mode"
6984
+ msgstr ""
6985
+
6986
+ #: widgets/gallery/gallery.php:2044
6987
+ #: widgets/woo-category-list/woo-category-list.php:35
6988
+ #: widgets/woo-product-carousel/woo-product-carousel.php:92
6989
+ #: widgets/woo-product-list/woo-product-list.php:39
6990
+ msgid "Filter"
6991
+ msgstr ""
6992
+
6993
+ #: widgets/gallery/gallery.php:2051
6994
+ msgid "Filter Style"
6995
+ msgstr ""
6996
+
6997
+ #: widgets/gallery/gallery.php:2056
6998
+ msgid "Style One"
6999
+ msgstr ""
7000
+
7001
+ #: widgets/gallery/gallery.php:2057
7002
+ msgid "Style Two"
7003
+ msgstr ""
7004
+
7005
+ #: widgets/gallery/gallery.php:2058
7006
+ msgid "Style Three"
7007
+ msgstr ""
7008
+
7009
+ #: widgets/gallery/gallery.php:2059
7010
+ msgid "Style Four"
7011
+ msgstr ""
7012
+
7013
+ #: widgets/gallery/gallery.php:2060
7014
+ msgid "Style Five"
7015
+ msgstr ""
7016
+
7017
+ #: widgets/gallery/gallery.php:2061
7018
+ msgid "Style Six"
7019
+ msgstr ""
7020
+
7021
+ #: widgets/gallery/gallery.php:2062
7022
+ msgid "Style Seven"
7023
+ msgstr ""
7024
+
7025
+ #: widgets/gallery/gallery.php:2063
7026
+ msgid "Style Eight"
7027
+ msgstr ""
7028
+
7029
+ #: widgets/gallery/gallery.php:2064
7030
+ msgid "Style Nine"
7031
+ msgstr ""
7032
+
7033
+ #: widgets/gallery/gallery.php:2065
7034
+ msgid "Style Ten"
7035
+ msgstr ""
7036
+
7037
+ #: widgets/gallery/gallery.php:2073
7038
+ msgid "Nav Fill"
7039
+ msgstr ""
7040
+
7041
+ #: widgets/gallery/gallery.php:2085
7042
+ msgid "Filter Items Alignment"
7043
+ msgstr ""
7044
+
7045
+ #: widgets/gallery/gallery.php:2097
7046
+ msgid "Justify"
7047
+ msgstr ""
7048
+
7049
+ #: widgets/gallery/gallery.php:2118
7050
+ msgid "Filter Alignment"
7051
+ msgstr ""
7052
+
7053
+ #: widgets/gallery/gallery.php:2386
7054
+ msgid "Show Divider"
7055
+ msgstr ""
7056
+
7057
+ #: widgets/gallery/gallery.php:2625
7058
+ msgid "Nav Bottom Spacing"
7059
+ msgstr ""
7060
+
7061
+ #: widgets/gallery/gallery.php:2833
7062
+ #: widgets/image-comparison/image-comparison.php:50
7063
+ msgid "Container Style"
7064
+ msgstr ""
7065
+
7066
+ #: widgets/header-info/header-info-handler.php:13
7067
+ #: widgets/header-info/header-info.php:37
7068
+ #: widgets/header-info/header-info.php:90
7069
+ #: widgets/header-info/header-info.php:108
7070
+ msgid "Header Info"
7071
+ msgstr ""
7072
+
7073
+ #: widgets/header-info/header-info.php:95
7074
+ msgid "463 7th Ave, NY 10018, USA"
7075
+ msgstr ""
7076
+
7077
+ #: widgets/header-offcanvas/header-offcanvas-handler.php:13
7078
+ #: widgets/header-offcanvas/header-offcanvas.php:38
7079
+ msgid "Header Offcanvas"
7080
+ msgstr ""
7081
+
7082
+ #: widgets/header-offcanvas/header-offcanvas.php:53
7083
+ msgid "Overlay color"
7084
+ msgstr ""
7085
+
7086
+ #: widgets/header-offcanvas/header-offcanvas.php:67
7087
+ #: widgets/header-offcanvas/header-offcanvas.php:129
7088
+ msgid "Hamburger"
7089
+ msgstr ""
7090
+
7091
+ #: widgets/header-offcanvas/header-offcanvas.php:98 widgets/team/team.php:478
7092
+ #: widgets/team/team.php:1956
7093
+ msgid "Close Icon"
7094
+ msgstr ""
7095
+
7096
+ #: widgets/header-offcanvas/header-offcanvas.php:120
7097
+ msgid "Offcanvas"
7098
+ msgstr ""
7099
+
7100
+ #: widgets/header-offcanvas/header-offcanvas.php:498
7101
+ msgid "Offcanvas Panel"
7102
+ msgstr ""
7103
+
7104
+ #: widgets/header-search/header-search-handler.php:13
7105
+ #: widgets/header-search/header-search.php:43
7106
+ #: widgets/header-search/header-search.php:168
7107
+ msgid "Header Search"
7108
+ msgstr ""
7109
+
7110
+ #: widgets/header-search/header-search.php:49
7111
+ msgid "Placeholder Text"
7112
+ msgstr ""
7113
+
7114
+ #: widgets/heading/heading-handler.php:11
7115
+ msgid "Heading"
7116
+ msgstr ""
7117
+
7118
+ #: widgets/heading/heading.php:43
7119
+ msgid "Heading Title"
7120
+ msgstr ""
7121
+
7122
+ #: widgets/heading/heading.php:45
7123
+ msgid ""
7124
+ "\"Focused Title\" Settings will be worked, If you use this {{something}} "
7125
+ "format"
7126
+ msgstr ""
7127
+
7128
+ #: widgets/heading/heading.php:47 widgets/heading/heading.php:48
7129
+ msgid "Grow your "
7130
+ msgstr ""
7131
+
7132
+ #: widgets/heading/heading.php:80 widgets/page-list/page-list.php:799
7133
+ #: widgets/timeline/timeline.php:77
7134
+ msgid "Subtitle"
7135
+ msgstr ""
7136
+
7137
+ #: widgets/heading/heading.php:87
7138
+ msgid "Show Sub Title"
7139
+ msgstr ""
7140
+
7141
+ #: widgets/heading/heading.php:95
7142
+ msgid "Border Sub Title"
7143
+ msgstr ""
7144
+
7145
+ #: widgets/heading/heading.php:106
7146
+ msgid "Heading Sub Title"
7147
+ msgstr ""
7148
+
7149
+ #: widgets/heading/heading.php:109 widgets/heading/heading.php:110
7150
+ msgid "Time has changed"
7151
+ msgstr ""
7152
+
7153
+ #: widgets/heading/heading.php:122
7154
+ msgid "Sub Title Position"
7155
+ msgstr ""
7156
+
7157
+ #: widgets/heading/heading.php:138
7158
+ msgid "Sub Title HTML Tag"
7159
+ msgstr ""
7160
+
7161
+ #: widgets/heading/heading.php:163 widgets/heading/heading.php:184
7162
+ #: widgets/heading/heading.php:748
7163
+ msgid "Title Description"
7164
+ msgstr ""
7165
+
7166
+ #: widgets/heading/heading.php:179
7167
+ msgid "Heading Description"
7168
+ msgstr ""
7169
+
7170
+ #: widgets/heading/heading.php:183
7171
+ msgid ""
7172
+ "A small river named Duden flows by their place and supplies it with the "
7173
+ "necessary regelialia. It is a paradise "
7174
+ msgstr ""
7175
+
7176
+ #: widgets/heading/heading.php:200 widgets/heading/heading.php:790
7177
+ msgid "Seperator"
7178
+ msgstr ""
7179
+
7180
+ #: widgets/heading/heading.php:207
7181
+ msgid "Show Seperator"
7182
+ msgstr ""
7183
+
7184
+ #: widgets/heading/heading.php:218
7185
+ msgid "Seperator Style"
7186
+ msgstr ""
7187
+
7188
+ #: widgets/heading/heading.php:223
7189
+ msgid "Solid with star"
7190
+ msgstr ""
7191
+
7192
+ #: widgets/heading/heading.php:224
7193
+ msgid "Solid with bullet"
7194
+ msgstr ""
7195
+
7196
+ #: widgets/heading/heading.php:237
7197
+ msgid "Seperator Position"
7198
+ msgstr ""
7199
+
7200
+ #: widgets/heading/heading.php:331 widgets/heading/heading.php:377
7201
+ msgid "Title primary color"
7202
+ msgstr ""
7203
+
7204
+ #: widgets/heading/heading.php:370
7205
+ msgid "Focused Title"
7206
+ msgstr ""
7207
+
7208
+ #: widgets/heading/heading.php:393
7209
+ msgid "Text decoration color"
7210
+ msgstr ""
7211
+
7212
+ #: widgets/heading/heading.php:421
7213
+ msgid "Use background color on text"
7214
+ msgstr ""
7215
+
7216
+ #: widgets/heading/heading.php:435 widgets/heading/heading.php:476
7217
+ msgid "Focused Title Secondary BG"
7218
+ msgstr ""
7219
+
7220
+ #: widgets/heading/heading.php:461 widgets/heading/heading.php:530
7221
+ msgid "Use text fill"
7222
+ msgstr ""
7223
+
7224
+ #: widgets/heading/heading.php:565
7225
+ msgid "Subtitle Border Left"
7226
+ msgstr ""
7227
+
7228
+ #: widgets/heading/heading.php:630
7229
+ msgid "Subtitle Border Right color"
7230
+ msgstr ""
7231
+
7232
+ #: widgets/heading/heading.php:759
7233
+ msgid "Title Description color"
7234
+ msgstr ""
7235
+
7236
+ #: widgets/heading/heading.php:864
7237
+ msgid "Seperator color"
7238
+ msgstr ""
7239
+
7240
+ #: widgets/hotspot/hotspot-handler.php:11 widgets/hotspot/hotspot.php:34
7241
+ msgid "Hotspot"
7242
+ msgstr ""
7243
+
7244
+ #: widgets/hotspot/hotspot.php:63
7245
+ msgid "Background Map Image"
7246
+ msgstr ""
7247
+
7248
+ #: widgets/hotspot/hotspot.php:74
7249
+ msgid "Show Glow"
7250
+ msgstr ""
7251
+
7252
+ #: widgets/hotspot/hotspot.php:86
7253
+ msgid "Click Or Hover"
7254
+ msgstr ""
7255
+
7256
+ #: widgets/hotspot/hotspot.php:89 widgets/woo-mini-cart/woo-mini-cart.php:65
7257
+ msgid "Click"
7258
+ msgstr ""
7259
+
7260
+ #: widgets/hotspot/hotspot.php:101
7261
+ msgid "Active Or Not"
7262
+ msgstr ""
7263
+
7264
+ #: widgets/hotspot/hotspot.php:118 widgets/hotspot/hotspot.php:370
7265
+ #: widgets/hotspot/hotspot.php:383 widgets/hotspot/hotspot.php:396
7266
+ #: widgets/hotspot/hotspot.php:409
7267
+ msgid "South Carolina Data Center"
7268
+ msgstr ""
7269
+
7270
+ #: widgets/hotspot/hotspot.php:128 widgets/piechart/piechart.php:168
7271
+ #: widgets/timeline/timeline.php:114
7272
+ msgid "Type your description here"
7273
+ msgstr ""
7274
+
7275
+ #: widgets/hotspot/hotspot.php:135
7276
+ msgid "Line Direction"
7277
+ msgstr ""
7278
+
7279
+ #: widgets/hotspot/hotspot.php:143
7280
+ msgid "Left Top"
7281
+ msgstr ""
7282
+
7283
+ #: widgets/hotspot/hotspot.php:144
7284
+ msgid "Left Bottom"
7285
+ msgstr ""
7286
+
7287
+ #: widgets/hotspot/hotspot.php:145
7288
+ msgid "Right Top"
7289
+ msgstr ""
7290
+
7291
+ #: widgets/hotspot/hotspot.php:146
7292
+ msgid "Right Bottom"
7293
+ msgstr ""
7294
+
7295
+ #: widgets/hotspot/hotspot.php:300
7296
+ msgid "Right and bottom?"
7297
+ msgstr ""
7298
+
7299
+ #: widgets/hotspot/hotspot.php:371 widgets/hotspot/hotspot.php:384
7300
+ #: widgets/hotspot/hotspot.php:397 widgets/hotspot/hotspot.php:410
7301
+ #: widgets/timeline/timeline.php:305 widgets/timeline/timeline.php:309
7302
+ #: widgets/timeline/timeline.php:313
7303
+ msgid "Item content. Click the edit button to change this text."
7304
+ msgstr ""
7305
+
7306
+ #: widgets/hotspot/hotspot.php:525
7307
+ msgid "Caret Background"
7308
+ msgstr ""
7309
+
7310
+ #: widgets/hotspot/hotspot.php:541
7311
+ msgid "Pointer"
7312
+ msgstr ""
7313
+
7314
+ #: widgets/hotspot/hotspot.php:560
7315
+ msgid "Pointer Size"
7316
+ msgstr ""
7317
+
7318
+ #: widgets/hotspot/hotspot.php:607
7319
+ msgid "Point Color"
7320
+ msgstr ""
7321
+
7322
+ #: widgets/hotspot/hotspot.php:621 widgets/video/video.php:485
7323
+ msgid "Glow Color"
7324
+ msgstr ""
7325
+
7326
+ #: widgets/hotspot/hotspot.php:736
7327
+ msgid "Image Position"
7328
+ msgstr ""
7329
+
7330
+ #: widgets/icon-box/icon-box-handler.php:11 widgets/icon-box/icon-box.php:36
7331
+ msgid "Icon Box"
7332
+ msgstr ""
7333
+
7334
+ #: widgets/icon-box/icon-box.php:80 widgets/pricing/pricing.php:1017
7335
+ msgid "Header Icon"
7336
+ msgstr ""
7337
+
7338
+ #: widgets/icon-box/icon-box.php:135 widgets/image-box/image-box.php:215
7339
+ msgid ""
7340
+ "Click edit to change this text. Lorem ipsum dolor sit amet, cctetur "
7341
+ "adipiscing elit. Ut elit tellus, luctus nec ullamcorper mattis, pulvinar "
7342
+ "dapibus leo."
7343
+ msgstr ""
7344
+
7345
+ #: widgets/icon-box/icon-box.php:136 widgets/image-box/image-box.php:216
7346
+ msgid "Enter your description"
7347
+ msgstr ""
7348
+
7349
+ #: widgets/icon-box/icon-box.php:150
7350
+ #: widgets/image-accordion/image-accordion.php:51
7351
+ #: widgets/image-accordion/image-accordion.php:129
7352
+ #: widgets/twitter-feed/twitter-feed.php:852
7353
+ msgid "Read More"
7354
+ msgstr ""
7355
+
7356
+ #: widgets/icon-box/icon-box.php:156
7357
+ #: widgets/image-accordion/image-accordion.php:116
7358
+ #: widgets/image-box/image-box.php:264
7359
+ msgid "Enable Button"
7360
+ msgstr ""
7361
+
7362
+ #: widgets/icon-box/icon-box.php:168
7363
+ msgid "Enable Hover Btn"
7364
+ msgstr ""
7365
+
7366
+ #: widgets/icon-box/icon-box.php:183
7367
+ msgid "bottom position"
7368
+ msgstr ""
7369
+
7370
+ #: widgets/icon-box/icon-box.php:291
7371
+ msgid "Global Link"
7372
+ msgstr ""
7373
+
7374
+ #: widgets/icon-box/icon-box.php:338
7375
+ msgid "Enable Hover Water Mark "
7376
+ msgstr ""
7377
+
7378
+ #: widgets/icon-box/icon-box.php:350
7379
+ msgid "Social Icons"
7380
+ msgstr ""
7381
+
7382
+ #: widgets/icon-box/icon-box.php:447
7383
+ #: widgets/woo-product-carousel/woo-product-carousel.php:314
7384
+ #: widgets/woo-product-list/woo-product-list.php:267
7385
+ msgid "Show Badge"
7386
+ msgstr ""
7387
+
7388
+ #: widgets/icon-box/icon-box.php:460
7389
+ msgid "EXCLUSIVE"
7390
+ msgstr ""
7391
+
7392
+ #: widgets/icon-box/icon-box.php:461 widgets/mail-chimp/mail-chimp.php:527
7393
+ #: widgets/motion-text/motion-text.php:46 widgets/page-list/page-list.php:137
7394
+ #: widgets/page-list/page-list.php:278 widgets/piechart/piechart.php:153
7395
+ #: widgets/vertical-menu/vertical-menu.php:102
7396
+ msgid "Type your title here"
7397
+ msgstr ""
7398
+
7399
+ #: widgets/icon-box/icon-box.php:475
7400
+ #: widgets/woo-product-carousel/woo-product-carousel.php:37
7401
+ #: widgets/woo-product-carousel/woo-product-carousel.php:52
7402
+ msgid "Top Left"
7403
+ msgstr ""
7404
+
7405
+ #: widgets/icon-box/icon-box.php:476
7406
+ #: widgets/woo-product-carousel/woo-product-carousel.php:38
7407
+ #: widgets/woo-product-carousel/woo-product-carousel.php:53
7408
+ msgid "Top Center"
7409
+ msgstr ""
7410
+
7411
+ #: widgets/icon-box/icon-box.php:478
7412
+ msgid "Center Left"
7413
+ msgstr ""
7414
+
7415
+ #: widgets/icon-box/icon-box.php:479
7416
+ #: widgets/woo-product-carousel/woo-product-carousel.php:41
7417
+ #: widgets/woo-product-carousel/woo-product-carousel.php:55
7418
+ msgid "Bottom Left"
7419
+ msgstr ""
7420
+
7421
+ #: widgets/icon-box/icon-box.php:480
7422
+ #: widgets/woo-product-carousel/woo-product-carousel.php:42
7423
+ #: widgets/woo-product-carousel/woo-product-carousel.php:56
7424
+ msgid "Bottom Center"
7425
+ msgstr ""
7426
+
7427
+ #: widgets/icon-box/icon-box.php:481
7428
+ #: widgets/woo-product-carousel/woo-product-carousel.php:43
7429
+ #: widgets/woo-product-carousel/woo-product-carousel.php:57
7430
+ msgid "Bottom Right"
7431
+ msgstr ""
7432
+
7433
+ #: widgets/icon-box/icon-box.php:532 widgets/team/team.php:1989
7434
+ msgid "Icon BG Color"
7435
+ msgstr ""
7436
+
7437
+ #: widgets/icon-box/icon-box.php:582 widgets/team/team.php:2039
7438
+ msgid "Icon Hover Color"
7439
+ msgstr ""
7440
+
7441
+ #: widgets/icon-box/icon-box.php:619 widgets/icon-box/icon-box.php:1328
7442
+ #: widgets/piechart/piechart.php:593 widgets/pricing/pricing.php:1141
7443
+ msgid "Hover Animation"
7444
+ msgstr ""
7445
+
7446
+ #: widgets/icon-box/icon-box.php:780 widgets/team/team.php:2205
7447
+ msgid "Vertical Position "
7448
+ msgstr ""
7449
+
7450
+ #: widgets/icon-box/icon-box.php:887
7451
+ msgid "Color Hover as"
7452
+ msgstr ""
7453
+
7454
+ #: widgets/icon-box/icon-box.php:928
7455
+ msgid "Water Mark"
7456
+ msgstr ""
7457
+
7458
+ #: widgets/icon-box/icon-box.php:940
7459
+ msgid "Water Mark Color"
7460
+ msgstr ""
7461
+
7462
+ #: widgets/icon-box/icon-box.php:956
7463
+ msgid "Water Mark Font Size"
7464
+ msgstr ""
7465
+
7466
+ #: widgets/icon-box/icon-box.php:1028 widgets/image-box/image-box.php:474
7467
+ #: widgets/image-box/image-box.php:1289 widgets/table/table.php:2334
7468
+ msgid "Icon Font Size"
7469
+ msgstr ""
7470
+
7471
+ #: widgets/icon-box/icon-box.php:1196
7472
+ msgid "Icon Box Container"
7473
+ msgstr ""
7474
+
7475
+ #: widgets/icon-box/icon-box.php:1340
7476
+ msgid "Background Overlay "
7477
+ msgstr ""
7478
+
7479
+ #: widgets/icon-box/icon-box.php:1348
7480
+ msgid "Enable Image Overlay"
7481
+ msgstr ""
7482
+
7483
+ #: widgets/icon-box/icon-box.php:1378 widgets/icon-box/icon-box.php:1417
7484
+ #: widgets/icon-box/icon-box.php:1434
7485
+ msgid "Background Overlay Color"
7486
+ msgstr ""
7487
+
7488
+ #: widgets/icon-hover/icon-hover-handler.php:11
7489
+ #: widgets/icon-hover/icon-hover.php:34
7490
+ msgid "Icon Hover"
7491
+ msgstr ""
7492
+
7493
+ #: widgets/image-accordion/image-accordion-handler.php:11
7494
+ msgid "Image Accordion"
7495
+ msgstr ""
7496
+
7497
+ #: widgets/image-accordion/image-accordion.php:44
7498
+ msgid "Accordion Items"
7499
+ msgstr ""
7500
+
7501
+ #: widgets/image-accordion/image-accordion.php:48
7502
+ msgid "This is title"
7503
+ msgstr ""
7504
+
7505
+ #: widgets/image-accordion/image-accordion.php:57
7506
+ msgid "Active ? "
7507
+ msgstr ""
7508
+
7509
+ #: widgets/image-accordion/image-accordion.php:65
7510
+ msgid "Background Image"
7511
+ msgstr ""
7512
+
7513
+ #: widgets/image-accordion/image-accordion.php:78
7514
+ msgid "Image accordion Title"
7515
+ msgstr ""
7516
+
7517
+ #: widgets/image-accordion/image-accordion.php:81
7518
+ msgid "Enable Icon"
7519
+ msgstr ""
7520
+
7521
+ #: widgets/image-accordion/image-accordion.php:90
7522
+ msgid "Icon for title"
7523
+ msgstr ""
7524
+
7525
+ #: widgets/image-accordion/image-accordion.php:126
7526
+ msgid "Button Label"
7527
+ msgstr ""
7528
+
7529
+ #: widgets/image-accordion/image-accordion.php:136
7530
+ msgid "Button URL"
7531
+ msgstr ""
7532
+
7533
+ #: widgets/image-accordion/image-accordion.php:143
7534
+ msgid "Enable Popup"
7535
+ msgstr ""
7536
+
7537
+ #: widgets/image-accordion/image-accordion.php:153
7538
+ msgid "Pupup Icon"
7539
+ msgstr ""
7540
+
7541
+ #: widgets/image-accordion/image-accordion.php:166
7542
+ msgid "Enable Project Link"
7543
+ msgstr ""
7544
+
7545
+ #: widgets/image-accordion/image-accordion.php:175
7546
+ msgid "Project Link"
7547
+ msgstr ""
7548
+
7549
+ #: widgets/image-accordion/image-accordion.php:191
7550
+ msgid "Project Link Icon"
7551
+ msgstr ""
7552
+
7553
+ #: widgets/image-accordion/image-accordion.php:263
7554
+ msgid "Active Item Background"
7555
+ msgstr ""
7556
+
7557
+ #: widgets/image-accordion/image-accordion.php:352
7558
+ msgctxt "Border Control"
7559
+ msgid "Margin"
7560
+ msgstr ""
7561
+
7562
+ #: widgets/image-accordion/image-accordion.php:369
7563
+ msgctxt "Border Control"
7564
+ msgid "Title Icon Spacing"
7565
+ msgstr ""
7566
+
7567
+ #: widgets/image-accordion/image-accordion.php:691
7568
+ msgid "Action Icon"
7569
+ msgstr ""
7570
+
7571
+ #: widgets/image-accordion/image-accordion.php:699
7572
+ msgid "Icon Left Spacing"
7573
+ msgstr ""
7574
+
7575
+ #: widgets/image-accordion/image-accordion.php:716
7576
+ msgctxt "Border Control"
7577
+ msgid "Icon Container Spacing"
7578
+ msgstr ""
7579
+
7580
+ #: widgets/image-accordion/image-accordion.php:734
7581
+ #: widgets/image-accordion/image-accordion.php:767
7582
+ msgid "Popup Icon color"
7583
+ msgstr ""
7584
+
7585
+ #: widgets/image-accordion/image-accordion.php:746
7586
+ #: widgets/image-accordion/image-accordion.php:779
7587
+ msgid "Link Icon color"
7588
+ msgstr ""
7589
+
7590
+ #: widgets/image-box/image-box-handler.php:11
7591
+ msgid "Image Box"
7592
+ msgstr ""
7593
+
7594
+ #: widgets/image-box/image-box.php:70
7595
+ msgid "Content Area"
7596
+ msgstr ""
7597
+
7598
+ #: widgets/image-box/image-box.php:75 widgets/image-box/image-box.php:567
7599
+ msgid "Classic Curves"
7600
+ msgstr ""
7601
+
7602
+ #: widgets/image-box/image-box.php:76
7603
+ msgid "Floating box"
7604
+ msgstr ""
7605
+
7606
+ #: widgets/image-box/image-box.php:77
7607
+ msgid "Hover Border"
7608
+ msgstr ""
7609
+
7610
+ #: widgets/image-box/image-box.php:78 widgets/image-box/image-box.php:707
7611
+ msgid "Side Line"
7612
+ msgstr ""
7613
+
7614
+ #: widgets/image-box/image-box.php:79
7615
+ msgid "Shadow line"
7616
+ msgstr ""
7617
+
7618
+ #: widgets/image-box/image-box.php:172
7619
+ msgid "Title Icon Position"
7620
+ msgstr ""
7621
+
7622
+ #: widgets/image-box/image-box.php:427
7623
+ msgid "Hover Height"
7624
+ msgstr ""
7625
+
7626
+ #: widgets/image-box/image-box.php:499
7627
+ msgid "Margin Top"
7628
+ msgstr ""
7629
+
7630
+ #: widgets/image-box/image-box.php:627
7631
+ msgid "Hover Border Bottom"
7632
+ msgstr ""
7633
+
7634
+ #: widgets/image-box/image-box.php:638
7635
+ msgid "Border Bottom Height"
7636
+ msgstr ""
7637
+
7638
+ #: widgets/image-box/image-box.php:752
7639
+ msgid "Border Type"
7640
+ msgstr ""
7641
+
7642
+ #: widgets/image-box/image-box.php:758 widgets/pricing/pricing.php:1816
7643
+ #: widgets/tablepress/tablepress.php:214 widgets/tablepress/tablepress.php:341
7644
+ #: widgets/tablepress/tablepress.php:424
7645
+ msgid "Double"
7646
+ msgstr ""
7647
+
7648
+ #: widgets/image-box/image-box.php:775
7649
+ msgid "Shadow Line"
7650
+ msgstr ""
7651
+
7652
+ #: widgets/image-box/image-box.php:790
7653
+ msgid "Left Line"
7654
+ msgstr ""
7655
+
7656
+ #: widgets/image-box/image-box.php:842
7657
+ msgid "Right Line"
7658
+ msgstr ""
7659
+
7660
+ #: widgets/image-box/image-box.php:942 widgets/image-box/image-box.php:976
7661
+ msgid "Image opacity"
7662
+ msgstr ""
7663
+
7664
+ #: widgets/image-box/image-box.php:1000
7665
+ msgid "Image Scale on Hover"
7666
+ msgstr ""
7667
+
7668
+ #: widgets/image-box/image-box.php:1040
7669
+ msgid "Genaral"
7670
+ msgstr ""
7671
+
7672
+ #: widgets/image-box/image-box.php:1157 widgets/image-box/image-box.php:1239
7673
+ #: widgets/woo-product-carousel/woo-product-carousel.php:769
7674
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2436
7675
+ #: widgets/woo-product-list/woo-product-list.php:931
7676
+ #: widgets/woo-product-list/woo-product-list.php:2224
7677
+ msgid "Hover Color"
7678
+ msgstr ""
7679
+
7680
+ #: widgets/image-comparison/image-comparison-handler.php:11
7681
+ msgid "Image Comparison"
7682
+ msgstr ""
7683
+
7684
+ #: widgets/image-comparison/image-comparison.php:42
7685
+ msgid "Items"
7686
+ msgstr ""
7687
+
7688
+ #: widgets/image-comparison/image-comparison.php:136
7689
+ msgid "How much of the before image is visible when the page loads"
7690
+ msgstr ""
7691
+
7692
+ #: widgets/image-comparison/image-comparison.php:142
7693
+ msgid "Remove overlay?"
7694
+ msgstr ""
7695
+
7696
+ #: widgets/image-comparison/image-comparison.php:148
7697
+ msgid "Do not show the overlay with before and after"
7698
+ msgstr ""
7699
+
7700
+ #: widgets/image-comparison/image-comparison.php:154
7701
+ msgid "Move slider on hover?"
7702
+ msgstr ""
7703
+
7704
+ #: widgets/image-comparison/image-comparison.php:160
7705
+ msgid "Move slider on mouse hover?"
7706
+ msgstr ""
7707
+
7708
+ #: widgets/image-comparison/image-comparison.php:166
7709
+ msgid "Click to move?"
7710
+ msgstr ""
7711
+
7712
+ #: widgets/image-comparison/image-comparison.php:172
7713
+ msgid ""
7714
+ "Allow a user to click (or tap) anywhere on the image to move the slider to "
7715
+ "that location."
7716
+ msgstr ""
7717
+
7718
+ #: widgets/image-comparison/image-comparison.php:384
7719
+ msgid "Handle"
7720
+ msgstr ""
7721
+
7722
+ #: widgets/image-comparison/image-comparison.php:393
7723
+ msgid "Control Width"
7724
+ msgstr ""
7725
+
7726
+ #: widgets/image-comparison/image-comparison.php:572
7727
+ msgid "Handle Divider"
7728
+ msgstr ""
7729
+
7730
+ #: widgets/image-comparison/image-comparison.php:581
7731
+ msgid "Divider Thickness"
7732
+ msgstr ""
7733
+
7734
+ #: widgets/image-comparison/image-comparison.php:599
7735
+ msgid "Divider Color"
7736
+ msgstr ""
7737
+
7738
+ #: widgets/instagram-feed/instagram-feed-handler.php:15
7739
+ msgid "Instagram Feed"
7740
+ msgstr ""
7741
+
7742
+ #: widgets/instagram-feed/instagram-feed.php:63
7743
+ msgid "1 Columns"
7744
+ msgstr ""
7745
+
7746
+ #: widgets/instagram-feed/instagram-feed.php:111
7747
+ msgid "Profile Header"
7748
+ msgstr ""
7749
+
7750
+ #: widgets/instagram-feed/instagram-feed.php:125
7751
+ msgid "Profile Settings"
7752
+ msgstr ""
7753
+
7754
+ #: widgets/instagram-feed/instagram-feed.php:142
7755
+ msgid "Profile Style"
7756
+ msgstr ""
7757
+
7758
+ #: widgets/instagram-feed/instagram-feed.php:175
7759
+ #: widgets/mail-chimp/mail-chimp.php:468 widgets/page-list/page-list.php:144
7760
+ #: widgets/post-list/post-list.php:155 widgets/team/team.php:112
7761
+ msgid "Show Icon"
7762
+ msgstr ""
7763
+
7764
+ #: widgets/instagram-feed/instagram-feed.php:191
7765
+ msgid "Show Comment Box"
7766
+ msgstr ""
7767
+
7768
+ #: widgets/instagram-feed/instagram-feed.php:216
7769
+ msgid "Enable Follow Button"
7770
+ msgstr ""
7771
+
7772
+ #: widgets/instagram-feed/instagram-feed.php:228
7773
+ msgid "Follow Button Text"
7774
+ msgstr ""
7775
+
7776
+ #: widgets/instagram-feed/instagram-feed.php:230
7777
+ msgid "Follow On Instagram"
7778
+ msgstr ""
7779
+
7780
+ #: widgets/instagram-feed/instagram-feed.php:231
7781
+ msgid "Follow Text"
7782
+ msgstr ""
7783
+
7784
+ #: widgets/instagram-feed/instagram-feed.php:239
7785
+ msgid "Follow link"
7786
+ msgstr ""
7787
+
7788
+ #: widgets/instagram-feed/instagram-feed.php:242
7789
+ msgid "Follow Link"
7790
+ msgstr ""
7791
+
7792
+ #: widgets/instagram-feed/instagram-feed.php:289
7793
+ msgid "Container margin Bottom"
7794
+ msgstr ""
7795
+
7796
+ #: widgets/instagram-feed/instagram-feed.php:438
7797
+ msgid "Container Spacing"
7798
+ msgstr ""
7799
+
7800
+ #: widgets/instagram-feed/instagram-feed.php:740
7801
+ #: widgets/instagram-feed/instagram-feed.php:880
7802
+ msgid "Favourite"
7803
+ msgstr ""
7804
+
7805
+ #: widgets/instagram-feed/instagram-feed.php:1015
7806
+ msgid "Grayscale"
7807
+ msgstr ""
7808
+
7809
+ #: widgets/mail-chimp/mail-chimp-api.php:35
7810
+ msgid "Please set API Key into Dashboard User Data. "
7811
+ msgstr ""
7812
+
7813
+ #: widgets/mail-chimp/mail-chimp-handler.php:11
7814
+ msgid "Mail Chimp"
7815
+ msgstr ""
7816
+
7817
+ #: widgets/mail-chimp/mail-chimp.php:64
7818
+ msgid "Form "
7819
+ msgstr ""
7820
+
7821
+ #: widgets/mail-chimp/mail-chimp.php:71
7822
+ msgid ""
7823
+ "Please set API Key in ElementsKit_Lite Dashboard - User Data - MailChimp and "
7824
+ "Create Campaign.."
7825
+ msgstr ""
7826
+
7827
+ #: widgets/mail-chimp/mail-chimp.php:83
7828
+ msgid "Select List"
7829
+ msgstr ""
7830
+
7831
+ #: widgets/mail-chimp/mail-chimp.php:87
7832
+ msgid ""
7833
+ "Create a campaign in mailchimp account <a href=\"https://mailchimp.com/help/"
7834
+ "create-a-regular-email-campaign/#Create_a_campaign\" target=\"_blank\"> "
7835
+ "Create Campaign</a>"
7836
+ msgstr ""
7837
+
7838
+ #: widgets/mail-chimp/mail-chimp.php:95
7839
+ msgid "Show Name"
7840
+ msgstr ""
7841
+
7842
+ #: widgets/mail-chimp/mail-chimp.php:104
7843
+ msgid "First Name "
7844
+ msgstr ""
7845
+
7846
+ #: widgets/mail-chimp/mail-chimp.php:116
7847
+ msgid "First name"
7848
+ msgstr ""
7849
+
7850
+ #: widgets/mail-chimp/mail-chimp.php:128
7851
+ msgid "Your frist name"
7852
+ msgstr ""
7853
+
7854
+ #: widgets/mail-chimp/mail-chimp.php:138 widgets/mail-chimp/mail-chimp.php:232
7855
+ #: widgets/mail-chimp/mail-chimp.php:324 widgets/mail-chimp/mail-chimp.php:401
7856
+ msgid "Show Input Group Icon"
7857
+ msgstr ""
7858
+
7859
+ #: widgets/mail-chimp/mail-chimp.php:168 widgets/mail-chimp/mail-chimp.php:262
7860
+ #: widgets/mail-chimp/mail-chimp.php:354 widgets/mail-chimp/mail-chimp.php:427
7861
+ msgid "Before After"
7862
+ msgstr ""
7863
+
7864
+ #: widgets/mail-chimp/mail-chimp.php:197
7865
+ msgid "Last Name : "
7866
+ msgstr ""
7867
+
7868
+ #: widgets/mail-chimp/mail-chimp.php:209
7869
+ msgid "Last name:"
7870
+ msgstr ""
7871
+
7872
+ #: widgets/mail-chimp/mail-chimp.php:221
7873
+ msgid "Your last name"
7874
+ msgstr ""
7875
+
7876
+ #: widgets/mail-chimp/mail-chimp.php:281
7877
+ msgid "Show Phone :"
7878
+ msgstr ""
7879
+
7880
+ #: widgets/mail-chimp/mail-chimp.php:290
7881
+ msgid "Phone : "
7882
+ msgstr ""
7883
+
7884
+ #: widgets/mail-chimp/mail-chimp.php:302 widgets/tablepress/tablepress.php:76
7885
+ #: widgets/team/team.php:426 widgets/team/team.php:2547
7886
+ #: widgets/team/team.php:2639
7887
+ msgid "Phone"
7888
+ msgstr ""
7889
+
7890
+ #: widgets/mail-chimp/mail-chimp.php:314
7891
+ msgid "Your phone No"
7892
+ msgstr ""
7893
+
7894
+ #: widgets/mail-chimp/mail-chimp.php:373
7895
+ msgid "Email Address : "
7896
+ msgstr ""
7897
+
7898
+ #: widgets/mail-chimp/mail-chimp.php:383
7899
+ msgid "Email address"
7900
+ msgstr ""
7901
+
7902
+ #: widgets/mail-chimp/mail-chimp.php:393
7903
+ msgid "Your email address"
7904
+ msgstr ""
7905
+
7906
+ #: widgets/mail-chimp/mail-chimp.php:452
7907
+ msgid "Submit Button Text"
7908
+ msgstr ""
7909
+
7910
+ #: widgets/mail-chimp/mail-chimp.php:454
7911
+ msgid "Sign Up"
7912
+ msgstr ""
7913
+
7914
+ #: widgets/mail-chimp/mail-chimp.php:461
7915
+ msgid "Submit Button : "
7916
+ msgstr ""
7917
+
7918
+ #: widgets/mail-chimp/mail-chimp.php:479
7919
+ msgid "Button Icons"
7920
+ msgstr ""
7921
+
7922
+ #: widgets/mail-chimp/mail-chimp.php:511
7923
+ msgid "Form Style"
7924
+ msgstr ""
7925
+
7926
+ #: widgets/mail-chimp/mail-chimp.php:516
7927
+ #: widgets/ninja-forms/ninja-forms.php:589 widgets/wp-forms/wp-forms.php:416
7928
+ msgid "Full Width"
7929
+ msgstr ""
7930
+
7931
+ #: widgets/mail-chimp/mail-chimp.php:524
7932
+ #: widgets/ninja-forms/ninja-forms.php:807
7933
+ msgid "Success Message"
7934
+ msgstr ""
7935
+
7936
+ #: widgets/mail-chimp/mail-chimp.php:526
7937
+ msgid "Successfully listed this email"
7938
+ msgstr ""
7939
+
7940
+ #: widgets/mail-chimp/mail-chimp.php:661 widgets/mail-chimp/mail-chimp.php:881
7941
+ msgid "Use Width"
7942
+ msgstr ""
7943
+
7944
+ #: widgets/mail-chimp/mail-chimp.php:1097
7945
+ msgid "Input Icon"
7946
+ msgstr ""
7947
+
7948
+ #: widgets/mail-chimp/mail-chimp.php:1198
7949
+ msgid "Sucess & Error message"
7950
+ msgstr ""
7951
+
7952
+ #: widgets/mail-chimp/mail-chimp.php:1249
7953
+ msgid "Success:"
7954
+ msgstr ""
7955
+
7956
+ #: widgets/mail-chimp/mail-chimp.php:1285
7957
+ msgid "Error:"
7958
+ msgstr ""
7959
+
7960
+ #: widgets/motion-text/motion-text-handler.php:11
7961
+ msgid "Motion Text"
7962
+ msgstr ""
7963
+
7964
+ #: widgets/motion-text/motion-text.php:45 widgets/piechart/piechart.php:167
7965
+ #: widgets/timeline/timeline.php:113
7966
+ msgid "Default description"
7967
+ msgstr ""
7968
+
7969
+ #: widgets/motion-text/motion-text.php:114
7970
+ msgid "Enable Animation"
7971
+ msgstr ""
7972
+
7973
+ #: widgets/motion-text/motion-text.php:125
7974
+ msgid "Motion Animation"
7975
+ msgstr ""
7976
+
7977
+ #: widgets/motion-text/motion-text.php:157
7978
+ msgid "Spilit Text Animation"
7979
+ msgstr ""
7980
+
7981
+ #: widgets/motion-text/motion-text.php:161
7982
+ msgid "No Spilit"
7983
+ msgstr ""
7984
+
7985
+ #: widgets/motion-text/motion-text.php:162
7986
+ msgid "Letter Based"
7987
+ msgstr ""
7988
+
7989
+ #: widgets/motion-text/motion-text.php:174
7990
+ msgid "Animation Duration By Charecter (in s)"
7991
+ msgstr ""
7992
+
7993
+ #: widgets/motion-text/motion-text.php:201
7994
+ msgid "Animation Delay By Charecter (in ms)"
7995
+ msgstr ""
7996
+
7997
+ #: widgets/motion-text/motion-text.php:225
7998
+ msgid "Animation Duration (in s)"
7999
+ msgstr ""
8000
+
8001
+ #: widgets/motion-text/motion-text.php:252
8002
+ msgid "Animation Duration Reveal (in s)"
8003
+ msgstr ""
8004
+
8005
+ #: widgets/nav-menu/nav-menu-handler.php:11
8006
+ msgid "Nav menu"
8007
+ msgstr ""
8008
+
8009
+ #: widgets/nav-menu/nav-menu.php:51
8010
+ msgid "Menu settings"
8011
+ msgstr ""
8012
+
8013
+ #: widgets/nav-menu/nav-menu.php:59
8014
+ msgid "Enable one page? "
8015
+ msgstr ""
8016
+
8017
+ #: widgets/nav-menu/nav-menu.php:60
8018
+ msgid "This works in the current page."
8019
+ msgstr ""
8020
+
8021
+ #: widgets/nav-menu/nav-menu.php:71 widgets/vertical-menu/vertical-menu.php:54
8022
+ msgid "Select menu"
8023
+ msgstr ""
8024
+
8025
+ #: widgets/nav-menu/nav-menu.php:80
8026
+ msgid "Choose Mobile Menu Logo"
8027
+ msgstr ""
8028
+
8029
+ #: widgets/nav-menu/nav-menu.php:95
8030
+ msgid "Home"
8031
+ msgstr ""
8032
+
8033
+ #: widgets/nav-menu/nav-menu.php:96
8034
+ msgid "Custom URL"
8035
+ msgstr ""
8036
+
8037
+ #: widgets/nav-menu/nav-menu.php:117
8038
+ msgid "Horizontal main menu"
8039
+ msgstr ""
8040
+
8041
+ #: widgets/nav-menu/nav-menu.php:132
8042
+ msgid "Hamburger Icon"
8043
+ msgstr ""
8044
+
8045
+ #: widgets/nav-menu/nav-menu.php:140 widgets/tablepress/tablepress.php:70
8046
+ msgid "Responsive Breakpoint"
8047
+ msgstr ""
8048
+
8049
+ #: widgets/nav-menu/nav-menu.php:144 widgets/tablepress/tablepress.php:77
8050
+ msgid "Tablet"
8051
+ msgstr ""
8052
+
8053
+ #: widgets/nav-menu/nav-menu.php:145
8054
+ msgid "Mobile"
8055
+ msgstr ""
8056
+
8057
+ #: widgets/nav-menu/nav-menu.php:225 widgets/nav-menu/nav-menu.php:367
8058
+ #: widgets/nav-menu/nav-menu.php:401 widgets/nav-menu/nav-menu.php:563
8059
+ msgid "Item text color"
8060
+ msgstr ""
8061
+
8062
+ #: widgets/nav-menu/nav-menu.php:288
8063
+ msgid "Menu item style"
8064
+ msgstr ""
8065
+
8066
+ #: widgets/nav-menu/nav-menu.php:306
8067
+ msgid "Menu Icon Padding"
8068
+ msgstr ""
8069
+
8070
+ #: widgets/nav-menu/nav-menu.php:358 widgets/nav-menu/nav-menu.php:392
8071
+ #: widgets/nav-menu/nav-menu.php:432 widgets/nav-menu/nav-menu.php:578
8072
+ msgid "Item background"
8073
+ msgstr ""
8074
+
8075
+ #: widgets/nav-menu/nav-menu.php:441 widgets/nav-menu/nav-menu.php:635
8076
+ msgid "Item text color (Active)"
8077
+ msgstr ""
8078
+
8079
+ #: widgets/nav-menu/nav-menu.php:463
8080
+ msgid "Submenu item style"
8081
+ msgstr ""
8082
+
8083
+ #: widgets/nav-menu/nav-menu.php:471
8084
+ msgid "Submenu Indicator"
8085
+ msgstr ""
8086
+
8087
+ #: widgets/nav-menu/nav-menu.php:475
8088
+ msgid "Line Arrow"
8089
+ msgstr ""
8090
+
8091
+ #: widgets/nav-menu/nav-menu.php:476
8092
+ msgid "Plus"
8093
+ msgstr ""
8094
+
8095
+ #: widgets/nav-menu/nav-menu.php:477
8096
+ msgid "Fill Arrow"
8097
+ msgstr ""
8098
+
8099
+ #: widgets/nav-menu/nav-menu.php:486
8100
+ msgid "Indicator color"
8101
+ msgstr ""
8102
+
8103
+ #: widgets/nav-menu/nav-menu.php:501
8104
+ msgid "Indicator Margin"
8105
+ msgstr ""
8106
+
8107
+ #: widgets/nav-menu/nav-menu.php:596
8108
+ msgid "Item text color (hover)"
8109
+ msgstr ""
8110
+
8111
+ #: widgets/nav-menu/nav-menu.php:613
8112
+ msgid "Item background (hover)"
8113
+ msgstr ""
8114
+
8115
+ #: widgets/nav-menu/nav-menu.php:649
8116
+ msgid "Item background (Active)"
8117
+ msgstr ""
8118
+
8119
+ #: widgets/nav-menu/nav-menu.php:662
8120
+ msgid "Sub Menu Items Border"
8121
+ msgstr ""
8122
+
8123
+ #: widgets/nav-menu/nav-menu.php:680
8124
+ msgid "Border Last Child"
8125
+ msgstr ""
8126
+
8127
+ #: widgets/nav-menu/nav-menu.php:690
8128
+ msgid "Border last Child"
8129
+ msgstr ""
8130
+
8131
+ #: widgets/nav-menu/nav-menu.php:698 widgets/nav-menu/nav-menu.php:708
8132
+ msgid "Border First Child"
8133
+ msgstr ""
8134
+
8135
+ #: widgets/nav-menu/nav-menu.php:718
8136
+ msgid "Submenu panel style"
8137
+ msgstr ""
8138
+
8139
+ #: widgets/nav-menu/nav-menu.php:727
8140
+ msgid "Panel Menu Border"
8141
+ msgstr ""
8142
+
8143
+ #: widgets/nav-menu/nav-menu.php:736
8144
+ msgid "Container background"
8145
+ msgstr ""
8146
+
8147
+ #: widgets/nav-menu/nav-menu.php:772
8148
+ msgid "Conatiner width"
8149
+ msgstr ""
8150
+
8151
+ #: widgets/nav-menu/nav-menu.php:798
8152
+ msgid "Humburger Style"
8153
+ msgstr ""
8154
+
8155
+ #: widgets/nav-menu/nav-menu.php:806
8156
+ msgid "Humburger Toggle"
8157
+ msgstr ""
8158
+
8159
+ #: widgets/nav-menu/nav-menu.php:970 widgets/nav-menu/nav-menu.php:1012
8160
+ #: widgets/nav-menu/nav-menu.php:1176 widgets/nav-menu/nav-menu.php:1221
8161
+ msgid "Humber Icon Color"
8162
+ msgstr ""
8163
+
8164
+ #: widgets/nav-menu/nav-menu.php:1034
8165
+ msgid "Close Toggle"
8166
+ msgstr ""
8167
+
8168
+ #: widgets/nav-menu/nav-menu.php:1243
8169
+ msgid "Mobile Menu Logo"
8170
+ msgstr ""
8171
+
8172
+ #: widgets/ninja-forms/ninja-forms-handler.php:11
8173
+ msgid "Ninja Forms"
8174
+ msgstr ""
8175
+
8176
+ #: widgets/ninja-forms/ninja-forms.php:33
8177
+ msgid "Ninja Form"
8178
+ msgstr ""
8179
+
8180
+ #: widgets/ninja-forms/ninja-forms.php:40 widgets/we-forms/we-forms.php:45
8181
+ #: widgets/wp-forms/wp-forms.php:45
8182
+ msgid "Select Your Form"
8183
+ msgstr ""
8184
+
8185
+ #: widgets/ninja-forms/ninja-forms.php:59
8186
+ msgid "Title & Description"
8187
+ msgstr ""
8188
+
8189
+ #: widgets/ninja-forms/ninja-forms.php:145 widgets/wp-forms/wp-forms.php:59
8190
+ msgid "Labels"
8191
+ msgstr ""
8192
+
8193
+ #: widgets/ninja-forms/ninja-forms.php:176
8194
+ msgid "Required Fields Notice"
8195
+ msgstr ""
8196
+
8197
+ #: widgets/ninja-forms/ninja-forms.php:228 widgets/wp-forms/wp-forms.php:91
8198
+ msgid "Input & Textarea"
8199
+ msgstr ""
8200
+
8201
+ #: widgets/ninja-forms/ninja-forms.php:305
8202
+ msgid "Text Indent"
8203
+ msgstr ""
8204
+
8205
+ #: widgets/ninja-forms/ninja-forms.php:363 widgets/we-forms/we-forms.php:66
8206
+ #: widgets/wp-forms/wp-forms.php:189
8207
+ msgid "Input Width"
8208
+ msgstr ""
8209
+
8210
+ #: widgets/ninja-forms/ninja-forms.php:383 widgets/wp-forms/wp-forms.php:216
8211
+ msgid "Textarea Width"
8212
+ msgstr ""
8213
+
8214
+ #: widgets/ninja-forms/ninja-forms.php:402 widgets/wp-forms/wp-forms.php:235
8215
+ msgid "Textarea Height"
8216
+ msgstr ""
8217
+
8218
+ #: widgets/ninja-forms/ninja-forms.php:501 widgets/wp-forms/wp-forms.php:325
8219
+ msgid "Field Description"
8220
+ msgstr ""
8221
+
8222
+ #: widgets/ninja-forms/ninja-forms.php:577 widgets/wp-forms/wp-forms.php:404
8223
+ msgid "Submit Button"
8224
+ msgstr ""
8225
+
8226
+ #: widgets/ninja-forms/ninja-forms.php:838 widgets/wp-forms/wp-forms.php:630
8227
+ msgid "Errors"
8228
+ msgstr ""
8229
+
8230
+ #: widgets/ninja-forms/ninja-forms.php:846
8231
+ msgid "Error Messages"
8232
+ msgstr ""
8233
+
8234
+ #: widgets/ninja-forms/ninja-forms.php:866
8235
+ msgid "Validation Errors"
8236
+ msgstr ""
8237
+
8238
+ #: widgets/ninja-forms/ninja-forms.php:875
8239
+ msgid "Error Description Color"
8240
+ msgstr ""
8241
+
8242
+ #: widgets/ninja-forms/ninja-forms.php:887
8243
+ msgid "Error Field Input Border Color"
8244
+ msgstr ""
8245
+
8246
+ #: widgets/page-list/page-list-handler.php:12
8247
+ msgid "Page List"
8248
+ msgstr ""
8249
+
8250
+ #: widgets/page-list/page-list.php:97
8251
+ msgid "Target"
8252
+ msgstr ""
8253
+
8254
+ #: widgets/page-list/page-list.php:101
8255
+ msgid "Blank"
8256
+ msgstr ""
8257
+
8258
+ #: widgets/page-list/page-list.php:102
8259
+ msgid "Self"
8260
+ msgstr ""
8261
+
8262
+ #: widgets/page-list/page-list.php:110
8263
+ msgid "Rel"
8264
+ msgstr ""
8265
+
8266
+ #: widgets/page-list/page-list.php:219
8267
+ msgid "Selct Page / Custom Link"
8268
+ msgstr ""
8269
+
8270
+ #: widgets/page-list/page-list.php:231
8271
+ msgid "Select Page"
8272
+ msgstr ""
8273
+
8274
+ #: widgets/page-list/page-list.php:263
8275
+ msgid "Show Label"
8276
+ msgstr ""
8277
+
8278
+ #: widgets/page-list/page-list.php:277 widgets/piechart/piechart.php:152
8279
+ msgid "Default title"
8280
+ msgstr ""
8281
+
8282
+ #: widgets/page-list/page-list.php:500
8283
+ msgid "Background Hover"
8284
+ msgstr ""
8285
+
8286
+ #: widgets/page-list/page-list.php:772 widgets/post-list/post-list.php:563
8287
+ #: widgets/video/video.php:741
8288
+ msgid "Padding Left"
8289
+ msgstr ""
8290
+
8291
+ #: widgets/piechart/piechart-handler.php:11
8292
+ msgid "Pie Chart"
8293
+ msgstr ""
8294
+
8295
+ #: widgets/piechart/piechart.php:52
8296
+ msgid "Pie Chart Style"
8297
+ msgstr ""
8298
+
8299
+ #: widgets/piechart/piechart.php:57
8300
+ msgid "With Content"
8301
+ msgstr ""
8302
+
8303
+ #: widgets/piechart/piechart.php:65
8304
+ msgid "Chart Content"
8305
+ msgstr ""
8306
+
8307
+ #: widgets/piechart/piechart.php:69 widgets/piechart/piechart.php:78
8308
+ #: widgets/progressbar/progressbar.php:95
8309
+ msgid "Percentage"
8310
+ msgstr ""
8311
+
8312
+ #: widgets/piechart/piechart.php:90
8313
+ msgid "Icon type"
8314
+ msgstr ""
8315
+
8316
+ #: widgets/piechart/piechart.php:179
8317
+ msgid "Content type"
8318
+ msgstr ""
8319
+
8320
+ #: widgets/piechart/piechart.php:183
8321
+ msgid "Static"
8322
+ msgstr ""
8323
+
8324
+ #: widgets/piechart/piechart.php:184
8325
+ msgid "Flip Card"
8326
+ msgstr ""
8327
+
8328
+ #: widgets/piechart/piechart.php:228 widgets/pricing/pricing.php:510
8329
+ msgid "Title Typography"
8330
+ msgstr ""
8331
+
8332
+ #: widgets/piechart/piechart.php:239
8333
+ msgid "Ttitle margin"
8334
+ msgstr ""
8335
+
8336
+ #: widgets/piechart/piechart.php:343
8337
+ msgid "Flip Card "
8338
+ msgstr ""
8339
+
8340
+ #: widgets/piechart/piechart.php:390
8341
+ msgid "Piechart Size"
8342
+ msgstr ""
8343
+
8344
+ #: widgets/piechart/piechart.php:408
8345
+ msgid "Border Size"
8346
+ msgstr ""
8347
+
8348
+ #: widgets/piechart/piechart.php:428
8349
+ msgid "Color Type"
8350
+ msgstr ""
8351
+
8352
+ #: widgets/piechart/piechart.php:433
8353
+ msgid "Gradient"
8354
+ msgstr ""
8355
+
8356
+ #: widgets/piechart/piechart.php:441
8357
+ msgid "Bar Color"
8358
+ msgstr ""
8359
+
8360
+ #: widgets/piechart/piechart.php:452
8361
+ msgid "Bar Background Color"
8362
+ msgstr ""
8363
+
8364
+ #: widgets/piechart/piechart.php:460
8365
+ msgid "Gradient Color1"
8366
+ msgstr ""
8367
+
8368
+ #: widgets/piechart/piechart.php:471
8369
+ msgid "Gradient Color2"
8370
+ msgstr ""
8371
+
8372
+ #: widgets/piechart/piechart.php:482
8373
+ msgid " Icon Color"
8374
+ msgstr ""
8375
+
8376
+ #: widgets/piechart/piechart.php:498
8377
+ msgid " Number Color"
8378
+ msgstr ""
8379
+
8380
+ #: widgets/piechart/piechart.php:516
8381
+ msgid "Background "
8382
+ msgstr ""
8383
+
8384
+ #: widgets/piechart/piechart.php:524
8385
+ msgid "Wrapper Padding"
8386
+ msgstr ""
8387
+
8388
+ #: widgets/piechart/piechart.php:547
8389
+ msgid "Eg: 0px 28px 40px 0px rgba(0, 0, 0, .1)"
8390
+ msgstr ""
8391
+
8392
+ #: widgets/post-grid/post-grid-handler.php:11
8393
+ msgid "Post Grid"
8394
+ msgstr ""
8395
+
8396
+ #: widgets/post-grid/post-grid.php:39 widgets/post-tab/post-tab.php:41
8397
+ msgid "Widget settings"
8398
+ msgstr ""
8399
+
8400
+ #: widgets/post-grid/post-grid.php:49 widgets/post-tab/post-tab.php:51
8401
+ msgid "To avail this option you need to set/add a featured image to posts.."
8402
+ msgstr ""
8403
+
8404
+ #: widgets/post-grid/post-grid.php:58 widgets/post-tab/post-tab.php:60
8405
+ msgid "Post count"
8406
+ msgstr ""
8407
+
8408
+ #: widgets/post-grid/post-grid.php:67 widgets/post-tab/post-tab.php:70
8409
+ msgid "Select Column"
8410
+ msgstr ""
8411
+
8412
+ #: widgets/post-grid/post-grid.php:73 widgets/post-tab/post-tab.php:76
8413
+ msgid "2 Column"
8414
+ msgstr ""
8415
+
8416
+ #: widgets/post-grid/post-grid.php:74 widgets/post-tab/post-tab.php:77
8417
+ msgid "3 Column"
8418
+ msgstr ""
8419
+
8420
+ #: widgets/post-grid/post-grid.php:75 widgets/post-tab/post-tab.php:78
8421
+ msgid "4 Column"
8422
+ msgstr ""
8423
+
8424
+ #: widgets/post-grid/post-grid.php:85
8425
+ msgid "Grid Styles"
8426
+ msgstr ""
8427
+
8428
+ #: widgets/post-grid/post-grid.php:93 widgets/testimonial/testimonial.php:780
8429
+ msgid "Use Fixed Height"
8430
+ msgstr ""
8431
+
8432
+ #: widgets/post-list/post-list-handler.php:40
8433
+ msgid "Post List"
8434
+ msgstr ""
8435
+
8436
+ #: widgets/post-list/post-list.php:46
8437
+ msgid "Show post by:"
8438
+ msgstr ""
8439
+
8440
+ #: widgets/post-list/post-list.php:51
8441
+ msgid "Popular Post"
8442
+ msgstr ""
8443
+
8444
+ #: widgets/post-list/post-list.php:61
8445
+ #: widgets/woo-product-carousel/woo-product-carousel.php:99
8446
+ #: widgets/woo-product-list/woo-product-list.php:46
8447
+ msgid "Product Limit"
8448
+ msgstr ""
8449
+
8450
+ #: widgets/post-list/post-list.php:86
8451
+ msgid "Select Post"
8452
+ msgstr ""
8453
+
8454
+ #: widgets/post-list/post-list.php:188
8455
+ msgid "Show Meta"
8456
+ msgstr ""
8457
+
8458
+ #: widgets/post-list/post-list.php:200
8459
+ msgid "Show Date Meta"
8460
+ msgstr ""
8461
+
8462
+ #: widgets/post-list/post-list.php:215
8463
+ msgid "Date Meta Icon"
8464
+ msgstr ""
8465
+
8466
+ #: widgets/post-list/post-list.php:232
8467
+ msgid "Show Category Meta"
8468
+ msgstr ""
8469
+
8470
+ #: widgets/post-list/post-list.php:247
8471
+ msgid "Category Meta Icon"
8472
+ msgstr ""
8473
+
8474
+ #: widgets/post-list/post-list.php:961
8475
+ msgid "Opps, No posts were found."
8476
+ msgstr ""
8477
+
8478
+ #: widgets/post-tab/post-tab-handler.php:11
8479
+ msgid "Post Tab"
8480
+ msgstr ""
8481
+
8482
+ #: widgets/post-tab/post-tab.php:86
8483
+ msgid "On Click"
8484
+ msgstr ""
8485
+
8486
+ #: widgets/post-tab/post-tab.php:100
8487
+ msgid "Tab Item Container"
8488
+ msgstr ""
8489
+
8490
+ #: widgets/post-tab/post-tab.php:156
8491
+ msgid "Tab Item"
8492
+ msgstr ""
8493
+
8494
+ #: widgets/pricing/pricing-handler.php:11
8495
+ msgid "Pricing Table"
8496
+ msgstr ""
8497
+
8498
+ #: widgets/pricing/pricing.php:43 widgets/pricing/pricing.php:439
8499
+ msgid "Table Title"
8500
+ msgstr ""
8501
+
8502
+ #: widgets/pricing/pricing.php:44
8503
+ msgid "Starter"
8504
+ msgstr ""
8505
+
8506
+ #: widgets/pricing/pricing.php:71 widgets/pricing/pricing.php:664
8507
+ msgid "Table Subtitle"
8508
+ msgstr ""
8509
+
8510
+ #: widgets/pricing/pricing.php:72
8511
+ msgid "A small river named Duden flows by their place and supplies"
8512
+ msgstr ""
8513
+
8514
+ #: widgets/pricing/pricing.php:79
8515
+ msgid "Header Icon or Image? "
8516
+ msgstr ""
8517
+
8518
+ #: widgets/pricing/pricing.php:161 widgets/pricing/pricing.php:1241
8519
+ #: widgets/pricing/pricing.php:2311
8520
+ msgid "Price Tag"
8521
+ msgstr ""
8522
+
8523
+ #: widgets/pricing/pricing.php:168
8524
+ msgid "Currency"
8525
+ msgstr ""
8526
+
8527
+ #: widgets/pricing/pricing.php:175
8528
+ #: widgets/woo-product-carousel/woo-product-carousel.php:349
8529
+ #: widgets/woo-product-list/woo-product-list.php:302
8530
+ msgid "Price"
8531
+ msgstr ""
8532
+
8533
+ #: widgets/pricing/pricing.php:176
8534
+ msgid "5.99"
8535
+ msgstr ""
8536
+
8537
+ #: widgets/pricing/pricing.php:183
8538
+ msgid "Month"
8539
+ msgstr ""
8540
+
8541
+ #: widgets/pricing/pricing.php:190 widgets/pricing/pricing.php:1671
8542
+ #: widgets/pricing/pricing.php:2323
8543
+ msgid "Features"
8544
+ msgstr ""
8545
+
8546
+ #: widgets/pricing/pricing.php:196
8547
+ msgid "Features style"
8548
+ msgstr ""
8549
+
8550
+ #: widgets/pricing/pricing.php:200
8551
+ msgid "Paragraph"
8552
+ msgstr ""
8553
+
8554
+ #: widgets/pricing/pricing.php:209
8555
+ msgid "Table Content"
8556
+ msgstr ""
8557
+
8558
+ #: widgets/pricing/pricing.php:211
8559
+ msgid ""
8560
+ "Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium "
8561
+ "doloremque laudantium, totam rem aperiam"
8562
+ msgstr ""
8563
+
8564
+ #: widgets/pricing/pricing.php:221
8565
+ msgid "List text"
8566
+ msgstr ""
8567
+
8568
+ #: widgets/pricing/pricing.php:223 widgets/pricing/pricing.php:293
8569
+ msgid "15 Email Account"
8570
+ msgstr ""
8571
+
8572
+ #: widgets/pricing/pricing.php:287
8573
+ msgid "Pricing Content List"
8574
+ msgstr ""
8575
+
8576
+ #: widgets/pricing/pricing.php:297
8577
+ msgid "100 GB Space"
8578
+ msgstr ""
8579
+
8580
+ #: widgets/pricing/pricing.php:301
8581
+ msgid "1 Domain Name"
8582
+ msgstr ""
8583
+
8584
+ #: widgets/pricing/pricing.php:566
8585
+ msgctxt "Border Control"
8586
+ msgid "Border Width"
8587
+ msgstr ""
8588
+
8589
+ #: widgets/pricing/pricing.php:591 widgets/pricing/pricing.php:618
8590
+ #: widgets/pricing/pricing.php:2122 widgets/pricing/pricing.php:2147
8591
+ #: widgets/table/table.php:2263
8592
+ msgctxt "Border Control"
8593
+ msgid "Border Color"
8594
+ msgstr ""
8595
+
8596
+ #: widgets/pricing/pricing.php:895 widgets/table/table.php:914
8597
+ msgid "Header Image"
8598
+ msgstr ""
8599
+
8600
+ #: widgets/pricing/pricing.php:1344
8601
+ msgid "Period Options"
8602
+ msgstr ""
8603
+
8604
+ #: widgets/pricing/pricing.php:1352
8605
+ msgid "Period Color"
8606
+ msgstr ""
8607
+
8608
+ #: widgets/pricing/pricing.php:1363
8609
+ msgid "Period Hover Color"
8610
+ msgstr ""
8611
+
8612
+ #: widgets/pricing/pricing.php:1376 widgets/pricing/pricing.php:1425
8613
+ msgid "Period Typography"
8614
+ msgstr ""
8615
+
8616
+ #: widgets/pricing/pricing.php:1415
8617
+ msgid "Currency Symbol Options"
8618
+ msgstr ""
8619
+
8620
+ #: widgets/pricing/pricing.php:1706
8621
+ msgid "List Typography"
8622
+ msgstr ""
8623
+
8624
+ #: widgets/pricing/pricing.php:1714
8625
+ msgid "List Type"
8626
+ msgstr ""
8627
+
8628
+ #: widgets/pricing/pricing.php:1719
8629
+ msgid "Disc"
8630
+ msgstr ""
8631
+
8632
+ #: widgets/pricing/pricing.php:1720
8633
+ msgid "Number"
8634
+ msgstr ""
8635
+
8636
+ #: widgets/pricing/pricing.php:1721
8637
+ msgid "Alphabet"
8638
+ msgstr ""
8639
+
8640
+ #: widgets/pricing/pricing.php:1722
8641
+ msgid "Roman"
8642
+ msgstr ""
8643
+
8644
+ #: widgets/pricing/pricing.php:1886
8645
+ msgid "List Gap"
8646
+ msgstr ""
8647
+
8648
+ #: widgets/pricing/pricing.php:2233
8649
+ msgid "Pricing Body"
8650
+ msgstr ""
8651
+
8652
+ #: widgets/pricing/pricing.php:2281
8653
+ msgid "Custom Ordering"
8654
+ msgstr ""
8655
+
8656
+ #: widgets/pricing/pricing.php:2288
8657
+ msgid "Enable Ordering"
8658
+ msgstr ""
8659
+
8660
+ #: widgets/progressbar/progressbar-handler.php:11
8661
+ #: widgets/progressbar/progressbar.php:39
8662
+ msgid "Progress Bar"
8663
+ msgstr ""
8664
+
8665
+ #: widgets/progressbar/progressbar.php:51
8666
+ msgid "Inner Content"
8667
+ msgstr ""
8668
+
8669
+ #: widgets/progressbar/progressbar.php:52
8670
+ msgid "Bar Shadow"
8671
+ msgstr ""
8672
+
8673
+ #: widgets/progressbar/progressbar.php:54
8674
+ msgid "Tooltip Box"
8675
+ msgstr ""
8676
+
8677
+ #: widgets/progressbar/progressbar.php:55
8678
+ msgid "Tooltip Rounded"
8679
+ msgstr ""
8680
+
8681
+ #: widgets/progressbar/progressbar.php:56
8682
+ msgid "Tooltip Circle"
8683
+ msgstr ""
8684
+
8685
+ #: widgets/progressbar/progressbar.php:57
8686
+ msgid "Switch"
8687
+ msgstr ""
8688
+
8689
+ #: widgets/progressbar/progressbar.php:58
8690
+ msgid "Ribbon"
8691
+ msgstr ""
8692
+
8693
+ #: widgets/progressbar/progressbar.php:59 widgets/table/table.php:1151
8694
+ #: widgets/tablepress/tablepress.php:526
8695
+ msgid "Stripe"
8696
+ msgstr ""
8697
+
8698
+ #: widgets/progressbar/progressbar.php:67 widgets/team/team.php:360
8699
+ msgid "Add Icon"
8700
+ msgstr ""
8701
+
8702
+ #: widgets/progressbar/progressbar.php:107
8703
+ msgid "Animation Duration"
8704
+ msgstr ""
8705
+
8706
+ #: widgets/progressbar/progressbar.php:131
8707
+ msgid "Bar"
8708
+ msgstr ""
8709
+
8710
+ #: widgets/progressbar/progressbar.php:227
8711
+ msgid "Track"
8712
+ msgstr ""
8713
+
8714
+ #: widgets/progressbar/progressbar.php:236
8715
+ msgid "Track Color"
8716
+ msgstr ""
8717
+
8718
+ #: widgets/progressbar/progressbar.php:248
8719
+ msgid "Stripe Color"
8720
+ msgstr ""
8721
+
8722
+ #: widgets/progressbar/progressbar.php:262
8723
+ msgid "Switch Color"
8724
+ msgstr ""
8725
+
8726
+ #: widgets/progressbar/progressbar.php:334
8727
+ msgid "Percent"
8728
+ msgstr ""
8729
+
8730
+ #: widgets/social-share/social-share-handler.php:11
8731
+ msgid "Social Share"
8732
+ msgstr ""
8733
+
8734
+ #: widgets/social-share/social-share.php:42
8735
+ #: widgets/social-share/social-share.php:178
8736
+ #: widgets/social-share/social-share.php:408
8737
+ #: widgets/social/social-handler.php:11 widgets/social/social.php:36
8738
+ #: widgets/social/social.php:370
8739
+ msgid "Social Media"
8740
+ msgstr ""
8741
+
8742
+ #: widgets/social-share/social-share.php:79 widgets/social/social.php:73
8743
+ msgid "Spacing Right"
8744
+ msgstr ""
8745
+
8746
+ #: widgets/social-share/social-share.php:106 widgets/social/social.php:100
8747
+ msgid "Spacing Left"
8748
+ msgstr ""
8749
+
8750
+ #: widgets/social-share/social-share.php:182
8751
+ msgid "Facebook"
8752
+ msgstr ""
8753
+
8754
+ #: widgets/social-share/social-share.php:183
8755
+ msgid "Twitter"
8756
+ msgstr ""
8757
+
8758
+ #: widgets/social-share/social-share.php:184
8759
+ msgid "Instagram"
8760
+ msgstr ""
8761
+
8762
+ #: widgets/social-share/social-share.php:185
8763
+ msgid "Pinterest"
8764
+ msgstr ""
8765
+
8766
+ #: widgets/social-share/social-share.php:186
8767
+ msgid "Linkedin"
8768
+ msgstr ""
8769
+
8770
+ #: widgets/social-share/social-share.php:187
8771
+ msgid "Tumblr"
8772
+ msgstr ""
8773
+
8774
+ #: widgets/social-share/social-share.php:188
8775
+ msgid "Snapchat"
8776
+ msgstr ""
8777
+
8778
+ #: widgets/social-share/social-share.php:189
8779
+ msgid "Flicker"
8780
+ msgstr ""
8781
+
8782
+ #: widgets/social-share/social-share.php:190
8783
+ msgid "Vkontakte"
8784
+ msgstr ""
8785
+
8786
+ #: widgets/social-share/social-share.php:191
8787
+ msgid "Odnoklassniki"
8788
+ msgstr ""
8789
+
8790
+ #: widgets/social-share/social-share.php:192
8791
+ msgid "Moimir"
8792
+ msgstr ""
8793
+
8794
+ #: widgets/social-share/social-share.php:193
8795
+ msgid "Live journal"
8796
+ msgstr ""
8797
+
8798
+ #: widgets/social-share/social-share.php:194
8799
+ msgid "Blogger"
8800
+ msgstr ""
8801
+
8802
+ #: widgets/social-share/social-share.php:195
8803
+ msgid "Digg"
8804
+ msgstr ""
8805
+
8806
+ #: widgets/social-share/social-share.php:196
8807
+ msgid "Evernote"
8808
+ msgstr ""
8809
+
8810
+ #: widgets/social-share/social-share.php:197
8811
+ msgid "Reddit"
8812
+ msgstr ""
8813
+
8814
+ #: widgets/social-share/social-share.php:198
8815
+ msgid "Delicious"
8816
+ msgstr ""
8817
+
8818
+ #: widgets/social-share/social-share.php:199
8819
+ msgid "Stumbleupon"
8820
+ msgstr ""
8821
+
8822
+ #: widgets/social-share/social-share.php:200
8823
+ msgid "Pocket"
8824
+ msgstr ""
8825
+
8826
+ #: widgets/social-share/social-share.php:201
8827
+ msgid "Surfingbird"
8828
+ msgstr ""
8829
+
8830
+ #: widgets/social-share/social-share.php:202
8831
+ msgid "Liveinternet"
8832
+ msgstr ""
8833
+
8834
+ #: widgets/social-share/social-share.php:203
8835
+ msgid "Buffer"
8836
+ msgstr ""
8837
+
8838
+ #: widgets/social-share/social-share.php:204
8839
+ msgid "Instapaper"
8840
+ msgstr ""
8841
+
8842
+ #: widgets/social-share/social-share.php:205
8843
+ msgid "Xing"
8844
+ msgstr ""
8845
+
8846
+ #: widgets/social-share/social-share.php:206
8847
+ msgid "WordPress"
8848
+ msgstr ""
8849
+
8850
+ #: widgets/social-share/social-share.php:207
8851
+ msgid "Baidu"
8852
+ msgstr ""
8853
+
8854
+ #: widgets/social-share/social-share.php:208
8855
+ msgid "Renren"
8856
+ msgstr ""
8857
+
8858
+ #: widgets/social-share/social-share.php:209
8859
+ msgid "Weibo"
8860
+ msgstr ""
8861
+
8862
+ #: widgets/social-share/social-share.php:210
8863
+ msgid "Skype"
8864
+ msgstr ""
8865
+
8866
+ #: widgets/social-share/social-share.php:211
8867
+ msgid "Telegram"
8868
+ msgstr ""
8869
+
8870
+ #: widgets/social-share/social-share.php:212
8871
+ msgid "Viber"
8872
+ msgstr ""
8873
+
8874
+ #: widgets/social-share/social-share.php:213
8875
+ msgid "Whatsapp"
8876
+ msgstr ""
8877
+
8878
+ #: widgets/social-share/social-share.php:365 widgets/social/social.php:327
8879
+ msgid "Add Social Media"
8880
+ msgstr ""
8881
+
8882
+ #: widgets/social-share/social-share.php:444 widgets/social/social.php:406
8883
+ #: widgets/team/team.php:1496
8884
+ msgid "Display"
8885
+ msgstr ""
8886
+
8887
+ #: widgets/social-share/social-share.php:448 widgets/social/social.php:410
8888
+ #: widgets/team/team.php:1500
8889
+ msgid "Inline Block"
8890
+ msgstr ""
8891
+
8892
+ #: widgets/social-share/social-share.php:461 widgets/social/social.php:423
8893
+ #: widgets/team/team.php:1513
8894
+ msgid "Decoration"
8895
+ msgstr ""
8896
+
8897
+ #: widgets/social-share/social-share.php:466 widgets/social/social.php:428
8898
+ #: widgets/team/team.php:1518
8899
+ msgid "Underline"
8900
+ msgstr ""
8901
+
8902
+ #: widgets/social-share/social-share.php:467 widgets/social/social.php:429
8903
+ #: widgets/team/team.php:1519
8904
+ msgid "Overline"
8905
+ msgstr ""
8906
+
8907
+ #: widgets/social-share/social-share.php:468 widgets/social/social.php:430
8908
+ #: widgets/team/team.php:1520
8909
+ msgid "Line Through"
8910
+ msgstr ""
8911
+
8912
+ #: widgets/tab/tab-handler.php:11 widgets/tab/tab.php:33
8913
+ msgid "Tab"
8914
+ msgstr ""
8915
+
8916
+ #: widgets/table/table-handler.php:11 widgets/table/table.php:41
8917
+ #: widgets/tablepress/tablepress.php:34 widgets/tablepress/tablepress.php:189
8918
+ msgid "Table"
8919
+ msgstr ""
8920
+
8921
+ #: widgets/table/table.php:48
8922
+ msgid "Data Type"
8923
+ msgstr ""
8924
+
8925
+ #: widgets/table/table.php:52
8926
+ msgid " File"
8927
+ msgstr ""
8928
+
8929
+ #: widgets/table/table.php:63 widgets/table/table.php:64
8930
+ msgid "Table Header"
8931
+ msgstr ""
8932
+
8933
+ #: widgets/table/table.php:201
8934
+ msgid "Header col 1 "
8935
+ msgstr ""
8936
+
8937
+ #: widgets/table/table.php:204
8938
+ msgid "Header col 2"
8939
+ msgstr ""
8940
+
8941
+ #: widgets/table/table.php:207
8942
+ msgid "Header col 3"
8943
+ msgstr ""
8944
+
8945
+ #: widgets/table/table.php:220
8946
+ msgid "File Type"
8947
+ msgstr ""
8948
+
8949
+ #: widgets/table/table.php:223
8950
+ msgid "Upload File"
8951
+ msgstr ""
8952
+
8953
+ #: widgets/table/table.php:224
8954
+ msgid "Remote File URL"
8955
+ msgstr ""
8956
+
8957
+ #: widgets/table/table.php:235
8958
+ msgid "Upload CSV File"
8959
+ msgstr ""
8960
+
8961
+ #: widgets/table/table.php:246
8962
+ msgid "Enter a CSV File URL"
8963
+ msgstr ""
8964
+
8965
+ #: widgets/table/table.php:262 widgets/tablepress/tablepress.php:135
8966
+ msgid "Header Alignment"
8967
+ msgstr ""
8968
+
8969
+ #: widgets/table/table.php:291
8970
+ msgid "Body Content"
8971
+ msgstr ""
8972
+
8973
+ #: widgets/table/table.php:302
8974
+ msgid "New Row"
8975
+ msgstr ""
8976
+
8977
+ #: widgets/table/table.php:306
8978
+ msgid "Row"
8979
+ msgstr ""
8980
+
8981
+ #: widgets/table/table.php:324
8982
+ msgid "Add a url? "
8983
+ msgstr ""
8984
+
8985
+ #: widgets/table/table.php:428 widgets/testimonial/testimonial.php:222
8986
+ msgid "top"
8987
+ msgstr ""
8988
+
8989
+ #: widgets/table/table.php:478 widgets/table/table.php:491
8990
+ msgid "Column 1"
8991
+ msgstr ""
8992
+
8993
+ #: widgets/table/table.php:483 widgets/table/table.php:496
8994
+ msgid "Column 2"
8995
+ msgstr ""
8996
+
8997
+ #: widgets/table/table.php:487 widgets/table/table.php:500
8998
+ msgid "Column 3"
8999
+ msgstr ""
9000
+
9001
+ #: widgets/table/table.php:511 widgets/tablepress/tablepress.php:161
9002
+ msgid "Body Alignment"
9003
+ msgstr ""
9004
+
9005
+ #: widgets/table/table.php:539
9006
+ msgid "Table Settings"
9007
+ msgstr ""
9008
+
9009
+ #: widgets/table/table.php:547
9010
+ msgid "Display Serial Number"
9011
+ msgstr ""
9012
+
9013
+ #: widgets/table/table.php:558
9014
+ msgid "Serial Header Text"
9015
+ msgstr ""
9016
+
9017
+ #: widgets/table/table.php:570 widgets/table/table.php:1552
9018
+ msgid "Search"
9019
+ msgstr ""
9020
+
9021
+ #: widgets/table/table.php:578
9022
+ msgid "Fixed Header"
9023
+ msgstr ""
9024
+
9025
+ #: widgets/table/table.php:595 widgets/tablepress/tablepress.php:54
9026
+ msgid "Responsive"
9027
+ msgstr ""
9028
+
9029
+ #: widgets/table/table.php:604 widgets/woo-product-list/woo-product-list.php:55
9030
+ #: widgets/woo-product-list/woo-product-list.php:2068
9031
+ msgid "Pagination"
9032
+ msgstr ""
9033
+
9034
+ #: widgets/table/table.php:612
9035
+ msgid "Nav Style"
9036
+ msgstr ""
9037
+
9038
+ #: widgets/table/table.php:617
9039
+ msgid "Arrow"
9040
+ msgstr ""
9041
+
9042
+ #: widgets/table/table.php:628
9043
+ msgid "Prev Arrow Icon"
9044
+ msgstr ""
9045
+
9046
+ #: widgets/table/table.php:644
9047
+ msgid "Next Arrow Icon"
9048
+ msgstr ""
9049
+
9050
+ #: widgets/table/table.php:661
9051
+ msgid "Prev Text"
9052
+ msgstr ""
9053
+
9054
+ #: widgets/table/table.php:675
9055
+ msgid "Next Text"
9056
+ msgstr ""
9057
+
9058
+ #: widgets/table/table.php:690 widgets/table/table.php:1858
9059
+ #: widgets/woo-product-list/woo-product-list.php:2152
9060
+ msgid "Info"
9061
+ msgstr ""
9062
+
9063
+ #: widgets/table/table.php:699 widgets/table/table.php:1928
9064
+ msgid "Entries"
9065
+ msgstr ""
9066
+
9067
+ #: widgets/table/table.php:722
9068
+ msgid "Show item per page"
9069
+ msgstr ""
9070
+
9071
+ #: widgets/table/table.php:1031 widgets/tablepress/tablepress.php:457
9072
+ msgid "Cell Padding"
9073
+ msgstr ""
9074
+
9075
+ #: widgets/table/table.php:1187
9076
+ msgid "Body Image"
9077
+ msgstr ""
9078
+
9079
+ #: widgets/table/table.php:1304
9080
+ msgid "General Settings"
9081
+ msgstr ""
9082
+
9083
+ #: widgets/table/table.php:1419
9084
+ msgid "Border Settings"
9085
+ msgstr ""
9086
+
9087
+ #: widgets/table/table.php:1528
9088
+ msgid "Shadow Settings"
9089
+ msgstr ""
9090
+
9091
+ #: widgets/table/table.php:1563
9092
+ msgid "Icon:"
9093
+ msgstr ""
9094
+
9095
+ #: widgets/table/table.php:1629
9096
+ msgid "Input:"
9097
+ msgstr ""
9098
+
9099
+ #: widgets/table/table.php:1825
9100
+ msgid "Input Placeholder:"
9101
+ msgstr ""
9102
+
9103
+ #: widgets/table/table.php:1990
9104
+ #: widgets/woo-category-list/woo-category-list.php:805
9105
+ msgid "Label:"
9106
+ msgstr ""
9107
+
9108
+ #: widgets/table/table.php:2019
9109
+ msgid "Select:"
9110
+ msgstr ""
9111
+
9112
+ #: widgets/table/table.php:2061
9113
+ #: widgets/woo-product-carousel/woo-product-carousel.php:426
9114
+ #: widgets/woo-product-carousel/woo-product-carousel.php:433
9115
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1909
9116
+ msgid "Navigation"
9117
+ msgstr ""
9118
+
9119
+ #: widgets/table/table.php:2069
9120
+ msgid "General:"
9121
+ msgstr ""
9122
+
9123
+ #: widgets/table/table.php:2154
9124
+ msgid "Next and Previous Button Settings:"
9125
+ msgstr ""
9126
+
9127
+ #: widgets/table/table.php:2171
9128
+ msgid "Prev BTN Padding"
9129
+ msgstr ""
9130
+
9131
+ #: widgets/table/table.php:2190
9132
+ msgid "Next BTN Padding"
9133
+ msgstr ""
9134
+
9135
+ #: widgets/table/table.php:2300
9136
+ msgid "Button Text Color"
9137
+ msgstr ""
9138
+
9139
+ #: widgets/table/table.php:2314
9140
+ msgid "Button Text Typography"
9141
+ msgstr ""
9142
+
9143
+ #: widgets/table/table.php:2380
9144
+ msgid "Number:"
9145
+ msgstr ""
9146
+
9147
+ #: widgets/table/table.php:2389
9148
+ msgid "Use Width and Height"
9149
+ msgstr ""
9150
+
9151
+ #: widgets/table/table.php:2667
9152
+ msgid "Please provide an csv file"
9153
+ msgstr ""
9154
+
9155
+ #: widgets/tablepress/tablepress-handler.php:11
9156
+ msgid "TablePress"
9157
+ msgstr ""
9158
+
9159
+ #: widgets/tablepress/tablepress.php:60
9160
+ msgid "Flip"
9161
+ msgstr ""
9162
+
9163
+ #: widgets/tablepress/tablepress.php:61
9164
+ msgid "Scroll"
9165
+ msgstr ""
9166
+
9167
+ #: widgets/tablepress/tablepress.php:62
9168
+ msgid "Collapse"
9169
+ msgstr ""
9170
+
9171
+ #: widgets/tablepress/tablepress.php:63
9172
+ msgid "Stack"
9173
+ msgstr ""
9174
+
9175
+ #: widgets/tablepress/tablepress.php:91
9176
+ msgid "Nav Hide"
9177
+ msgstr ""
9178
+
9179
+ #: widgets/tablepress/tablepress.php:102
9180
+ msgid "Search Hide"
9181
+ msgstr ""
9182
+
9183
+ #: widgets/tablepress/tablepress.php:113
9184
+ msgid "Footer Info Hide"
9185
+ msgstr ""
9186
+
9187
+ #: widgets/tablepress/tablepress.php:124
9188
+ msgid "Pagination Hide"
9189
+ msgstr ""
9190
+
9191
+ #: widgets/tablepress/tablepress.php:217 widgets/tablepress/tablepress.php:344
9192
+ #: widgets/tablepress/tablepress.php:427
9193
+ msgid "Groove"
9194
+ msgstr ""
9195
+
9196
+ #: widgets/tablepress/tablepress.php:265
9197
+ msgid "Pagination And Serach Gap"
9198
+ msgstr ""
9199
+
9200
+ #: widgets/tablepress/tablepress.php:277
9201
+ msgid "Footer Text And Navigation gap"
9202
+ msgstr ""
9203
+
9204
+ #: widgets/tablepress/tablepress.php:311
9205
+ msgid "Hover And Active Background"
9206
+ msgstr ""
9207
+
9208
+ #: widgets/tablepress/tablepress.php:588
9209
+ msgid "Filter And Search"
9210
+ msgstr ""
9211
+
9212
+ #: widgets/tablepress/tablepress.php:681
9213
+ msgid "Please Select A Table From Setting!"
9214
+ msgstr ""
9215
+
9216
+ #: widgets/team/team-handler.php:11
9217
+ msgid "Team"
9218
+ msgstr ""
9219
+
9220
+ #: widgets/team/team.php:42
9221
+ msgid "Team Member Content"
9222
+ msgstr ""
9223
+
9224
+ #: widgets/team/team.php:55
9225
+ msgid "Centered "
9226
+ msgstr ""
9227
+
9228
+ #: widgets/team/team.php:56
9229
+ msgid "Hover on social"
9230
+ msgstr ""
9231
+
9232
+ #: widgets/team/team.php:57
9233
+ msgid "Overlay with details"
9234
+ msgstr ""
9235
+
9236
+ #: widgets/team/team.php:58
9237
+ msgid "Centered with details "
9238
+ msgstr ""
9239
+
9240
+ #: widgets/team/team.php:59
9241
+ msgid "Long height with hover "
9242
+ msgstr ""
9243
+
9244
+ #: widgets/team/team.php:60
9245
+ msgid "Long height with details "
9246
+ msgstr ""
9247
+
9248
+ #: widgets/team/team.php:61
9249
+ msgid "Long height with details & hover"
9250
+ msgstr ""
9251
+
9252
+ #: widgets/team/team.php:62
9253
+ msgid "Overlay with circle shape"
9254
+ msgstr ""
9255
+
9256
+ #: widgets/team/team.php:63
9257
+ msgid "Overlay with circle shape & hover"
9258
+ msgstr ""
9259
+
9260
+ #: widgets/team/team.php:71
9261
+ msgid "Choose Member Image"
9262
+ msgstr ""
9263
+
9264
+ #: widgets/team/team.php:90 widgets/team/team.php:93
9265
+ msgid "Member Name"
9266
+ msgstr ""
9267
+
9268
+ #: widgets/team/team.php:92
9269
+ msgid "Jane Doe"
9270
+ msgstr ""
9271
+
9272
+ #: widgets/team/team.php:100 widgets/team/team.php:103
9273
+ msgid "Member Position"
9274
+ msgstr ""
9275
+
9276
+ #: widgets/team/team.php:102
9277
+ msgid "Designer"
9278
+ msgstr ""
9279
+
9280
+ #: widgets/team/team.php:155 widgets/team/team.php:158
9281
+ #: widgets/team/team.php:413 widgets/team/team.php:416
9282
+ msgid "About Member"
9283
+ msgstr ""
9284
+
9285
+ #: widgets/team/team.php:157 widgets/team/team.php:415
9286
+ msgid ""
9287
+ "A small river named Duden flows by their place and supplies it with the "
9288
+ "necessary"
9289
+ msgstr ""
9290
+
9291
+ #: widgets/team/team.php:173 widgets/team/team.php:1456
9292
+ msgid "Social Profiles"
9293
+ msgstr ""
9294
+
9295
+ #: widgets/team/team.php:180
9296
+ msgid "Display Social Profiles?"
9297
+ msgstr ""
9298
+
9299
+ #: widgets/team/team.php:381
9300
+ msgid "Pop Up And Sidebar Details"
9301
+ msgstr ""
9302
+
9303
+ #: widgets/team/team.php:389
9304
+ msgid "Show Popup"
9305
+ msgstr ""
9306
+
9307
+ #: widgets/team/team.php:398
9308
+ msgid "Popup Style"
9309
+ msgstr ""
9310
+
9311
+ #: widgets/team/team.php:402
9312
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2458
9313
+ #: widgets/woo-product-list/woo-product-list.php:2246
9314
+ msgid "Popup"
9315
+ msgstr ""
9316
+
9317
+ #: widgets/team/team.php:429
9318
+ msgid "Phone Number"
9319
+ msgstr ""
9320
+
9321
+ #: widgets/team/team.php:439 widgets/team/team.php:2551
9322
+ #: widgets/team/team.php:2643
9323
+ msgid "Email"
9324
+ msgstr ""
9325
+
9326
+ #: widgets/team/team.php:442
9327
+ msgid "Email Address"
9328
+ msgstr ""
9329
+
9330
+ #: widgets/team/team.php:453
9331
+ msgid "Sidebar Direction"
9332
+ msgstr ""
9333
+
9334
+ #: widgets/team/team.php:496
9335
+ msgid "Close Icon Alignment"
9336
+ msgstr ""
9337
+
9338
+ #: widgets/team/team.php:596
9339
+ msgid "Max Height"
9340
+ msgstr ""
9341
+
9342
+ #: widgets/team/team.php:704
9343
+ msgid "Hover Overy Color"
9344
+ msgstr ""
9345
+
9346
+ #: widgets/team/team.php:729
9347
+ msgid "Remove Gutter?"
9348
+ msgstr ""
9349
+
9350
+ #: widgets/team/team.php:754 widgets/testimonial/testimonial.php:1686
9351
+ #: widgets/woo-product-carousel/woo-product-carousel.php:296
9352
+ #: widgets/woo-product-list/woo-product-list.php:250
9353
+ msgid "Image Size"
9354
+ msgstr ""
9355
+
9356
+ #: widgets/team/team.php:1033
9357
+ msgid ""
9358
+ "For svg icon, We don't need this. We will use font size and padding for "
9359
+ "adjusting size."
9360
+ msgstr ""
9361
+
9362
+ #: widgets/team/team.php:1377
9363
+ msgid "Text Content"
9364
+ msgstr ""
9365
+
9366
+ #: widgets/team/team.php:1742
9367
+ msgid "Modal Controls"
9368
+ msgstr ""
9369
+
9370
+ #: widgets/team/team.php:1754
9371
+ msgid "Modal"
9372
+ msgstr ""
9373
+
9374
+ #: widgets/team/team.php:1913
9375
+ msgid "Phone and Email"
9376
+ msgstr ""
9377
+
9378
+ #: widgets/team/team.php:2129 widgets/video/video.php:383
9379
+ msgid "Use height width"
9380
+ msgstr ""
9381
+
9382
+ #: widgets/testimonial/style/style1.php:35
9383
+ #: widgets/testimonial/testimonial.php:1545
9384
+ msgid "Client Image"
9385
+ msgstr ""
9386
+
9387
+ #: widgets/testimonial/style/style2.php:13
9388
+ msgid "Client Hover Logo"
9389
+ msgstr ""
9390
+
9391
+ #: widgets/testimonial/style/style4.php:10
9392
+ msgid "Client Photo"
9393
+ msgstr ""
9394
+
9395
+ #: widgets/testimonial/testimonial-handler.php:11
9396
+ #: widgets/testimonial/testimonial.php:98
9397
+ #: widgets/testimonial/testimonial.php:373
9398
+ msgid "Testimonial"
9399
+ msgstr ""
9400
+
9401
+ #: widgets/testimonial/testimonial.php:61
9402
+ msgid "Grid Style without image"
9403
+ msgstr ""
9404
+
9405
+ #: widgets/testimonial/testimonial.php:67
9406
+ msgid "Image with Ratting"
9407
+ msgstr ""
9408
+
9409
+ #: widgets/testimonial/testimonial.php:106
9410
+ msgid "Enable Quote Icon"
9411
+ msgstr ""
9412
+
9413
+ #: widgets/testimonial/testimonial.php:121
9414
+ msgid "Quote Icon"
9415
+ msgstr ""
9416
+
9417
+ #: widgets/testimonial/testimonial.php:140
9418
+ msgid "Quote Icon Position"
9419
+ msgstr ""
9420
+
9421
+ #: widgets/testimonial/testimonial.php:158
9422
+ msgid "Show Quote Icon Badge"
9423
+ msgstr ""
9424
+
9425
+ #: widgets/testimonial/testimonial.php:175
9426
+ msgid "Custom Position"
9427
+ msgstr ""
9428
+
9429
+ #: widgets/testimonial/testimonial.php:254
9430
+ msgid "Enable Rating"
9431
+ msgstr ""
9432
+
9433
+ #: widgets/testimonial/testimonial.php:288
9434
+ #: widgets/testimonial/testimonial.php:376
9435
+ msgid "Testimonial #1"
9436
+ msgstr ""
9437
+
9438
+ #: widgets/testimonial/testimonial.php:294
9439
+ #: widgets/testimonial/testimonial.php:297
9440
+ msgid "Designation"
9441
+ msgstr ""
9442
+
9443
+ #: widgets/testimonial/testimonial.php:302
9444
+ msgid "Testimonial Review"
9445
+ msgstr ""
9446
+
9447
+ #: widgets/testimonial/testimonial.php:305
9448
+ msgid "Review Text"
9449
+ msgstr ""
9450
+
9451
+ #: widgets/testimonial/testimonial.php:310
9452
+ msgid "Testimonial Rating"
9453
+ msgstr ""
9454
+
9455
+ #: widgets/testimonial/testimonial.php:314
9456
+ msgid "5"
9457
+ msgstr ""
9458
+
9459
+ #: widgets/testimonial/testimonial.php:325
9460
+ msgid "Client Avatar"
9461
+ msgstr ""
9462
+
9463
+ #: widgets/testimonial/testimonial.php:343
9464
+ msgid "Display different logo on hover?"
9465
+ msgstr ""
9466
+
9467
+ #: widgets/testimonial/testimonial.php:353
9468
+ msgid "Logo Active"
9469
+ msgstr ""
9470
+
9471
+ #: widgets/testimonial/testimonial.php:377
9472
+ msgid "Testimonial #2"
9473
+ msgstr ""
9474
+
9475
+ #: widgets/testimonial/testimonial.php:378
9476
+ msgid "Testimonial #3"
9477
+ msgstr ""
9478
+
9479
+ #: widgets/testimonial/testimonial.php:586
9480
+ #: widgets/woo-product-carousel/woo-product-carousel.php:277
9481
+ #: widgets/woo-product-list/woo-product-list.php:207
9482
+ msgid "Column Gap"
9483
+ msgstr ""
9484
+
9485
+ #: widgets/testimonial/testimonial.php:705
9486
+ msgid "Wraper content style"
9487
+ msgstr ""
9488
+
9489
+ #: widgets/testimonial/testimonial.php:740
9490
+ #: widgets/woo-category-list/woo-category-list.php:566
9491
+ #: widgets/woo-category-list/woo-category-list.php:864
9492
+ #: widgets/woo-product-carousel/woo-product-carousel.php:633
9493
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1095
9494
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1542
9495
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2497
9496
+ #: widgets/woo-product-list/woo-product-list.php:792
9497
+ #: widgets/woo-product-list/woo-product-list.php:1258
9498
+ #: widgets/woo-product-list/woo-product-list.php:1876
9499
+ #: widgets/woo-product-list/woo-product-list.php:2285
9500
+ msgid "Horizontal Alignment"
9501
+ msgstr ""
9502
+
9503
+ #: widgets/testimonial/testimonial.php:891
9504
+ #: widgets/woo-product-carousel/woo-product-carousel.php:340
9505
+ #: widgets/woo-product-list/woo-product-list.php:285
9506
+ msgid "Rating"
9507
+ msgstr ""
9508
+
9509
+ #: widgets/testimonial/testimonial.php:927
9510
+ msgid "Items Margin Right"
9511
+ msgstr ""
9512
+
9513
+ #: widgets/testimonial/testimonial.php:950
9514
+ msgid "Review Margin"
9515
+ msgstr ""
9516
+
9517
+ #: widgets/testimonial/testimonial.php:963
9518
+ msgid "Quote icon"
9519
+ msgstr ""
9520
+
9521
+ #: widgets/testimonial/testimonial.php:1190
9522
+ msgid "Title Separetor"
9523
+ msgstr ""
9524
+
9525
+ #: widgets/testimonial/testimonial.php:1315
9526
+ msgid "Client"
9527
+ msgstr ""
9528
+
9529
+ #: widgets/testimonial/testimonial.php:1421
9530
+ msgid "Client Designation"
9531
+ msgstr ""
9532
+
9533
+ #: widgets/testimonial/testimonial.php:1737
9534
+ msgid "Dot"
9535
+ msgstr ""
9536
+
9537
+ #: widgets/testimonial/testimonial.php:1748
9538
+ msgid "Dot Top Spacing"
9539
+ msgstr ""
9540
+
9541
+ #: widgets/testimonial/testimonial.php:1829
9542
+ msgid "Margin right"
9543
+ msgstr ""
9544
+
9545
+ #: widgets/testimonial/testimonial.php:1953
9546
+ msgid "Nav"
9547
+ msgstr ""
9548
+
9549
+ #: widgets/testimonial/testimonial.php:1988
9550
+ msgid "Prev"
9551
+ msgstr ""
9552
+
9553
+ #: widgets/testimonial/testimonial.php:2010
9554
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1946
9555
+ msgid "Next"
9556
+ msgstr ""
9557
+
9558
+ #: widgets/testimonial/testimonial.php:2092
9559
+ msgid "vertical_align"
9560
+ msgstr ""
9561
+
9562
+ #: widgets/timeline/timeline.php:44
9563
+ msgid "Time line Style"
9564
+ msgstr ""
9565
+
9566
+ #: widgets/timeline/timeline.php:57
9567
+ msgid "Content Style"
9568
+ msgstr ""
9569
+
9570
+ #: widgets/timeline/timeline.php:61
9571
+ msgid "Same Side"
9572
+ msgstr ""
9573
+
9574
+ #: widgets/timeline/timeline.php:95
9575
+ msgid "Title Link"
9576
+ msgstr ""
9577
+
9578
+ #: widgets/timeline/timeline.php:97
9579
+ msgid "https://example.com"
9580
+ msgstr ""
9581
+
9582
+ #: widgets/timeline/timeline.php:134
9583
+ msgid "01 February 2015"
9584
+ msgstr ""
9585
+
9586
+ #: widgets/timeline/timeline.php:142 widgets/timeline/timeline.php:736
9587
+ #: widgets/timeline/timeline.php:903
9588
+ msgid "Address"
9589
+ msgstr ""
9590
+
9591
+ #: widgets/timeline/timeline.php:144
9592
+ msgid "New Office, CA"
9593
+ msgstr ""
9594
+
9595
+ #: widgets/timeline/timeline.php:155
9596
+ msgid "Repeater Item Style"
9597
+ msgstr ""
9598
+
9599
+ #: widgets/timeline/timeline.php:172 widgets/timeline/timeline.php:236
9600
+ msgid "Sub Title Color "
9601
+ msgstr ""
9602
+
9603
+ #: widgets/timeline/timeline.php:182 widgets/timeline/timeline.php:248
9604
+ msgid "Content box Background"
9605
+ msgstr ""
9606
+
9607
+ #: widgets/timeline/timeline.php:194 widgets/timeline/timeline.php:262
9608
+ msgid "Icon section"
9609
+ msgstr ""
9610
+
9611
+ #: widgets/timeline/timeline.php:203
9612
+ msgid "Icon text Color"
9613
+ msgstr ""
9614
+
9615
+ #: widgets/timeline/timeline.php:214 widgets/timeline/timeline.php:282
9616
+ msgid "Icon Background"
9617
+ msgstr ""
9618
+
9619
+ #: widgets/timeline/timeline.php:299
9620
+ msgid "Time Line Content"
9621
+ msgstr ""
9622
+
9623
+ #: widgets/timeline/timeline.php:347
9624
+ msgid " Address Icon"
9625
+ msgstr ""
9626
+
9627
+ #: widgets/timeline/timeline.php:359
9628
+ msgid "Content box Entrance Animation"
9629
+ msgstr ""
9630
+
9631
+ #: widgets/timeline/timeline.php:368
9632
+ msgid "Address, date Entrance Animation"
9633
+ msgstr ""
9634
+
9635
+ #: widgets/timeline/timeline.php:376
9636
+ msgid "Pinpoint Style"
9637
+ msgstr ""
9638
+
9639
+ #: widgets/timeline/timeline.php:380
9640
+ msgid "default"
9641
+ msgstr ""
9642
+
9643
+ #: widgets/timeline/timeline.php:392
9644
+ msgid "Pinpoint Icon"
9645
+ msgstr ""
9646
+
9647
+ #: widgets/timeline/timeline.php:458
9648
+ msgid "Inner Padding"
9649
+ msgstr ""
9650
+
9651
+ #: widgets/timeline/timeline.php:494 widgets/timeline/timeline.php:816
9652
+ msgid "Sub Title Color"
9653
+ msgstr ""
9654
+
9655
+ #: widgets/timeline/timeline.php:543 widgets/timeline/timeline.php:838
9656
+ msgid "Title Anchor Color"
9657
+ msgstr ""
9658
+
9659
+ #: widgets/timeline/timeline.php:581 widgets/timeline/timeline.php:849
9660
+ msgid "Content Text Color"
9661
+ msgstr ""
9662
+
9663
+ #: widgets/timeline/timeline.php:619
9664
+ msgid "Round icon"
9665
+ msgstr ""
9666
+
9667
+ #: widgets/timeline/timeline.php:627 widgets/timeline/timeline.php:860
9668
+ msgid "Round Icon Color"
9669
+ msgstr ""
9670
+
9671
+ #: widgets/timeline/timeline.php:638 widgets/timeline/timeline.php:870
9672
+ msgid "Round Icon Background"
9673
+ msgstr ""
9674
+
9675
+ #: widgets/timeline/timeline.php:664 widgets/timeline/timeline.php:882
9676
+ msgid "Timeline info"
9677
+ msgstr ""
9678
+
9679
+ #: widgets/timeline/timeline.php:923
9680
+ msgid "Line "
9681
+ msgstr ""
9682
+
9683
+ #: widgets/timeline/timeline.php:931
9684
+ msgid "Line Color"
9685
+ msgstr ""
9686
+
9687
+ #: widgets/timeline/timeline.php:943
9688
+ msgid "Pin Color"
9689
+ msgstr ""
9690
+
9691
+ #: widgets/timeline/timeline.php:960
9692
+ msgid "Active Pin Color"
9693
+ msgstr ""
9694
+
9695
+ #: widgets/timeline/timeline.php:976
9696
+ msgid "Pinpoint Color"
9697
+ msgstr ""
9698
+
9699
+ #: widgets/timeline/timeline.php:1132
9700
+ msgid "Info (Address, date) Gap"
9701
+ msgstr ""
9702
+
9703
+ #: widgets/timeline/timeline.php:1166
9704
+ msgid "Item Bottom Spacing"
9705
+ msgstr ""
9706
+
9707
+ #: widgets/twitter-feed/twitter-feed-handler.php:16
9708
+ msgid "Twitter Feed"
9709
+ msgstr ""
9710
+
9711
+ #: widgets/twitter-feed/twitter-feed.php:46
9712
+ msgid "Show Header"
9713
+ msgstr ""
9714
+
9715
+ #: widgets/twitter-feed/twitter-feed.php:58
9716
+ msgid "Show Cover Photo"
9717
+ msgstr ""
9718
+
9719
+ #: widgets/twitter-feed/twitter-feed.php:73
9720
+ msgid "Show Statics"
9721
+ msgstr ""
9722
+
9723
+ #: widgets/twitter-feed/twitter-feed.php:131
9724
+ msgid "Show Media"
9725
+ msgstr ""
9726
+
9727
+ #: widgets/twitter-feed/twitter-feed.php:146
9728
+ #: widgets/twitter-feed/twitter-feed.php:147
9729
+ msgid "Follow"
9730
+ msgstr ""
9731
+
9732
+ #: widgets/twitter-feed/twitter-feed.php:181
9733
+ msgid "Only Thumbnail Image"
9734
+ msgstr ""
9735
+
9736
+ #: widgets/twitter-feed/twitter-feed.php:183
9737
+ msgid "Both Thumbnail & name"
9738
+ msgstr ""
9739
+
9740
+ #: widgets/twitter-feed/twitter-feed.php:191
9741
+ msgid "Thumbnail Style"
9742
+ msgstr ""
9743
+
9744
+ #: widgets/twitter-feed/twitter-feed.php:225
9745
+ msgid "Show Hash"
9746
+ msgstr ""
9747
+
9748
+ #: widgets/twitter-feed/twitter-feed.php:247
9749
+ msgid "Comments Box"
9750
+ msgstr ""
9751
+
9752
+ #: widgets/twitter-feed/twitter-feed.php:266
9753
+ msgid "Cover Photo"
9754
+ msgstr ""
9755
+
9756
+ #: widgets/twitter-feed/twitter-feed.php:277
9757
+ msgid "Statics"
9758
+ msgstr ""
9759
+
9760
+ #: widgets/twitter-feed/twitter-feed.php:297
9761
+ msgid "Count Color"
9762
+ msgstr ""
9763
+
9764
+ #: widgets/twitter-feed/twitter-feed.php:816
9765
+ msgid "Permalink Color"
9766
+ msgstr ""
9767
+
9768
+ #: widgets/twitter-feed/twitter-feed.php:934
9769
+ msgid "Hash Tag"
9770
+ msgstr ""
9771
+
9772
+ #: widgets/twitter-feed/twitter-feed.php:1016
9773
+ msgid "Action"
9774
+ msgstr ""
9775
+
9776
+ #: widgets/twitter-feed/twitter-feed.php:1123
9777
+ msgid "Retweet"
9778
+ msgstr ""
9779
+
9780
+ #: widgets/twitter-feed/twitter-feed.php:1145
9781
+ msgid "Like"
9782
+ msgstr ""
9783
+
9784
+ #: widgets/twitter-feed/twitter-feed.php:1208
9785
+ msgid "Play Button"
9786
+ msgstr ""
9787
+
9788
+ #: widgets/twitter-feed/twitter-feed.php:1227
9789
+ #: widgets/twitter-feed/twitter-feed.php:1306
9790
+ msgid "Circle Color"
9791
+ msgstr ""
9792
+
9793
+ #: widgets/twitter-feed/twitter-feed.php:1239
9794
+ #: widgets/twitter-feed/twitter-feed.php:1318
9795
+ msgid "Play Color"
9796
+ msgstr ""
9797
+
9798
+ #: widgets/twitter-feed/twitter-feed.php:1462
9799
+ #: widgets/twitter-feed/twitter-feed.php:1468
9800
+ msgid "Invalid author"
9801
+ msgstr ""
9802
+
9803
+ #: widgets/twitter-feed/twitter-feed.php:1524
9804
+ msgid "Tweets"
9805
+ msgstr ""
9806
+
9807
+ #: widgets/twitter-feed/twitter-feed.php:1525
9808
+ msgid "Following"
9809
+ msgstr ""
9810
+
9811
+ #: widgets/twitter-feed/twitter-feed.php:1526
9812
+ msgid "Followers"
9813
+ msgstr ""
9814
+
9815
+ #: widgets/twitter-feed/twitter-feed.php:1527
9816
+ msgid "Likes"
9817
+ msgstr ""
9818
+
9819
+ #: widgets/twitter-feed/twitter-feed.php:1640
9820
+ msgid "More"
9821
+ msgstr ""
9822
+
9823
+ #: widgets/vertical-menu/vertical-menu-handler.php:11
9824
+ msgid "Vertical menu"
9825
+ msgstr ""
9826
+
9827
+ #: widgets/vertical-menu/vertical-menu.php:46
9828
+ msgid "Vertical menu settings"
9829
+ msgstr ""
9830
+
9831
+ #: widgets/vertical-menu/vertical-menu.php:63
9832
+ msgid "Badge Position"
9833
+ msgstr ""
9834
+
9835
+ #: widgets/vertical-menu/vertical-menu.php:74
9836
+ msgid "Toggle"
9837
+ msgstr ""
9838
+
9839
+ #: widgets/vertical-menu/vertical-menu.php:85
9840
+ msgid "Show Toggle Menu"
9841
+ msgstr ""
9842
+
9843
+ #: widgets/vertical-menu/vertical-menu.php:101
9844
+ #: widgets/woo-category-list/woo-category-list.php:1118
9845
+ msgid "All Categories"
9846
+ msgstr ""
9847
+
9848
+ #: widgets/vertical-menu/vertical-menu.php:121
9849
+ msgid "Icon Right"
9850
+ msgstr ""
9851
+
9852
+ #: widgets/vertical-menu/vertical-menu.php:128
9853
+ msgid "Menu Icon Right"
9854
+ msgstr ""
9855
+
9856
+ #: widgets/vertical-menu/vertical-menu.php:139
9857
+ msgid "Icon Left"
9858
+ msgstr ""
9859
+
9860
+ #: widgets/vertical-menu/vertical-menu.php:146
9861
+ msgid "Menu Icon Left"
9862
+ msgstr ""
9863
+
9864
+ #: widgets/vertical-menu/vertical-menu.php:163
9865
+ msgid "Toggle Button"
9866
+ msgstr ""
9867
+
9868
+ #: widgets/vertical-menu/vertical-menu.php:278
9869
+ msgid "Menu Container"
9870
+ msgstr ""
9871
+
9872
+ #: widgets/vertical-menu/vertical-menu.php:320
9873
+ msgid "Menu Items"
9874
+ msgstr ""
9875
+
9876
+ #: widgets/vertical-menu/vertical-menu.php:422
9877
+ msgid "Sub Menu Items"
9878
+ msgstr ""
9879
+
9880
+ #: widgets/vertical-menu/vertical-menu.php:587
9881
+ msgid "Please Select Menu"
9882
+ msgstr ""
9883
+
9884
+ #: widgets/video/video-handler.php:11 widgets/video/video.php:40
9885
+ msgid "Video"
9886
+ msgstr ""
9887
+
9888
+ #: widgets/video/video.php:48 widgets/video/video.php:329
9889
+ msgid "Button Style"
9890
+ msgstr ""
9891
+
9892
+ #: widgets/video/video.php:62
9893
+ msgid "Button Title"
9894
+ msgstr ""
9895
+
9896
+ #: widgets/video/video.php:65 widgets/video/video.php:66
9897
+ msgid "Play Video"
9898
+ msgstr ""
9899
+
9900
+ #: widgets/video/video.php:93
9901
+ msgid "Button Icon"
9902
+ msgstr ""
9903
+
9904
+ #: widgets/video/video.php:127
9905
+ msgid "Active Glow"
9906
+ msgstr ""
9907
+
9908
+ #: widgets/video/video.php:140
9909
+ msgid "Video Type"
9910
+ msgstr ""
9911
+
9912
+ #: widgets/video/video.php:144
9913
+ msgid "youtube"
9914
+ msgstr ""
9915
+
9916
+ #: widgets/video/video.php:145
9917
+ msgid "vimeo"
9918
+ msgstr ""
9919
+
9920
+ #: widgets/video/video.php:153
9921
+ msgid "URL to embed"
9922
+ msgstr ""
9923
+
9924
+ #: widgets/video/video.php:168
9925
+ msgid "Start Time"
9926
+ msgstr ""
9927
+
9928
+ #: widgets/video/video.php:180
9929
+ msgid "End TIme"
9930
+ msgstr ""
9931
+
9932
+ #: widgets/video/video.php:191
9933
+ msgid "Auto Play"
9934
+ msgstr ""
9935
+
9936
+ #: widgets/video/video.php:203
9937
+ msgid "Mute"
9938
+ msgstr ""
9939
+
9940
+ #: widgets/video/video.php:215
9941
+ #: widgets/woo-product-carousel/woo-product-carousel.php:398
9942
+ msgid "Loop"
9943
+ msgstr ""
9944
+
9945
+ #: widgets/video/video.php:227
9946
+ msgid "Player Control"
9947
+ msgstr ""
9948
+
9949
+ #: widgets/video/video.php:239
9950
+ msgid "Intro Title"
9951
+ msgstr ""
9952
+
9953
+ #: widgets/video/video.php:252
9954
+ msgid "Intro Portrait"
9955
+ msgstr ""
9956
+
9957
+ #: widgets/video/video.php:265
9958
+ msgid "Intro Byline"
9959
+ msgstr ""
9960
+
9961
+ #: widgets/video/video.php:455
9962
+ msgid "Line height"
9963
+ msgstr ""
9964
+
9965
+ #: widgets/video/video.php:670
9966
+ msgid "Shadow Style"
9967
+ msgstr ""
9968
+
9969
+ #: widgets/video/video.php:710
9970
+ msgid "Padding Right"
9971
+ msgstr ""
9972
+
9973
+ #: widgets/we-forms/we-forms-handler.php:11
9974
+ msgid "We Forms"
9975
+ msgstr ""
9976
+
9977
+ #: widgets/we-forms/we-forms.php:38
9978
+ msgid "weForm"
9979
+ msgstr ""
9980
+
9981
+ #: widgets/we-forms/we-forms.php:58
9982
+ msgid "Fields"
9983
+ msgstr ""
9984
+
9985
+ #: widgets/we-forms/we-forms.php:98
9986
+ msgid "Input Spacing"
9987
+ msgstr ""
9988
+
9989
+ #: widgets/we-forms/we-forms.php:145
9990
+ msgid "Input Text Color"
9991
+ msgstr ""
9992
+
9993
+ #: widgets/we-forms/we-forms.php:156
9994
+ msgid "Input Placeholder Color"
9995
+ msgstr ""
9996
+
9997
+ #: widgets/we-forms/we-forms.php:288
9998
+ msgid "Label Typography"
9999
+ msgstr ""
10000
+
10001
+ #: widgets/we-forms/we-forms.php:298
10002
+ msgid "Help Text Typography"
10003
+ msgstr ""
10004
+
10005
+ #: widgets/we-forms/we-forms.php:307
10006
+ msgid "Label Text Color"
10007
+ msgstr ""
10008
+
10009
+ #: widgets/we-forms/we-forms.php:318
10010
+ msgid "Required Label Color"
10011
+ msgstr ""
10012
+
10013
+ #: widgets/we-forms/we-forms.php:329
10014
+ msgid "Help Text Color"
10015
+ msgstr ""
10016
+
10017
+ #: widgets/we-forms/we-forms.php:350
10018
+ msgid "Button Full Width?"
10019
+ msgstr ""
10020
+
10021
+ #: widgets/we-forms/we-forms.php:391
10022
+ msgid "Button Position"
10023
+ msgstr ""
10024
+
10025
+ #: widgets/widget-notice.php:17
10026
+ msgid "Go Pro for More Features"
10027
+ msgstr ""
10028
+
10029
+ #: widgets/woo-category-list/woo-category-list-handler.php:11
10030
+ msgid "Woo Category List"
10031
+ msgstr ""
10032
+
10033
+ #: widgets/woo-category-list/woo-category-list.php:43
10034
+ msgid "Filter by"
10035
+ msgstr ""
10036
+
10037
+ #: widgets/woo-category-list/woo-category-list.php:48
10038
+ msgid "Manual Selection"
10039
+ msgstr ""
10040
+
10041
+ #: widgets/woo-category-list/woo-category-list.php:49
10042
+ msgid "By Parent"
10043
+ msgstr ""
10044
+
10045
+ #: widgets/woo-category-list/woo-category-list.php:71
10046
+ msgid "Parent"
10047
+ msgstr ""
10048
+
10049
+ #: widgets/woo-category-list/woo-category-list.php:91
10050
+ msgid "Slug"
10051
+ msgstr ""
10052
+
10053
+ #: widgets/woo-category-list/woo-category-list.php:93
10054
+ msgid "Count"
10055
+ msgstr ""
10056
+
10057
+ #: widgets/woo-category-list/woo-category-list.php:124
10058
+ msgid "Label Postion"
10059
+ msgstr ""
10060
+
10061
+ #: widgets/woo-category-list/woo-category-list.php:128
10062
+ #: widgets/woo-product-carousel/woo-product-carousel.php:217
10063
+ #: widgets/woo-product-list/woo-product-list.php:175
10064
+ msgid "Inside Thumb"
10065
+ msgstr ""
10066
+
10067
+ #: widgets/woo-category-list/woo-category-list.php:129
10068
+ #: widgets/woo-product-carousel/woo-product-carousel.php:218
10069
+ #: widgets/woo-product-list/woo-product-list.php:176
10070
+ msgid "Outside Thumb"
10071
+ msgstr ""
10072
+
10073
+ #: widgets/woo-category-list/woo-category-list.php:137
10074
+ msgid "Enable featured category?"
10075
+ msgstr ""
10076
+
10077
+ #: widgets/woo-category-list/woo-category-list.php:183
10078
+ msgid "Item Gap"
10079
+ msgstr ""
10080
+
10081
+ #: widgets/woo-category-list/woo-category-list.php:209
10082
+ msgid "Categories Count"
10083
+ msgstr ""
10084
+
10085
+ #: widgets/woo-category-list/woo-category-list.php:227
10086
+ msgid "Product count"
10087
+ msgstr ""
10088
+
10089
+ #: widgets/woo-category-list/woo-category-list.php:279
10090
+ msgid "Item Border"
10091
+ msgstr ""
10092
+
10093
+ #: widgets/woo-category-list/woo-category-list.php:619
10094
+ #: widgets/woo-category-list/woo-category-list.php:914
10095
+ msgid "Category Title:"
10096
+ msgstr ""
10097
+
10098
+ #: widgets/woo-category-list/woo-category-list.php:702
10099
+ #: widgets/woo-category-list/woo-category-list.php:996
10100
+ msgid "Product Count:"
10101
+ msgstr ""
10102
+
10103
+ #: widgets/woo-category-list/woo-category-list.php:768
10104
+ msgid "Featured Category"
10105
+ msgstr ""
10106
+
10107
+ #: widgets/woo-category-list/woo-category-list.php:1118
10108
+ msgid "Products"
10109
+ msgstr ""
10110
+
10111
+ #: widgets/woo-mini-cart/woo-mini-cart-handler.php:25
10112
+ msgid "Woo Mini Cart"
10113
+ msgstr ""
10114
+
10115
+ #: widgets/woo-mini-cart/woo-mini-cart.php:61
10116
+ msgid "Cart Visibility"
10117
+ msgstr ""
10118
+
10119
+ #: widgets/woo-mini-cart/woo-mini-cart.php:104
10120
+ msgid "Cart Button"
10121
+ msgstr ""
10122
+
10123
+ #: widgets/woo-mini-cart/woo-mini-cart.php:576
10124
+ msgid "Quantity:"
10125
+ msgstr ""
10126
+
10127
+ #: widgets/woo-mini-cart/woo-mini-cart.php:635
10128
+ msgid "Image:"
10129
+ msgstr ""
10130
+
10131
+ #: widgets/woo-mini-cart/woo-mini-cart.php:678
10132
+ msgid "Remove:"
10133
+ msgstr ""
10134
+
10135
+ #: widgets/woo-mini-cart/woo-mini-cart.php:888
10136
+ msgid "Subtotal"
10137
+ msgstr ""
10138
+
10139
+ #: widgets/woo-mini-cart/woo-mini-cart.php:957
10140
+ #: widgets/woo-product-carousel/woo-product-carousel.php:883
10141
+ #: widgets/woo-product-list/woo-product-list.php:1046
10142
+ msgid "Price:"
10143
+ msgstr ""
10144
+
10145
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1171
10146
+ msgid "items"
10147
+ msgstr ""
10148
+
10149
+ #: widgets/woo-mini-cart/woo-mini-cart.php:1172
10150
+ msgid "view cart"
10151
+ msgstr ""
10152
+
10153
+ #: widgets/woo-product-carousel/woo-product-carousel-handler.php:11
10154
+ msgid "Woo Product Carousel"
10155
+ msgstr ""
10156
+
10157
+ #: widgets/woo-product-carousel/woo-product-carousel.php:68
10158
+ msgid "Scale Down"
10159
+ msgstr ""
10160
+
10161
+ #: widgets/woo-product-carousel/woo-product-carousel.php:69
10162
+ msgid "Slide Top"
10163
+ msgstr ""
10164
+
10165
+ #: widgets/woo-product-carousel/woo-product-carousel.php:70
10166
+ msgid "Slide Bottom"
10167
+ msgstr ""
10168
+
10169
+ #: widgets/woo-product-carousel/woo-product-carousel.php:71
10170
+ msgid "Slide Left"
10171
+ msgstr ""
10172
+
10173
+ #: widgets/woo-product-carousel/woo-product-carousel.php:72
10174
+ msgid "Slide Right"
10175
+ msgstr ""
10176
+
10177
+ #: widgets/woo-product-carousel/woo-product-carousel.php:73
10178
+ msgid "Slide Top Small"
10179
+ msgstr ""
10180
+
10181
+ #: widgets/woo-product-carousel/woo-product-carousel.php:74
10182
+ msgid "Slide Bottom Small"
10183
+ msgstr ""
10184
+
10185
+ #: widgets/woo-product-carousel/woo-product-carousel.php:75
10186
+ msgid "Slide Left Small"
10187
+ msgstr ""
10188
+
10189
+ #: widgets/woo-product-carousel/woo-product-carousel.php:76
10190
+ msgid "Slide Right Small"
10191
+ msgstr ""
10192
+
10193
+ #: widgets/woo-product-carousel/woo-product-carousel.php:77
10194
+ msgid "Slide Top Medium"
10195
+ msgstr ""
10196
+
10197
+ #: widgets/woo-product-carousel/woo-product-carousel.php:78
10198
+ msgid "Slide Bottom Medium"
10199
+ msgstr ""
10200
+
10201
+ #: widgets/woo-product-carousel/woo-product-carousel.php:79
10202
+ msgid "Slide Left Medium"
10203
+ msgstr ""
10204
+
10205
+ #: widgets/woo-product-carousel/woo-product-carousel.php:80
10206
+ msgid "Slide Right Medium"
10207
+ msgstr ""
10208
+
10209
+ #: widgets/woo-product-carousel/woo-product-carousel.php:108
10210
+ #: widgets/woo-product-list/woo-product-list.php:63
10211
+ msgid "Show product by "
10212
+ msgstr ""
10213
+
10214
+ #: widgets/woo-product-carousel/woo-product-carousel.php:113
10215
+ #: widgets/woo-product-carousel/woo-product-carousel.php:135
10216
+ #: widgets/woo-product-list/woo-product-list.php:68
10217
+ #: widgets/woo-product-list/woo-product-list.php:90
10218
+ msgid "Product"
10219
+ msgstr ""
10220
+
10221
+ #: widgets/woo-product-carousel/woo-product-carousel.php:168
10222
+ #: widgets/woo-product-list/woo-product-list.php:123
10223
+ msgid "Descending"
10224
+ msgstr ""
10225
+
10226
+ #: widgets/woo-product-carousel/woo-product-carousel.php:169
10227
+ #: widgets/woo-product-list/woo-product-list.php:124
10228
+ msgid "Ascending"
10229
+ msgstr ""
10230
+
10231
+ #: widgets/woo-product-carousel/woo-product-carousel.php:199
10232
+ #: widgets/woo-product-list/woo-product-list.php:157
10233
+ msgid "Flip Content? "
10234
+ msgstr ""
10235
+
10236
+ #: widgets/woo-product-carousel/woo-product-carousel.php:213
10237
+ #: widgets/woo-product-list/woo-product-list.php:171
10238
+ msgid "Content Postion"
10239
+ msgstr ""
10240
+
10241
+ #: widgets/woo-product-carousel/woo-product-carousel.php:229
10242
+ msgid "Desktop Columns"
10243
+ msgstr ""
10244
+
10245
+ #: widgets/woo-product-carousel/woo-product-carousel.php:245
10246
+ msgid "Tablet Columns"
10247
+ msgstr ""
10248
+
10249
+ #: widgets/woo-product-carousel/woo-product-carousel.php:261
10250
+ msgid "Mobile Columns"
10251
+ msgstr ""
10252
+
10253
+ #: widgets/woo-product-carousel/woo-product-carousel.php:306
10254
+ #: widgets/woo-product-list/woo-product-list.php:259
10255
+ msgid "Open Thumb in Popup"
10256
+ msgstr ""
10257
+
10258
+ #: widgets/woo-product-carousel/woo-product-carousel.php:358
10259
+ #: widgets/woo-product-list/woo-product-list.php:311
10260
+ msgid "Add to Cart"
10261
+ msgstr ""
10262
+
10263
+ #: widgets/woo-product-carousel/woo-product-carousel.php:369
10264
+ msgid "Carousel Settings"
10265
+ msgstr ""
10266
+
10267
+ #: widgets/woo-product-carousel/woo-product-carousel.php:386
10268
+ msgid "Autoplay Speed"
10269
+ msgstr ""
10270
+
10271
+ #: widgets/woo-product-carousel/woo-product-carousel.php:408
10272
+ msgid "Animation Speed"
10273
+ msgstr ""
10274
+
10275
+ #: widgets/woo-product-carousel/woo-product-carousel.php:437
10276
+ msgid "Arrows and Dots"
10277
+ msgstr ""
10278
+
10279
+ #: widgets/woo-product-carousel/woo-product-carousel.php:450
10280
+ msgid "Arrows and Dots Position"
10281
+ msgstr ""
10282
+
10283
+ #: widgets/woo-product-carousel/woo-product-carousel.php:463
10284
+ msgid "Arrows Position"
10285
+ msgstr ""
10286
+
10287
+ #: widgets/woo-product-carousel/woo-product-carousel.php:476
10288
+ msgid "Dots Position"
10289
+ msgstr ""
10290
+
10291
+ #: widgets/woo-product-carousel/woo-product-carousel.php:564
10292
+ #: widgets/woo-product-list/woo-product-list.php:449
10293
+ msgid "Description Padding"
10294
+ msgstr ""
10295
+
10296
+ #: widgets/woo-product-carousel/woo-product-carousel.php:811
10297
+ #: widgets/woo-product-list/woo-product-list.php:973
10298
+ msgid "Rating:"
10299
+ msgstr ""
10300
+
10301
+ #: widgets/woo-product-carousel/woo-product-carousel.php:838
10302
+ #: widgets/woo-product-list/woo-product-list.php:1000
10303
+ #: widgets/woo-product-list/woo-product-list.php:2104
10304
+ msgid "Active Color"
10305
+ msgstr ""
10306
+
10307
+ #: widgets/woo-product-carousel/woo-product-carousel.php:937
10308
+ #: widgets/woo-product-list/woo-product-list.php:1100
10309
+ msgid "Sale Price"
10310
+ msgstr ""
10311
+
10312
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1029
10313
+ #: widgets/woo-product-list/woo-product-list.php:1192
10314
+ msgid "Image Border"
10315
+ msgstr ""
10316
+
10317
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1074
10318
+ #: widgets/woo-product-list/woo-product-list.php:1237
10319
+ msgid "Cart:"
10320
+ msgstr ""
10321
+
10322
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1083
10323
+ #: widgets/woo-product-list/woo-product-list.php:1246
10324
+ msgid "Fullwidth Button"
10325
+ msgstr ""
10326
+
10327
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1530
10328
+ #: widgets/woo-product-list/woo-product-list.php:1864
10329
+ msgid "Fullwidth Badge"
10330
+ msgstr ""
10331
+
10332
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1626
10333
+ #: widgets/woo-product-list/woo-product-list.php:613
10334
+ #: widgets/woo-product-list/woo-product-list.php:745
10335
+ #: widgets/woo-product-list/woo-product-list.php:1960
10336
+ msgid "Text Typography"
10337
+ msgstr ""
10338
+
10339
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1739
10340
+ msgid "Add to Cart Button"
10341
+ msgstr ""
10342
+
10343
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1825
10344
+ msgid "Overlay Animation"
10345
+ msgstr ""
10346
+
10347
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1921
10348
+ msgid "Previous"
10349
+ msgstr ""
10350
+
10351
+ #: widgets/woo-product-carousel/woo-product-carousel.php:1972
10352
+ msgid "Arrows Size"
10353
+ msgstr ""
10354
+
10355
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2007
10356
+ msgid "Hover Background Color"
10357
+ msgstr ""
10358
+
10359
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2021
10360
+ msgid "Space"
10361
+ msgstr ""
10362
+
10363
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2110
10364
+ msgid "Arrows Color"
10365
+ msgstr ""
10366
+
10367
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2134
10368
+ msgid "Arrows Hover Color"
10369
+ msgstr ""
10370
+
10371
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2152
10372
+ msgid "Horizontal Offset"
10373
+ msgstr ""
10374
+
10375
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2176
10376
+ msgid "Vertical Offset"
10377
+ msgstr ""
10378
+
10379
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2212
10380
+ msgid "Dots Size"
10381
+ msgstr ""
10382
+
10383
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2233
10384
+ msgid "Dots Space"
10385
+ msgstr ""
10386
+
10387
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2338
10388
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2362
10389
+ msgid "Dots Color"
10390
+ msgstr ""
10391
+
10392
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2386
10393
+ msgid "Active Dots Color"
10394
+ msgstr ""
10395
+
10396
+ #: widgets/woo-product-carousel/woo-product-carousel.php:2698
10397
+ #: widgets/woo-product-list/woo-product-list.php:1684
10398
+ msgid "View Cart Button"
10399
+ msgstr ""
10400
+
10401
+ #: widgets/woo-product-carousel/woo-product-carousel.php:3129
10402
+ msgid "Oppps!! There is no product"
10403
+ msgstr ""
10404
+
10405
+ #: widgets/woo-product-list/woo-product-list-handler.php:11
10406
+ msgid "Woo Product List"
10407
+ msgstr ""
10408
+
10409
+ #: widgets/woo-product-list/woo-product-list.php:228
10410
+ msgid "Row Gap"
10411
+ msgstr ""
10412
+
10413
+ #: widgets/woo-product-list/woo-product-list.php:405
10414
+ msgid "Last Child"
10415
+ msgstr ""
10416
+
10417
+ #: widgets/woo-product-list/woo-product-list.php:414
10418
+ msgid "Item Padding Last Child"
10419
+ msgstr ""
10420
+
10421
+ #: widgets/woo-product-list/woo-product-list.php:426
10422
+ msgid "Item Margin Last Child"
10423
+ msgstr ""
10424
+
10425
+ #: widgets/woo-product-list/woo-product-list.php:439
10426
+ msgid "Item Border Last Child"
10427
+ msgstr ""
10428
+
10429
+ #: widgets/woo-product-list/woo-product-list.php:512
10430
+ msgid "Search Field"
10431
+ msgstr ""
10432
+
10433
+ #: widgets/woo-product-list/woo-product-list.php:652
10434
+ msgid "Select Field"
10435
+ msgstr ""
10436
+
10437
+ #: widgets/woo-product-list/woo-product-list.php:2129
10438
+ msgid "Arrow Size"
10439
+ msgstr ""
10440
+
10441
+ #: widgets/woo-product-list/woo-product-list.php:2735
10442
+ msgid "Oops! No products were found."
10443
+ msgstr ""
10444
+
10445
+ #: widgets/wp-forms/wp-forms-handler.php:11
10446
+ msgid "Wp Forms"
10447
+ msgstr ""
10448
+
10449
+ #: widgets/wp-forms/wp-forms.php:38
10450
+ msgid "wpForm"
10451
+ msgstr ""
10452
+
10453
+ #. Plugin URI of the plugin/theme
10454
+ msgid "https://products.wpmet.com/elementskit"
10455
+ msgstr ""
10456
+
10457
+ #. Description of the plugin/theme
10458
+ msgid ""
10459
+ "The most advanced addons for Elementor with tons of widgets, Header builder, "
10460
+ "Footer builder, Mega menu builder, layout pack and powerful custom controls."
10461
+ msgstr ""
10462
+
10463
+ #. Author of the plugin/theme
10464
+ msgid "Wpmet"
10465
+ msgstr ""
10466
+
10467
+ #. Author URI of the plugin/theme
10468
+ msgid "https://wpmet.com/"
10469
+ msgstr ""
libs/announcements/init.php ADDED
@@ -0,0 +1,319 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Wpmet\Libs\Announcements;
3
+
4
+ defined('ABSPATH') || exit;
5
+
6
+ if (!class_exists('\Wpmet\Libs\Announcements\Init')):
7
+
8
+ class Init {
9
+
10
+ protected $script_version = '1.0.0';
11
+
12
+ protected $key;
13
+ protected $api;
14
+ protected $data;
15
+ protected $title;
16
+ protected $plugin_link = [];
17
+ protected $last_check = 3600 * 2;
18
+ protected $check_interval;
19
+
20
+ protected $plugin_screens;
21
+
22
+ protected $text_domain;
23
+ protected $filter_string;
24
+ protected $api_url;
25
+
26
+ private $announcements;
27
+
28
+ /**
29
+ * Get version of this script
30
+ *
31
+ * @return string Version name
32
+ */
33
+ public function get_version() {
34
+ return $this->script_version;
35
+ }
36
+
37
+ /**
38
+ * Get current directory path
39
+ *
40
+ * @return string
41
+ */
42
+ public function get_script_location() {
43
+ return dirname(__FILE__);
44
+ }
45
+
46
+ public function set_plugin($link_title, $weblink = 'https://wpmet.com/') {
47
+ $this->plugin_link[] = [ $link_title, $weblink ];
48
+
49
+ return $this;
50
+ }
51
+
52
+ public function call() {
53
+
54
+ $this->key = 'wpmet_announcements';
55
+ $this->api = $this->api_url . '?csrf=wpmet_true&nocache=' . time();
56
+
57
+ $this->get_announcements();
58
+
59
+ if (!empty($this->data->error)) {
60
+
61
+ return;
62
+ }
63
+
64
+ if (empty($this->data)) {
65
+
66
+ return;
67
+ }
68
+
69
+ $list = [];
70
+
71
+ if (!empty($this->filter_string)) {
72
+
73
+ $list = explode(',', $this->filter_string);
74
+
75
+ foreach ($list as $idx => $item) {
76
+ $list[$idx] = trim($item);
77
+ }
78
+ $list = array_filter($list);
79
+ }
80
+
81
+
82
+ foreach ($this->data as $announcement) {
83
+
84
+ if (!empty($list) && $this->in_blacklist($announcement, $list)) {
85
+
86
+ continue;
87
+ }
88
+
89
+ $this->set_announcements($announcement);
90
+ }
91
+
92
+ if(empty($this->announcements)) {
93
+ return;
94
+ }
95
+
96
+ add_action('wp_dashboard_setup', [$this, 'show_announcements_widget']);
97
+
98
+ }
99
+
100
+ private function in_whitelist($conf, $list) {
101
+
102
+ $match = $conf->data->whitelist;
103
+
104
+ if (empty($match)) {
105
+
106
+ return true;
107
+ };
108
+
109
+ $match_arr = explode(',', $match);
110
+
111
+ foreach ($list as $word) {
112
+ if (in_array($word, $match_arr)) {
113
+
114
+ return true;
115
+ }
116
+ }
117
+
118
+ return false;
119
+ }
120
+
121
+ private function in_blacklist($conf, $list) {
122
+
123
+ $match = $conf->data->blacklist;
124
+
125
+ if (empty($match)) {
126
+
127
+ return false;
128
+ };
129
+
130
+ $match_arr = explode(',', $match);
131
+
132
+ foreach ($match_arr as $idx => $item) {
133
+
134
+ $match_arr[$idx] = trim($item);
135
+ }
136
+
137
+ foreach ($list as $word) {
138
+ if (in_array($word, $match_arr)) {
139
+
140
+ return true;
141
+ }
142
+ }
143
+
144
+ return false;
145
+ }
146
+
147
+ public function set_title($title = '') {
148
+ $this->title = $title;
149
+
150
+ return $this;
151
+ }
152
+
153
+ public function is_test($is_test = false) {
154
+
155
+ if ($is_test === true) {
156
+ $this->check_interval = 1;
157
+ }
158
+
159
+ return $this;
160
+ }
161
+
162
+ public function set_text_domain($text_domain) {
163
+
164
+ $this->text_domain = $text_domain;
165
+
166
+ return $this;
167
+ }
168
+
169
+ public function set_filter($filter_string) {
170
+
171
+ $this->filter_string = $filter_string;
172
+
173
+ return $this;
174
+ }
175
+
176
+ public function set_api_url($url) {
177
+
178
+ $this->api_url = $url;
179
+
180
+ return $this;
181
+ }
182
+
183
+ public function set_plugin_screens($screen) {
184
+
185
+ $this->plugin_screens[] = $screen;
186
+
187
+ return $this;
188
+ }
189
+
190
+ private function set_announcements($announcement) {
191
+ $filter = [];
192
+ foreach (get_option('active_plugins') as $plugin) {
193
+ $temp = pathinfo($plugin);
194
+ if(!empty($temp)) {
195
+ $filter[] = trim($temp['filename']);
196
+ }
197
+ }
198
+
199
+ if (isset($this->announcements[$announcement->id])) {
200
+ return;
201
+ }
202
+
203
+ // if start and endtime is set, check current time is inside the timeframe
204
+ if ((!empty($announcement->start) && !empty($announcement->end)) && (intval($announcement->start) > time() || intval($announcement->end) < time())) {
205
+ return;
206
+ }
207
+
208
+ if(empty(array_intersect($filter, $announcement->plugins))) {
209
+ return;
210
+ }
211
+
212
+ $this->announcements[$announcement->id] = [
213
+ 'id' => $announcement->id,
214
+ 'title' => $announcement->title,
215
+ 'description' => $announcement->description,
216
+ 'type' => $announcement->type,
217
+ 'priority' => $announcement->priority,
218
+ 'announcements_link' => $announcement->data->announcements_link,
219
+ 'announcements_image' => $announcement->data->announcements_image,
220
+ ];
221
+ }
222
+
223
+ private function get_announcements() {
224
+ $this->data = get_option($this->text_domain . '__announcements_data');
225
+ $this->data = $this->data == '' ? [] : $this->data;
226
+
227
+ $this->last_check = get_option($this->text_domain . '__announcements_last_check');
228
+
229
+ $this->last_check = empty($this->last_check) ? 0 : $this->last_check;
230
+
231
+ if (($this->check_interval + $this->last_check) < time()) {
232
+ $response = wp_remote_get($this->api,
233
+ array(
234
+ 'timeout' => 10,
235
+ 'httpversion' => '1.1',
236
+ )
237
+ );
238
+
239
+ if (!is_wp_error($response) && isset($response['body']) && $response['body'] != '') {
240
+
241
+ $response = json_decode($response['body']);
242
+
243
+ // if (!empty($response)) { }
244
+ $this->data = $response;
245
+
246
+ update_option($this->text_domain . '__announcements_last_check', time());
247
+ update_option($this->text_domain . '__announcements_data', $this->data);
248
+
249
+ return;
250
+ }
251
+ }
252
+ }
253
+
254
+ public function show_announcements_widget() {
255
+ $this->title = (isset($this->title) && !empty($this->title) ? $this->title . ' ' : '') . 'Announcements';
256
+
257
+ wp_add_dashboard_widget( 'wpmet-announcements', __( 'Wpmet Stories', $this->text_domain ), [ $this, 'show' ] );
258
+
259
+ // Move our widget to top.
260
+ global $wp_meta_boxes;
261
+
262
+ $dashboard = $wp_meta_boxes['dashboard']['normal']['core'];
263
+ $ours = [
264
+ 'wpmet-announcements' => $dashboard['wpmet-announcements'],
265
+ ];
266
+
267
+ $wp_meta_boxes['dashboard']['normal']['core'] = array_merge( $ours, $dashboard );
268
+ }
269
+
270
+ public function show() {
271
+ usort($this->announcements, function ($a, $b) {
272
+ return $a['priority'] <=> $b['priority'];
273
+ });
274
+
275
+ include_once $this->get_script_location() . '/views/template.php';
276
+
277
+ }
278
+
279
+ /**
280
+ * Crosscheck if Announcement library will be shown at current WP admin page or not
281
+ *
282
+ * @param string $b_screen
283
+ * @param string $screen_id
284
+ *
285
+ * @return boolean
286
+ */
287
+ public function is_correct_screen_to_show($b_screen, $screen_id) {
288
+
289
+ if (in_array($b_screen, [$screen_id, 'all_page'])) {
290
+
291
+ return true;
292
+ }
293
+
294
+ if ($b_screen == 'plugin_page') {
295
+
296
+ return in_array($screen_id, $this->plugin_screens);
297
+ }
298
+
299
+ return false;
300
+ }
301
+
302
+ /**
303
+ * Define singleton instance
304
+ *
305
+ * @var [type]
306
+ */
307
+ private static $instance;
308
+
309
+ public static function instance($text_domain = '') {
310
+
311
+ if(!self::$instance) {
312
+ self::$instance = new static();
313
+ }
314
+
315
+ return self::$instance->set_text_domain($text_domain);
316
+ }
317
+ }
318
+
319
+ endif;
libs/announcements/views/template.php ADDED
@@ -0,0 +1,148 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <style>
2
+ .wpmet-ann {
3
+ display: flex;
4
+ flex-wrap: wrap;
5
+ width: 100%;
6
+ margin-bottom: 10px;
7
+ }
8
+ .wpmet-ann-thumb {
9
+ width: 75px;
10
+ padding-right: 7px;
11
+ box-sizing: border-box;
12
+ align-self: flex-start;
13
+ padding-top: 5px;
14
+ }
15
+ .wpmet-ann-thumb img {
16
+ width: 100%;
17
+ display: block;
18
+ min-height: 34px;
19
+ }
20
+ .wpmet-ann-desc.with-image {
21
+ width: calc(100% - 75px);
22
+ font-weight: 400;
23
+ line-height: 1.5;
24
+ font-size: 13px;
25
+ }
26
+ .wpmet-ann-desc a {
27
+ font-weight: 500;
28
+ color: #0073aa;
29
+ text-decoration: none;
30
+ padding-bottom: 5px;
31
+ display: inline-block;
32
+ }
33
+ .wpmet-ann:last-child {
34
+ margin-bottom: 0;
35
+ }
36
+ .wpmet-ann-desc span {
37
+ display: block;
38
+ }
39
+ .wpmet-bullet-wall {
40
+ width: 6px;
41
+ height: 6px;
42
+ border-radius: 50%;
43
+ background-color: black;
44
+ display: inline-block;
45
+ margin: 0 5px;
46
+ }
47
+ .wpmet-dashboard-widget-block {
48
+ width: 100%;
49
+ }
50
+ .wpmet-dashboard-widget-block .wpmet-title-bar a{
51
+ color: #23282d;
52
+ font-weight: 400;
53
+ font-size: 12px;
54
+ }
55
+ .wpmet-dashboard-widget-block .wpmet-title-bar {
56
+ display: table;
57
+ width: 100%;
58
+ -webkit-box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
59
+ box-shadow: 0 5px 8px rgba(0, 0, 0, 0.05);
60
+ margin: 0 -12px 8px;
61
+ padding: 0 12px 12px;
62
+ }
63
+ .wpmet-dashboard-widget-block .wpmet-footer-bar {
64
+ border-top: 1px solid #eee;
65
+ padding-top: 1rem;
66
+ }
67
+ .wpmet-dashboard-widget-block .wpmet-footer-bar a {
68
+ padding: 0 5px;
69
+ }
70
+ .wpmet-dashboard-widget-block a {
71
+ text-decoration: none;
72
+ font-size: 14px;
73
+ color: #007cba;
74
+ font-weight: 600;
75
+ }
76
+ .wpmet-ann .wpmet-banner {
77
+ width: 100%;
78
+ height: 50px;
79
+ }
80
+ .wpmet-dashboard-widget-block .dashicons {
81
+ vertical-align: middle;
82
+ font-size: 17px;
83
+ }
84
+ </style>
85
+
86
+ <div class="wpmet-dashboard-widget-block">
87
+ <div class="wpmet-title-bar">
88
+ <?php
89
+ foreach ($this->plugin_link as $k => $link) {
90
+ echo '<a href="' . $link[1] . '">' . $link[0] . '</a>';
91
+ if (isset($this->plugin_link[$k + 1])) {
92
+ echo '<div class="wpmet-bullet-wall"></div>';
93
+ }
94
+ }
95
+ ?>
96
+ </div>
97
+ </div>
98
+
99
+ <?php
100
+ foreach ($this->announcements as $announcements) {
101
+ if($announcements['type'] === 'news' || $announcements['type'] === '') :
102
+ ?>
103
+ <div class="wpmet-ann <?php echo ((isset($announcements['announcements_image']) && $announcements['announcements_image'] != '') ? 'with-image' : ''); ?>">
104
+ <?php if(isset($announcements['announcements_image']) && $announcements['announcements_image'] != ''): ?>
105
+ <div class="wpmet-ann-thumb">
106
+ <img src="<?php echo esc_url($announcements['announcements_image']); ?>" />
107
+ </div>
108
+ <?php endif; ?>
109
+
110
+ <div class="wpmet-ann-desc">
111
+
112
+ <a href="<?php echo esc_url($announcements['announcements_link']) ?>">
113
+ <?php echo esc_html($announcements['title']); ?>
114
+ </a>
115
+
116
+ <?php if(isset($announcements['description']) && $announcements['description'] != ''): ?>
117
+ <span><?php echo esc_html($announcements['description']); ?> </span>
118
+ <?php endif; ?>
119
+
120
+ </div>
121
+ </div>
122
+ <?php
123
+ elseif($announcements['type'] === 'banner') :
124
+ ?>
125
+ <div class="wpmet-ann">
126
+ <img class="wpmet-banner" src="<?php echo isset($announcements['announcements_image']) && $announcements['announcements_image'] != '' ? $announcements['announcements_image'] : '#'; ?>" />
127
+ </div>
128
+ <?php
129
+ endif;
130
+ }
131
+ ?>
132
+
133
+ <div class="wpmet-dashboard-widget-block">
134
+ <div class="wpmet-footer-bar">
135
+ <a href="https://help.wpmet.com/" target="_blank">
136
+ <?php echo esc_html__('Help'); ?>
137
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
138
+ </a>
139
+ <a href="https://wpmet.com/blog/" target="_blank">
140
+ <?php echo esc_html__('Blog') ;?>
141
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
142
+ </a>
143
+ <a href="https://www.facebook.com/pg/wpmetcom/community/" target="_blank" style="color: #27ae60;">
144
+ <?php echo esc_html__('Facebook Community'); ?>
145
+ <span aria-hidden="true" class="dashicons dashicons-external"></span>
146
+ </a>
147
+ </div>
148
+ </div>
libs/banner/init.php CHANGED
@@ -1,119 +1,257 @@
1
- <?php
2
-
3
- if(!class_exists('WpMet_Banner')){
4
- class WpMet_Banner{
5
- public static $instance = null;
6
-
7
- public $key;
8
- public $api;
9
- public $data;
10
- public $last_check;
11
- public $check_interval;
12
-
13
- public $plugin_pages;
14
-
15
- function __construct(){
16
- if(!is_admin()){
17
- return false;
18
- }
19
-
20
- $this->key = 'wpmet_banner';
21
- $this->api = \ElementsKit::api_url() . 'banner/';
22
- $this->check_interval = (3600 * 24); // 1day
23
- $this->get_banner();
24
-
25
- $this->plugin_pages = [
26
- 'edit-elementskit_template',
27
- 'toplevel_page_elementskit'
28
- ];
29
-
30
- if(isset($this->data->plugin_pages) && !empty($this->data->plugin_pages)){
31
- $this->show_banner($this->data->plugin_pages);
32
- }
33
-
34
- if(isset($this->data->all_pages) && !empty($this->data->all_pages)){
35
- $this->show_banner($this->data->all_pages);
36
- }
37
-
38
- add_action('admin_footer', [$this, 'style']);
39
- }
40
-
41
- private function get_banner(){
42
- $this->data = get_option('__data');
43
- $this->data = $this->data == '' ? [] : $this->data;
44
-
45
- $this->last_check = get_option('__last_check');
46
- $this->last_check = $this->last_check == '' ? 0 : $this->last_check;
47
-
48
- if(($this->check_interval + $this->last_check) < time()){
49
- $response = wp_remote_get( $this->api,
50
- array(
51
- 'timeout' => 10,
52
- 'httpversion' => '1.1',
53
- )
54
- );
55
-
56
- if(!is_wp_error($response) && isset($response['body']) && $response['body'] != ''){
57
- $this->data = json_decode($response['body']);
58
-
59
- update_option('__last_check', time());
60
- update_option('__data', $this->data);
61
-
62
- return;
63
- }
64
-
65
- }
66
- }
67
-
68
-
69
- public function show_banner($banner){
70
- if($banner->start <= time() && time() <= $banner->end){
71
- $screen = get_current_screen();
72
-
73
- if($banner->slug == 'all_pages'|| in_array($screen->id, $this->plugin_pages)){
74
- $contents = '<a target="_blank" class="wpmet-banner-href" href="'.$banner->url.'"><img src="'.$banner->image.'" /></a>';
75
-
76
- \ElementsKit\Notice::push(
77
- [
78
- 'id' => 'wpmet-banner-' . $banner->slug,
79
- 'type' => 'banner',
80
- 'class' => 'wpmet-banner-container',
81
- 'dismissible' => true,
82
- 'message' => $contents
83
- ]
84
- );
85
- }
86
- }
87
- }
88
-
89
-
90
- public function style(){
91
- ?>
92
- <style>
93
- .wpmet-banner-container{
94
- background: none!important;
95
- border: 0!important;
96
- box-shadow: none!important;
97
- padding: 0!important;
98
- }
99
- .wpmet-banner-href{
100
- text-align: center;
101
- display: block;
102
- }
103
- .wpmet-banner-href img{
104
- width: 100%;
105
- max-width: 1400px;
106
- }
107
- </style>
108
- <?php
109
- }
110
-
111
- public static function run() {
112
- if ( is_null( self::$instance ) ) {
113
- self::$instance = new self();
114
- }
115
-
116
- return self::$instance;
117
- }
118
- }
119
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Wpmet\Libs\Banner;
3
+
4
+ defined( 'ABSPATH' ) || exit;
5
+
6
+ if(!class_exists('\Wpmet\Libs\Banner\Init')):
7
+
8
+ class Init {
9
+
10
+ protected $script_version = '1.0.6';
11
+
12
+ protected $key;
13
+ protected $api;
14
+ protected $data;
15
+ protected $last_check;
16
+ protected $check_interval = (3600 * 2);
17
+
18
+ protected $plugin_screens;
19
+
20
+ protected $text_domain;
21
+ protected $filter_string;
22
+ protected $api_url;
23
+
24
+
25
+ public function get_version(){
26
+ return $this->script_version;
27
+ }
28
+
29
+ public function get_script_location(){
30
+ return __FILE__;
31
+ }
32
+
33
+ public function call(){
34
+
35
+
36
+ $this->key = 'wpmet_banner';
37
+ $this->api = $this->api_url . '?test=rrr&nocache='.time().'&plugin='. $this->text_domain.'&filter='. $this->filter_string;
38
+
39
+ $this->get_banner();
40
+
41
+ if(!empty($this->data->error)) {
42
+
43
+ return;
44
+ }
45
+
46
+ if(empty($this->data)) {
47
+
48
+ return;
49
+ }
50
+
51
+ $list = [];
52
+
53
+ if(!empty($this->filter_string)) {
54
+
55
+ $list = explode(',', $this->filter_string);
56
+
57
+ foreach ($list as $idx => $item) {
58
+ $list[$idx] = trim($item);
59
+ }
60
+ }
61
+
62
+ foreach($this->data as $banner) {
63
+
64
+ if($banner->type != 'banner') continue;
65
+
66
+ if(!empty($list) && $this->in_blacklist($banner, $list)) {
67
+
68
+ continue;
69
+ }
70
+
71
+ $this->show($banner);
72
+ }
73
+ }
74
+
75
+
76
+ private function in_whitelist($conf, $list) {
77
+
78
+ $match = $conf->data->whitelist;
79
+
80
+ if(empty($match)) {
81
+
82
+ return true;
83
+ };
84
+
85
+ $match_arr = explode(',', $match);
86
+
87
+ foreach($list as $word) {
88
+ if(in_array($word, $match_arr)) {
89
+
90
+ return true;
91
+ }
92
+ }
93
+
94
+ return false;
95
+ }
96
+
97
+
98
+ private function in_blacklist($conf, $list) {
99
+
100
+ $match = $conf->data->blacklist;
101
+
102
+ if(empty($match)) {
103
+
104
+ return false;
105
+ };
106
+
107
+ $match_arr = explode(',', $match);
108
+
109
+ foreach($match_arr as $idx => $item) {
110
+
111
+ $match_arr[$idx] = trim($item);
112
+ }
113
+
114
+ foreach($list as $word) {
115
+ if(in_array($word, $match_arr)) {
116
+
117
+ return true;
118
+ }
119
+ }
120
+
121
+ return false;
122
+ }
123
+
124
+
125
+ public function is_test($is_test = false) {
126
+
127
+ if($is_test === true){
128
+ $this->check_interval = 1;
129
+ }
130
+
131
+ return $this;
132
+ }
133
+
134
+
135
+ public function set_text_domain($text_domain) {
136
+
137
+ $this->text_domain = $text_domain;
138
+
139
+ return $this;
140
+ }
141
+
142
+
143
+ public function set_filter($filter_string) {
144
+
145
+ $this->filter_string = $filter_string;
146
+
147
+ return $this;
148
+ }
149
+
150
+
151
+ public function set_api_url($url) {
152
+
153
+ $this->api_url = $url;
154
+
155
+ return $this;
156
+ }
157
+
158
+ public function set_plugin_screens($screen) {
159
+
160
+ $this->plugin_screens[] = $screen;
161
+
162
+ return $this;
163
+ }
164
+
165
+
166
+ private function get_banner() {
167
+ $this->data = get_option($this->text_domain . '__data');
168
+ $this->data = $this->data == '' ? [] : $this->data;
169
+
170
+ $this->last_check = get_option($this->text_domain . '__last_check');
171
+ $this->last_check = $this->last_check == '' ? 0 : $this->last_check;
172
+
173
+ if(($this->check_interval + $this->last_check) < time()){
174
+ $response = wp_remote_get( $this->api,
175
+ array(
176
+ 'timeout' => 10,
177
+ 'httpversion' => '1.1',
178
+ )
179
+ );
180
+
181
+ if(!is_wp_error($response) && isset($response['body']) && $response['body'] != ''){
182
+
183
+ $response = json_decode($response['body']);
184
+
185
+ if(!empty($response)) {
186
+ $this->data = $response;
187
+ }
188
+
189
+ update_option($this->text_domain . '__last_check', time());
190
+ update_option($this->text_domain . '__data', $this->data);
191
+
192
+ return;
193
+ }
194
+ }
195
+ }
196
+
197
+
198
+ public function show($banner) {
199
+
200
+ if($banner->start <= time() && time() <= $banner->end) {
201
+
202
+ $screen = get_current_screen();
203
+
204
+ if($this->is_correct_screen_to_show($banner->screen, $screen->id) && class_exists('\Oxaim\Libs\Notice')) {
205
+
206
+ // var_dump($banner); exit;
207
+ $inline_css = '';
208
+ $banner_unique_id = ((isset($banner->data->unique_key) && $banner->data->unique_key != '') ? $banner->data->unique_key : $banner->id );
209
+
210
+ if(!empty($banner->data->style_css)) {
211
+
212
+ $inline_css =' style="'.$banner->data->style_css.'"';
213
+ }
214
+
215
+ $contents = '<a target="_blank" '.$inline_css.' class="wpmet-jhanda-href" href="'.$banner->data->banner_link.'"><img style="display: block;margin: 0 auto;" src="'.$banner->data->banner_image.'" /></a>';
216
+
217
+ \Oxaim\Libs\Notice::instance('wpmet-jhanda', $banner_unique_id)
218
+ ->set_dismiss('global', (3600 * 24 * 15))
219
+ ->set_gutter(false)
220
+ ->set_html($contents)
221
+ ->call();
222
+ }
223
+ }
224
+ }
225
+
226
+
227
+ public function is_correct_screen_to_show($b_screen, $screen_id) {
228
+
229
+ if(in_array($b_screen, [$screen_id, 'all_page'])) {
230
+
231
+ return true;
232
+ }
233
+
234
+
235
+ if($b_screen == 'plugin_page') {
236
+
237
+ return in_array($screen_id, $this->plugin_screens);
238
+ }
239
+
240
+ return false;
241
+ }
242
+
243
+
244
+ private static $instance;
245
+
246
+
247
+ public static function instance($text_domain = '') {
248
+
249
+ if(!self::$instance) {
250
+ self::$instance = new static();
251
+ }
252
+
253
+ return self::$instance->set_text_domain($text_domain);
254
+ }
255
+ }
256
+
257
+ endif;
libs/framework/assets/css/admin-global.css CHANGED
@@ -1,84 +1 @@
1
-
2
- @keyframes Gradient {
3
- 0%,
4
- 100% {
5
- background-position: 0 50%
6
- }
7
- 50% {
8
- background-position: 100% 50%
9
- }
10
- }
11
-
12
- a.toplevel_page_elementskit {
13
- background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB)!important;
14
- animation: Gradient 15s ease infinite;
15
- background-size: 400% 400%!important;
16
- color: #fff!important;
17
- }
18
- #adminmenu .toplevel_page_elementskit .wp-menu-image {
19
- display: -webkit-box;
20
- display: -ms-flexbox;
21
- display: flex;
22
- -webkit-box-align: center;
23
- -ms-flex-align: center;
24
- align-items: center;
25
- -webkit-box-pack: center;
26
- -ms-flex-pack: center;
27
- justify-content: center;
28
- }
29
- #adminmenu .toplevel_page_elementskit .wp-menu-image img {
30
- opacity: 1;
31
- width: 16px!important;
32
- padding: 0px!important;
33
- }
34
-
35
- #elementskit-sites-notice-id-elementskit-go-pro p{
36
- font-size: 16px;
37
- font-weight: 300;
38
- }
39
- #elementskit-sites-notice-id-elementskit-go-pro h2{
40
- font-size: 28px;
41
- font-weight: 400;
42
- margin: 0 0 16px 0;
43
- }
44
- #elementskit-sites-notice-id-elementskit-go-pro{
45
- background: none;
46
- position: relative;
47
- }
48
- #elementskit-sites-notice-id-elementskit-go-pro:after{
49
- content: '';
50
- position: absolute;
51
- bottom: 0;
52
- left: 0;
53
- right: 380px;
54
- z-index: -1;
55
- top: 0;
56
- background: #f9fafc;
57
- background: linear-gradient(90deg, rgb(255, 227, 227) 0%, rgba(249,250,252,.5) 100%);
58
- }
59
- #elementskit-sites-notice-id-elementskit-go-pro:before{
60
- content: '';
61
- position: absolute;
62
- bottom: 0;
63
- left: 0;
64
- right: 0;
65
- z-index: -2;
66
- top: 0;
67
- background: #f9fafc url(../images/go-pro-feature.png) no-repeat;
68
- background-position: right;
69
- background-size: contain;
70
- }
71
-
72
- #elementskit-sites-notice-id-elementskit-go-pro .button-primary {
73
- background: #f2295b;
74
- border-color: #f22930 #f22945 #f22945;
75
- box-shadow: 0 1px 0 #f22945;
76
- color: #fff;
77
- text-decoration: none;
78
- text-shadow: 0 -1px 1px #f22945, 1px 0 1px #f22945, 0 1px 1px #f22945, -1px 0 1px #f22945;
79
-
80
- padding: 0 24px;
81
- height: 44px;
82
- line-height: 44px;
83
- font-size: 16px;
84
- }
1
+ #adminmenu .toplevel_page_elementskit .wp-menu-image{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}#adminmenu .toplevel_page_elementskit .wp-menu-image img{width:16px!important;padding:0!important}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/admin-lib.css ADDED
@@ -0,0 +1 @@
 
1
+ .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail a>img,.attr-thumbnail>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:400;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s,-webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.attr-checkbox input[type=checkbox],.attr-checkbox-inline input[type=checkbox],.attr-radio input[type=radio],.attr-radio-inline input[type=radio]{position:absolute;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-checkbox label,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-radio label,.attr-has-success.attr-radio-inline label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-checkbox label,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-radio label,.attr-has-warning.attr-radio-inline label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-checkbox label,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-radio label,.attr-has-error.attr-radio-inline label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:400;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{-webkit-box-shadow:none;box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-attr-toggle=buttons]>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn input[type=radio],[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group .attr-form-control,.attr-input-group-addon,.attr-input-group-btn{display:table-cell}.attr-input-group .attr-form-control:not(:first-child):not(:last-child),.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:400;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group .attr-form-control:first-child,.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group .attr-form-control:last-child,.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container .attr-navbar-brand,.attr-navbar>.attr-container-fluid .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container .attr-jumbotron,.attr-container-fluid .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail a>img,.attr-thumbnail>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:700}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out,-webkit-transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{opacity:0}.attr-modal-backdrop.attr-in{opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-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}.attr-tooltip.attr-in{opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-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}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out,-webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}.attr-nav-tabs .ekit-admin-nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border-top:1px solid #e0e4e9;border-left:2px solid transparent;-webkit-transition:all .1s ease-out;-o-transition:all .1s ease-out;transition:all .1s ease-out;background-color:#f1f1f1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all .4s ease;-o-transition:all .4s ease;transition:all .4s ease;border-radius:0}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title{font-size:.8125rem;font-weight:700;color:#121116;display:block;margin-bottom:2px;line-height:1}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-subtitle{color:#72777c;font-size:.8125rem;-webkit-transition:all 150ms ease-out;-o-transition:all 150ms ease-out;transition:all 150ms ease-out}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-tab-icon{color:#72777c;font-size:1.4375rem;-webkit-transition:all .4s ease;-o-transition:all .4s ease;transition:all .4s ease}.attr-nav-tabs .attr-active>a,.attr-nav-tabs>li>a:focus,.attr-nav-tabs>li>a:hover{background-color:#fff;border-left-color:#f2295b}.attr-nav-tabs .attr-active>a .ekit-admin-tab-icon,.attr-nav-tabs .attr-active>a .ekit-admin-title,.attr-nav-tabs>li>a:focus .ekit-admin-tab-icon,.attr-nav-tabs>li>a:focus .ekit-admin-title,.attr-nav-tabs>li>a:hover .ekit-admin-tab-icon,.attr-nav-tabs>li>a:hover .ekit-admin-title{color:#f2295b}.ekit-admin-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:9px;border-bottom:1px solid #e0e4e9;margin-bottom:8px}.ekit-admin-header-title{font-size:1rem;font-weight:700;color:#f2295b;margin-bottom:0}.ekit-admin-help{color:#0073aa;font-weight:700;font-size:.75rem}.ekit-admin-help>i{padding-right:5px}.ekit-admin-input-switch{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1;-ms-flex-item-align:end;align-self:flex-end}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch::after{left:30px;background-color:#f2295b;color:#f2295b}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch::before{border-color:#f2295b;text-indent:52px}.ekit-admin-input-switch .ekit-admin-control-label{cursor:pointer;margin-bottom:0;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ekit-admin-input-switch .ekit-admin-control-label-switch{position:relative;overflow:hidden;width:52px;height:26px;display:inline-block;margin-left:10px}.ekit-admin-input-switch .ekit-admin-control-label-switch::after,.ekit-admin-input-switch .ekit-admin-control-label-switch::before{position:absolute;-webkit-transition:all .3s cubic-bezier(.22,.61,.36,1);-o-transition:all .3s cubic-bezier(.22,.61,.36,1);transition:all .3s cubic-bezier(.22,.61,.36,1);font-weight:700;font-size:.6875rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box}.ekit-admin-input-switch .ekit-admin-control-label-switch::before{content:attr(data-inactive);top:0;left:0;width:100%;height:100%;background-color:#fff;border:#444 solid 1px;border-radius:26px;text-indent:24px}.ekit-admin-input-switch .ekit-admin-control-label-switch::after{position:absolute;top:4px;left:4px;display:block;content:attr(data-active);width:18px;height:18px;background-color:#444;border-radius:100%;-webkit-transition:all .3s cubic-bezier(.22,.61,.36,1);-o-transition:all .3s cubic-bezier(.22,.61,.36,1);transition:all .3s cubic-bezier(.22,.61,.36,1);text-indent:-22px;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-admin-input-switch .ekit-admin-control-input{opacity:0;z-index:-1;position:absolute}.ekit-admin-section-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative;border-bottom:1px solid #e0e4e9;padding-bottom:24px;margin-bottom:48px}.ekit-admin-section-header::before{content:'';position:absolute;display:block;width:48px;height:2px;bottom:-1px;left:0;background:#f2295b}.ekit-admin-section-heaer-title{position:relative;font-size:1.625rem;font-weight:600;margin-bottom:0;line-height:1}.ekit-admin-section-heaer-title::before{content:"\f15b";font-family:FontAwesome;display:inline-block;width:48px;height:48px;line-height:48px;margin-right:24px;background-color:#fee9ee;color:#f2295b;text-align:center;border-radius:3px;vertical-align:middle;font-size:20px}.ekit-admin-fields-container{font-size:.875rem;color:#666}.custom-control .custom-control-label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;color:#121116;font-size:.875rem}.custom-control .custom-control-input:checked~.custom-control-label::before{border-color:#19073b;background-color:#19073b;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input:checked~.custom-control-label::after{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input .custom-control-label::after,.custom-control .custom-control-input .custom-control-label::before{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:all .4s ease;-o-transition:all .4s ease;transition:all .4s ease}.custom-control .custom-control-input .custom-control-label::after{background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.ekit-admin-fields-container-fieldset{margin-top:16px}.attr-nav-tabs{margin-top:0}.attr-nav-tabs>li{width:100%}.attr-nav-tabs>li>a{margin-right:0}@media (max-width:320px){:root{font-size:13px}}@media (max-width:480px){:root{font-size:14px}}@media (max-width:991px){:root{font-size:13px}.section-padding{padding:75px 0}.section-padding-medium{padding:60px 0}.section-padding-medium-bottom{padding-bottom:60px}.section-padding-medium-top{padding-top:60px}}@media (min-width:992px){.ekit-admin-right-content{width:70%}}@media (min-width:992px) and (max-width:1199px){.ekit-admin-right-content{width:100%;padding:0}.ekit-admin-feature-request-section .ekit-admin-right-content,.ekit-admin-support-section .ekit-admin-right-content{padding-left:20px}#v-elementskit-userdata .ekit-admin-fields-container{max-width:75%}.ekit-admin-rate-now-section .ekit-admin-right-content{padding-bottom:20px}.ekit-admin-fields-container-description{width:100%}}@media (max-width:991px){.ekit-admin-fields-container-description{width:100%}.ekit-admin-right-content{width:100%;padding:0}.ekit-admin-feature-request-section .ekit-admin-right-content,.ekit-admin-support-section .ekit-admin-right-content{padding-left:20px}#v-elementskit-userdata .ekit-admin-fields-container{max-width:75%}}@media (max-width:480px){.ekti-admin-video-tutorial-iframe iframe{max-width:300px;height:auto}.ekit-admin-video-tutorial-list a h2{font-size:16px}.ekit_accordion_card:not(:last-child){margin-bottom:15px}.ekit_accordion_card .attr-btn{padding:16px;font-size:12px;padding-left:20px}.ekit-admin-right-content--link{font-size:12px;padding:10px 15px}.ekit-admin-right-content--heading h2{font-size:20px}.ekit-admin-right-content--heading__sub-title{font-size:50px}.ekit-admin-right-content p{font-size:16px;line-height:25px}.ekit-admin-right-content--form input{height:50px;padding:0 25px}.ekit-admin-right-content--form button{width:45px;height:45px}.ekit-admin-section-heaer-title{margin-bottom:10px;font-size:14px}.ekit-admin-input-switch .ekit-admin-settings-form-submit{font-size:12px;padding:9px 18px}.ekit-admin-section-header{font-size:15px}.ekit-admin-section-header .ekit-admin-input-switch{-ms-flex-item-align:center;-ms-grid-row-align:center;align-self:center}.ekit_accordion_card .attr-panel-body{padding:20px}.ekit-admin-fields-container-description{font-size:15px;line-height:22px}#v-elementskit-userdata .ekit-admin-fields-container{max-width:100%}#v-elementskit-userdata:before{background-size:contain;width:100%;height:100%}.ekit-admin-section{padding:30px 0}.ekit-admin-video-tutorial-list{display:block}.ekit-admin-video-tutorial-list .ekit-admin-video-tutorial-item{margin-bottom:15px}.ekit-admin-video-tutorial-list .ekit-admin-video-tutorial-item:last-child{margin-bottom:0}.ekit-admin-dual-layout{display:block}.ekit-admin-dual-layout.ekit-admin-rate-now-section .ekit-admin-left-thumb,.ekit-admin-dual-layout.ekit-admin-subscribed-section .ekit-admin-left-thumb{margin:0;margin-top:50px}.ekit-admin-dual-layout .ekit-admin-left-thumb{margin-bottom:50px}}
libs/framework/assets/css/admin-style-ems-dev.css CHANGED
@@ -1,172 +1 @@
1
- @-webkit-keyframes infinite-spinning {
2
- from {
3
- -webkit-transform: rotate(0deg);
4
- transform: rotate(0deg);
5
- }
6
- to {
7
- -webkit-transform: rotate(360deg);
8
- transform: rotate(360deg);
9
- }
10
- }
11
-
12
- @keyframes infinite-spinning {
13
- from {
14
- -webkit-transform: rotate(0deg);
15
- transform: rotate(0deg);
16
- }
17
- to {
18
- -webkit-transform: rotate(360deg);
19
- transform: rotate(360deg);
20
- }
21
- }
22
-
23
- .ekit-spinner {
24
- display: none;
25
- position: relative;
26
- width: 18px;
27
- height: 18px;
28
- border-radius: 18px;
29
- background: rgba(0, 0, 0, 0.5);
30
- -webkit-animation: infinite-spinning 1.08s linear infinite;
31
- animation: infinite-spinning 1.08s linear infinite;
32
- vertical-align: middle;
33
- margin-right: 7px;
34
- top: -1px;
35
- }
36
- .is-loading .ekit-spinner{
37
- display: inline-block;
38
- }
39
- .ekit-spinner:after {
40
- content: "";
41
- position: absolute;
42
- top: 2px;
43
- left: 50%;
44
- width: 4px;
45
- height: 4px;
46
- border-radius: 4px;
47
- margin-left: -2px;
48
- background: #fff;
49
- }
50
- .attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title {
51
- -webkit-transition: all 150ms ease-out;
52
- -o-transition: all 150ms ease-out;
53
- transition: all 150ms ease-out;
54
- }
55
- .ekit-admin-fields-container-description {
56
- margin-bottom: 16px;
57
- }
58
-
59
- .ekit-admin-dashboard-banner {
60
- width: 100%;
61
- }
62
-
63
- .xx {
64
- margin: 16px 0 0 0!important;
65
- }
66
-
67
- .ekit-admin-input-text {
68
- margin-top: 2rem;
69
- }
70
-
71
- .ekit-admin-section-heaer-title > i {
72
- display: inline-block;
73
- width: 48px;
74
- height: 48px;
75
- line-height: 48px!important;
76
- margin-right: 24px;
77
- background-color: #fee9ee;
78
- color: #f2295b;
79
- text-align: center;
80
- border-radius: 3px;
81
- vertical-align: middle;
82
- font-size: 20px;
83
- }
84
- .attr-card-body{
85
- position: relative;
86
- overflow: hidden;
87
- }
88
- .ekit-admin-section-heaer-title::before {
89
- display: none;
90
- }
91
- img{
92
- max-width: 100%;
93
- }
94
- .ekit-content-type-pro .ekit-admin-input-switch:before{
95
- content: "PRO";
96
- font-size: 11px;
97
- padding: 1px 0;
98
- color: #ffffff;
99
- text-transform: uppercase;
100
- text-align: center;
101
- transform: rotate(-45deg);
102
- position: absolute;
103
- top: 7px;
104
- left: -14px;
105
- width: 55px;
106
- background-image: -moz-linear-gradient( -122deg, rgb(148, 113, 255) 0%, rgb(242, 41, 91) 100% );
107
- background-image: -webkit-linear-gradient( -122deg, rgb(148, 113, 255) 0%, rgb(242, 41, 91) 100% );
108
- box-shadow: 0px 3px 7px 0px rgba(0, 5, 41, 0.1);
109
- }
110
-
111
- .ekit-content-type-pro .ekit-admin-input-switch:after {
112
- position: absolute;
113
- content: "";
114
- top: 0;
115
- left: 0;
116
- height: 100%;
117
- width: 100%;
118
- /* background-color: #fff; */
119
- opacity: .4
120
- }
121
- .modal-backdrop.attr-fade {
122
- position: fixed;
123
- top: 0;
124
- left: 0;
125
- width: 100vw;
126
- height: 100vh;
127
- background-color: rgba(0, 0, 0, 0.5);
128
- }
129
- .ekit-go-pro-con{
130
- margin-top: 50px;
131
- }
132
-
133
- .ekit-go-pro-con .icon {
134
- font-size: 90px;
135
- /* color: #339417; */
136
- color: #f2295b;
137
- opacity: 0.3;
138
- }
139
- .ekit-go-pro-con h2 {
140
- font-size: 44px;
141
- margin: 56px 0 34px 0;
142
- }
143
- .ekit-go-pro-con p {
144
- font-size: 20px;
145
- font-weight: 300;
146
- line-height: 1.2;
147
- }
148
- .ekit-go-pro-con .attr-modal-body {
149
- padding: 30px 15px;
150
- }
151
- #v-elementskit-ekit-go-pro-nav-tab .ekit-admin-tab-icon{
152
- height: 40px;
153
- overflow: visible;
154
- }
155
- .ekit-go-pro-gif{
156
- height: 58px;
157
- position: absolute;
158
- top: 9px;
159
- right: 25px;
160
- transform: rotate(32deg);
161
- opacity: .55;
162
- }
163
- .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus, .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover {
164
- /* background-color: #eaeaea; */
165
- border-left-color: #79b679;
166
- }
167
- .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus .ekit-go-pro-gif, .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover .ekit-go-pro-gif {
168
- filter: invert(1) brightness(50%) sepia(100%) saturate(10000%) hue-rotate(126deg);
169
- }
170
- .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab .ekit-admin-title {
171
- color: #79b679;
172
- }
1
+ @-webkit-keyframes infinite-spinning{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes infinite-spinning{from{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.ekit-spinner{display:none;position:relative;width:18px;height:18px;border-radius:18px;background:rgba(0,0,0,.5);-webkit-animation:infinite-spinning 1.08s linear infinite;animation:infinite-spinning 1.08s linear infinite;vertical-align:middle;margin-right:7px;top:-1px}.is-loading .ekit-spinner{display:inline-block}.ekit-spinner:after{content:"";position:absolute;top:2px;left:50%;width:4px;height:4px;border-radius:4px;margin-left:-2px;background:#fff}.ekit-admin-fields-container-description{margin-bottom:16px}.ekit-admin-dashboard-banner{width:100%}.xx{margin:16px 0 0 0!important}.ekit-admin-input-text{margin-top:2rem}.ekit-admin-section-heaer-title>i{display:inline-block;width:48px;height:48px;line-height:48px!important;margin-right:24px;background-color:#fee9ee;color:#f2295b;text-align:center;border-radius:3px;vertical-align:middle;font-size:20px}.attr-card-body{position:relative;overflow:hidden}.ekit-admin-section-heaer-title::before{display:none}.ekit_tab_wraper{margin:0 15px}.btn-license-activate{border-radius:4px!important;margin:0 0 0 15px!important}.ekit-admin-form{margin-top:30px}@keyframes Gradient{0%,100%{background-position:0 50%}50%{background-position:100% 50%}}a.toplevel_page_elementskit.wp-menu-open{background:linear-gradient(-45deg,#ee7752,#e73c7e,#23a6d5,#23d5ab)!important;animation:Gradient 15s ease infinite;background-size:400% 400%!important;color:#fff!important}#adminmenu .toplevel_page_elementskit .wp-menu-image img{opacity:1}#ekit-admin-option-text-elementskit-license-key{color:#f2295b}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/admin-style.css CHANGED
@@ -1,140 +1 @@
1
- #ekit-admin-settings-form {
2
- margin-top: 30px; }
3
-
4
- .ekit_tab_wraper_group {
5
- margin-right: 0;
6
- margin-left: 0; }
7
-
8
- .attr-tab-content {
9
- background-color: #FFFFFF;
10
- padding: 32px 24px; }
11
-
12
- .ekit-admin-section-heaer-title {
13
- margin-top: 0px; }
14
-
15
- .ekit-admin-nav .ekit-admin-nav-link {
16
- text-decoration: none; }
17
- .ekit-admin-nav .ekit-admin-nav-link:focus {
18
- outline: none;
19
- -webkit-box-shadow: none;
20
- box-shadow: none; }
21
-
22
- .ekit-admin-nav .ekit-admin-title {
23
- text-transform: uppercase; }
24
-
25
- .attr-btn {
26
- cursor: pointer; }
27
-
28
- .ekit_container {
29
- width: 100%; }
30
-
31
- .ekit-admin-card-shadow {
32
- border-radius: 3px;
33
- border: 1px solid rgba(0, 0, 0, 0.05);
34
- -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
35
- box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3); }
36
-
37
- .attr-input-switch {
38
- margin-bottom: 10px; }
39
-
40
- .ekit-admin-input-switch .ekit-admin-control-label {
41
- -webkit-box-pack: justify;
42
- -ms-flex-pack: justify;
43
- justify-content: space-between;
44
- font-weight: 700; }
45
-
46
- #adminmenu .toplevel_page_elementskit:hover .wp-menu-image img, #adminmenu .toplevel_page_elementskit.current .wp-menu-image img {
47
- opacity: 1; }
48
-
49
- #adminmenu .toplevel_page_elementskit .wp-menu-image {
50
- display: -webkit-box;
51
- display: -ms-flexbox;
52
- display: flex;
53
- -webkit-box-align: center;
54
- -ms-flex-align: center;
55
- align-items: center;
56
- -webkit-box-pack: center;
57
- -ms-flex-pack: center;
58
- justify-content: center; }
59
- #adminmenu .toplevel_page_elementskit .wp-menu-image img {
60
- opacity: .6;
61
- padding: 0px;
62
- width: 18px;
63
- -webkit-transition: all 0.4s ease;
64
- -o-transition: all 0.4s ease;
65
- transition: all 0.4s ease; }
66
-
67
- .ekit-admin-input-text {
68
- margin-bottom: 0px;
69
- margin-top: 0 !important; }
70
- .ekit-admin-input-text:not(:last-child) {
71
- margin-bottom: 2rem; }
72
- .ekit-admin-input-text > label {
73
- font-weight: 700;
74
- margin-bottom: 7px;
75
- display: inline-block; }
76
- .ekit-admin-input-text .attr-form-control {
77
- border-radius: 3px;
78
- border: 1px solid rgba(0, 0, 0, 0.05);
79
- -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
80
- box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3); }
81
-
82
- .ekit_logo {
83
- padding: 32px 0 24px; }
84
-
85
- .ekit-admin-input-text .attr-form-control::-moz-placeholder {
86
- color: rgba(0, 0, 0, 0.3); }
87
-
88
- .ekit-admin-input-text .attr-form-control:-moz-placeholder {
89
- color: rgba(0, 0, 0, 0.3); }
90
-
91
- .ekit-admin-input-text .attr-form-control:-ms-input-placeholder {
92
- color: rgba(0, 0, 0, 0.3); }
93
-
94
- .ekit-admin-input-text .attr-form-control::-webkit-input-placeholder {
95
- color: rgba(0, 0, 0, 0.3); }
96
-
97
- .ekit_accordion_card {
98
- background-color: #f5f5f5; }
99
- .ekit_accordion_card:not(:last-child) {
100
- margin-bottom: 30px; }
101
- .ekit_accordion_card .card-header {
102
- padding: 0px;
103
- border-bottom: 0px solid #000; }
104
- .ekit_accordion_card .attr-btn {
105
- display: block;
106
- text-decoration: none;
107
- width: 100%;
108
- text-align: left;
109
- padding: 10px 20px;
110
- color: #333;
111
- font-weight: 700;
112
- cursor: pointer; }
113
- .ekit_accordion_card .attr-btn[aria-expanded="true"] {
114
- color: #f2295b; }
115
- .ekit_accordion_card .attr-btn:focus {
116
- -webkit-box-shadow: none;
117
- box-shadow: none; }
118
- .ekit_accordion_card .attr-panel-heading {
119
- padding: 0px;
120
- border-radius: 0px;
121
- background-color: rgba(0, 0, 0, 0.03); }
122
-
123
- [class^="attr"] {
124
- -webkit-box-sizing: border-box;
125
- box-sizing: border-box; }
126
-
127
- .attr-btn-primary {
128
- color: #fff;
129
- background-color: #f2295b;
130
- border-color: #f2295b;
131
- text-decoration: none; }
132
-
133
- .attr-card-body {
134
- padding: 1.25rem; }
135
- .attr-card-body .attr-card-title {
136
- margin-top: 0px;
137
- margin-bottom: 0.75rem; }
138
-
139
- .ekit-admin-dashboard-banner {
140
- display: block; }
1
+ body.toplevel_page_elementskit{overflow-y:scroll}#ekit-admin-settings-form{margin-top:30px}.ekit_tab_wraper_group{margin-right:0;margin-left:0}.ekit_tab_wraper_group>div:first-of-type{padding-right:0}.ekit_tab_wraper_group>div:last-of-type{padding-left:0}.ekit_tab_wraper_group .attr-tab-pane{min-height:500px}.attr-tab-content{background-color:#fff;padding:30px;border-radius:20px}.ekit-admin-section-heaer-title{margin-top:0;color:#f2295b;font-size:24px;line-height:28px;font-weight:700;vertical-align:middle;display:flex;justify-content:center;align-items:center}.ekit-admin-section-heaer-title i{font-size:18px;line-height:18px!important;color:#f2295b;width:40px;height:40px;background-color:#fde9ee;border-radius:5px;display:inline-flex;vertical-align:middle;text-align:center;align-items:center;justify-content:center;margin-right:13px}.ekit-admin-nav .attr-nav-tabs{border:none}.ekit-admin-nav li{background-color:#fff}.ekit-admin-nav li.attr-active{border-top-left-radius:10px;border-bottom-left-radius:10px}.ekit-admin-nav li.attr-active .ekit-admin-nav-link{border-radius:10px}.ekit-admin-nav li.attr-active .ekit-admin-nav-link:before{content:"";background-color:#f2295b;height:10px;width:10px;position:absolute;left:17px;border-radius:100px;top:50%;transform:translateY(-50%)}.ekit-admin-nav li.attr-active .ekit-admin-nav-link:hover{background-color:#fff}.ekit-admin-nav .ekit-admin-nav-link{text-decoration:none;border:none;padding:23px 40px}.ekit-admin-nav .ekit-admin-nav-link .ekit-admin-tab-icon{color:#121116}.ekit-admin-nav .ekit-admin-nav-link.top{border-bottom-right-radius:30px}.ekit-admin-nav .ekit-admin-nav-link.bottom{border-top-right-radius:30px}.ekit-admin-nav .ekit-admin-nav-link.ekit-admin-nav-hidden{background-color:#f1f1f1;cursor:default;padding:15px}.ekit-admin-nav .ekit-admin-nav-link:hover{background-color:#f1f1f1}.ekit-admin-nav .ekit-admin-nav-link:focus{outline:0;box-shadow:none}.ekit-admin-nav .ekit-admin-title{text-transform:uppercase;color:#f2295b;font-size:14px;line-height:16px;font-weight:700}.attr-btn{cursor:pointer}.ekit_container{width:100%}.ekit-admin-card-shadow{border-radius:3px;border:1px solid rgba(0,0,0,.05);box-shadow:0 6px 20px 0 rgba(194,204,222,.3)}#ekit-admin-settings-form .ekit-admin-card{margin-bottom:50px;border-radius:20px}.attr-input-switch{margin-bottom:10px;position:relative}.ekit-admin-input-switch .ekit-admin-control-label{justify-content:space-between;font-weight:600;font-size:14px;line-height:16px;color:#121116;padding:23px 26px}#adminmenu .toplevel_page_elementskit.current .wp-menu-image img,#adminmenu .toplevel_page_elementskit:hover .wp-menu-image img{opacity:1}#adminmenu .toplevel_page_elementskit .wp-menu-image{display:flex;align-items:center;justify-content:center}#adminmenu .toplevel_page_elementskit .wp-menu-image img{opacity:.6;padding:0;width:18px;transition:all .4s ease}.ekit-admin-input-text{margin-bottom:0;margin-top:0!important}.ekit-admin-input-text:not(:last-child){margin-bottom:0}.ekit-admin-input-text>label{font-weight:700;margin-bottom:7px;display:inline-block;color:#121116;font-size:14px;line-height:16px}.ekit-admin-input-text .attr-form-control{border-radius:5px;padding:8px 30px;height:54px;box-sizing:border-box;font-size:14px;line-height:28px;display:inline-block;color:rgba(18,17,22,.4);border:none;box-shadow:none;color:#121116}.ekit-admin-input-text .attr-form-control:focus{border:1px solid #f2295b;box-shadow:none;outline:0}#ekit-admin-license-form .attr-form-control{border-radius:3px;border:1px solid rgba(0,0,0,.05);box-shadow:0 6px 20px 0 rgba(194,204,222,.3)}.ekit-admin-license-form-submit{border-radius:5px;padding:8px 30px;height:54px;box-sizing:border-box}.ekit_logo{padding-top:35px}.ekit-admin-input-text .attr-form-control::-moz-placeholder{color:rgba(0,0,0,.3)}.ekit-admin-input-text .attr-form-control:-moz-placeholder{color:rgba(0,0,0,.3)}.ekit-admin-input-text .attr-form-control:-ms-input-placeholder{color:rgba(0,0,0,.3)}.ekit-admin-input-text .attr-form-control::-webkit-input-placeholder{color:rgba(0,0,0,.3)}.ekit_accordion_card{background-color:#f5f5f5;border-radius:20px}.ekit_accordion_card:not(:last-child){margin-bottom:30px}.ekit_accordion_card .ekit-admin-input-text:not(:last-child){margin-bottom:30px}.ekit_accordion_card .attr-panel-body{padding:30px;padding-top:0}.ekit_accordion_card .card-header{padding:0;border-bottom:0 solid #000}.ekit_accordion_card .attr-btn{display:block;text-decoration:none;width:100%;text-align:left;padding:29px 30px;color:#333;font-weight:700;cursor:pointer;font-size:14px;line-height:16px;text-transform:uppercase;position:relative;transition:all .4s}.ekit_accordion_card .attr-btn:before{content:"\f107";color:#121116;font-size:16px;font-family:fontawesome;position:absolute;right:30px;top:50%;transform:translateY(-50%)}.ekit_accordion_card .attr-btn[aria-expanded=true]{color:#f2295b}.ekit_accordion_card .attr-btn[aria-expanded=true]:before{content:"\f106";color:#f2295b}.ekit_accordion_card .attr-btn:focus{box-shadow:none}.ekit_accordion_card .attr-panel-heading{padding:0;border-radius:0}[class^=attr]{box-sizing:border-box}.attr-btn-primary{color:#fff;background-color:#f2295b;border-color:#f2295b;text-decoration:none}.attr-btn-primary:focus,.attr-btn-primary:hover{background-color:#f2295b;border-color:#f2295b;outline:0}.attr-card-body{padding:1.25rem}.attr-card-body .attr-card-title{margin-top:0;margin-bottom:.75rem}.ekit-admin-dashboard-banner{display:block}.ekit-admin-save-icon{color:#fff;font-size:14px;margin-right:6px;height:14px;width:14px}.ekit-admin-input-switch .ekit-admin-settings-form-submit{background-color:#f2295b;border-radius:27px;box-shadow:0 7px 15px rgba(242,41,91,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:700;border:none;padding:12px 23px;transition:all .4s;display:flex;align-items:center}.ekit-admin-input-switch .ekit-admin-settings-form-submit:focus,.ekit-admin-input-switch .ekit-admin-settings-form-submit:hover{background-color:#ad0730;outline:0}.ekit-admin-section-header{padding-bottom:17px;margin-bottom:30px}.ekit-admin-section-header.fixed{position:fixed;top:0;padding-top:30px;background-color:#fff;z-index:1}.ekit-admin-section-header.fixed+div{margin-top:90px}.ekit-admin-dual-layout{display:flex;align-items:center}.ekit-admin-dual-layout .ekit-admin-right-content{margin:0}.ekit-admin-dual-layout .ekit-admin-right-content--heading__sub-title{left:0;transform:inherit}.ekit-admin-section{padding:50px 30px}.ekit-admin-section:last-of-type{padding-bottom:0}.ekit-admin-right-content{padding:0 50px;width:50%;box-sizing:border-box;margin:0 auto}.ekit-admin-right-content p{color:#121116;font-size:18px;line-height:28px}.ekit-admin-right-content p:last-of-type{margin-bottom:0}.ekit-admin-right-content--form{position:relative;max-width:300px}.ekit-admin-right-content--form input{height:54px;background-color:#2d3cfe;border:none;box-shadow:none;border-radius:27px;padding:0 30px;color:#fff;font-size:14px;box-shadow:0 7px 15px rgba(45,60,254,.3);padding-right:70px}.ekit-admin-right-content--form input::-moz-placeholder{color:#fff;opacity:.5}.ekit-admin-right-content--form input:-ms-input-placeholder{color:#fff;opacity:.5}.ekit-admin-right-content--form input::placeholder{color:#fff;opacity:.5}.ekit-admin-right-content--form input:focus{outline:0;border:none;box-shadow:0 7px 15px rgba(45,60,254,.3)}.ekit-admin-right-content--form button{width:48px;height:48px;background-color:#fff;border-radius:100px;color:#2d3cfe;position:absolute;right:2px;top:50%;border-color:transparent;transition:all .4s;transform:translateY(-50%)}.ekit-admin-right-content--form button:focus,.ekit-admin-right-content--form button:hover{outline:0;box-shadow:none;background-color:inherit;border:1px solid #fff}.ekit-admin-right-content--form button i{font-size:18px;line-height:16px}.ekit-admin-right-content--heading{position:relative}.ekit-admin-right-content--heading h2{color:#f2295b;font-size:24px;line-height:28px;font-weight:700;letter-spacing:-1px}.ekit-admin-right-content--heading__sub-title{font-size:60px;line-height:69px;color:#000;opacity:.05;letter-spacing:-1px;font-weight:700;position:absolute;bottom:0;left:50%;transform:translateX(-50%)}.ekit-admin-right-content--button,.ekit-admin-right-content--form{margin-top:45px}.ekit-admin-right-content--link{display:inline-block;border-radius:27px;background-color:#f2295b;box-shadow:0 7px 15px rgba(242,41,91,.3);border:none;font-size:14px;line-height:16px;font-weight:700;text-transform:uppercase;padding:19px 34px;transition:all .4s}.ekit-admin-right-content--link i{margin-right:7px}.ekit-admin-right-content--link:focus,.ekit-admin-right-content--link:hover{background-color:#ad0730}.ekit-admin-subscribed-section .ekit-admin-right-content--heading h2{color:#2d3cfe}.ekit-admin-support-section .ekit-admin-right-content--heading h2{color:#00be75}.ekit-admin-support-section .ekit-admin-right-content--link{background-color:#00be75;box-shadow:0 7px 15px rgba(0,190,117,.3)}.ekit-admin-support-section .ekit-admin-right-content--link:focus,.ekit-admin-support-section .ekit-admin-right-content--link:hover{background-color:#108458}.ekit-admin-subscribed-section,.ekit-admin-support-section{justify-content:space-between}.ekit-admin-rate-now-section{justify-content:space-between}.ekit-admin-rate-now-section .ekit-admin-right-content p span{color:#fec42d}.ekit-admin-rate-now-section .ekit-admin-right-content--heading h2{color:#fec42d}.ekit-admin-rate-now-section .ekit-admin-right-content--link{background-color:#fec42d;box-shadow:0 7px 15px rgba(254,196,45,.3)}.ekit-admin-rate-now-section .ekit-admin-right-content--link:focus,.ekit-admin-rate-now-section .ekit-admin-right-content--link:hover{background-color:#dea203}.ekit-admin-except-title p{font-size:24px;line-height:25px}.ekit-admin-except-title p span{display:block;font-weight:700}.ekit-admin-left-thumb img{max-width:100%}.ekit-admin-faq-section .ekit-admin-accordion{max-width:700px;margin:0 auto;margin-top:30px}.ekit-admin-single-accordion{background-color:#fff;box-shadow:0 7px 15px rgba(0,0,0,.07);margin:10px 0}.ekit-admin-single-accordion.active .ekit-admin-single-accordion--heading:after{content:'\f106';color:#f2295b}.ekit-admin-single-accordion--heading{cursor:pointer;margin:0;color:#121116;font-size:14px;line-height:20px;padding:18px 20px;position:relative}.ekit-admin-single-accordion--heading:after{content:'\f107';font-family:fontawesome;position:absolute;right:30px;top:50%;transform:translateY(-50%);font-size:12px}.ekit-admin-single-accordion--body{padding:0;display:none}.ekit-admin-single-accordion--body__content{padding:30px;padding-top:0}.ekit-admin-single-accordion--body p{margin:0}.ekit-admin-video-tutorial-list{display:flex;justify-content:space-between;align-items:center;margin-top:30px}.ekit-admin-video-tutorial-list a{text-decoration:none}.ekit-admin-video-tutorial-list a h2{font-size:18px;line-height:20px;text-align:center;display:block}.ekit-admin-video-tutorial-list .tutorial-thumb{position:relative}.ekit-admin-video-tutorial-list .tutorial-thumb:before{content:'';background-image:url(../images/video-icon.png);display:inline-block;height:30px;width:30px;background-color:#fff;padding:20px;background-repeat:no-repeat;border-radius:100px;box-shadow:0 7px 15px rgba(0,0,0,.1);background-position:center;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%)}.ekit-admin-video-tutorial-list .tutorial-thumb img{max-width:100%;display:block}.ekti-admin-video-tutorial-popup{position:fixed;background-color:rgba(0,0,0,.5);width:100%;height:100%;left:0;top:0;overflow-y:auto;z-index:10000;opacity:0;visibility:hidden;transition:all .4s}.ekti-admin-video-tutorial-popup.show{opacity:1;visibility:visible}.ekti-admin-video-tutorial-popup.show .ekti-admin-video-tutorial-popup-content{transform:translate(-50%,-50%) scale(1)}.ekti-admin-video-tutorial-popup .ekti-admin-video-tutorial-popup-content{position:absolute;top:50%;left:50%;transition:all .7s;transform:translate(-50%,-50%) scale(0)}.ekti-admin-video-tutorial-close{position:absolute;top:-10px;right:-6px;cursor:pointer;background-color:#ce1b04;border-radius:100px;width:30px;height:30px;box-sizing:border-box;text-align:center;line-height:33px}.ekti-admin-video-tutorial-close i{color:#fff;font-size:20px}.ekit-admin-access-token{text-decoration:none;color:#f2295b;text-align:right;display:block;font-size:16px;font-weight:600}.ekit-admin-access-token:focus,.ekit-admin-access-token:hover{color:#cd1c48;outline:0}#v-elementskit-userdata{padding-bottom:150px;position:relative;z-index:1}#v-elementskit-userdata .ekit-admin-fields-container{max-width:60%}#v-elementskit-userdata:before{content:'';background-image:url(../images/user-data-thumb.png);position:absolute;display:block;bottom:0;right:0;height:281px;width:444px;display:block;background-repeat:no-repeat;background-position:right bottom;z-index:-1}.ekit-admin-fields-container-description{font-size:18px;line-height:28px;color:#121116;width:55%;display:block}#v-elementskit-elements .ekit-admin-fields-container-fieldset,#v-elementskit-modules .ekit-admin-fields-container-fieldset{margin-top:20px}#v-elementskit-elements .ekit-admin-section-header,#v-elementskit-modules .ekit-admin-section-header{margin-bottom:20px}.ekit-admin-fields-container-fieldset .attr-row{margin-left:-10px;margin-right:-10px}.ekit-admin-fields-container-fieldset .attr-row>div{padding:0 10px}.ekit-admin-fields-container-fieldset .ekit-admin-card-shadow{background-color:#fff;border-radius:10px;box-shadow:none;border:1px solid #ededed;padding:0;margin:0;margin-bottom:20px}.ekit-admin-fields-container-fieldset .ekit-admin-card-shadow:hover{border-color:#f2295b}.ekit-admin-fields-container-fieldset .attr-input-switch:hover .ekit-admin-demo-tooltip{visibility:visible;opacity:1;top:-10px}.ekit-admin-user-data-separator{display:block;border:2px solid #fff;margin-bottom:30px;position:relative}.ekit-admin-user-data-separator:before{content:"";width:40px;height:4px;background-color:#f2295b;display:block;position:absolute;top:-2px;left:-2px}.ekit-admin-demo-tooltip{background-color:#121116;color:#fff;font-size:10px;line-height:13px;text-decoration:none;text-transform:uppercase;padding:2px 9px;border-radius:3px;display:inline-block;position:absolute;right:20px;top:0;opacity:0;visibility:hidden;transition:all .4s}.ekit-admin-demo-tooltip:focus,.ekit-admin-demo-tooltip:hover{color:#fff;border:none;box-shadow:none}.ekit-admin-demo-tooltip:before{content:"";border-left:8px solid transparent;border-right:8px solid transparent;border-top:8px solid #121116;position:absolute;bottom:-8px;left:50%;transform:translateX(-50%)}.ekit-admin-demo-tooltip i{margin-right:5px}.admin-bar .ekit-admin-section-header.fixed{top:30px}.ekit-go-pro-con{justify-content:center}.ekit-go-pro-close{float:right;font-size:21px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2;border:none;background-color:transparent;position:relative;z-index:9;cursor:pointer}.ekit-go-pro-close:focus{outline:0;border:none;box-shadow:none}.attr-modal-dialog-centered{display:flex;align-items:center;height:100vh}.modal-backdrop{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.5);z-index:1}.ekit-admin-input-text--elementskit-license-key{display:block}.ekit-admin-license-form-submit.btn-license-activate{background-color:#f2295b;border-radius:27px!important;box-shadow:0 7px 15px rgba(242,41,91,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:700;border:none;padding:12px 23px;transition:all .4s;margin-left:0!important;height:auto;display:flex;align-items:center}.ekit-admin-license-form-submit.btn-license-activate:focus,.ekit-admin-license-form-submit.btn-license-activate:hover{background-color:#ad0730;outline:0}.attr-input-group-btn{text-align:left;margin-top:0}.ekit-spinner{width:13px!important;height:13px!important;top:0!important}.attr-modal-content{box-shadow:none}.ekit-go-pro-con .attr-modal-body{padding:30px}.ekit-go-pro-con .attr-modal-body a{color:#f2295b}.elementskit-template-save-btn-editor{background-color:#ccc;border:none;display:inline-flex;align-items:center;color:#fff;border-radius:27px;box-shadow:0 7px 15px rgba(204,204,204,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:700;border:none;padding:12px 23px;transition:all .4s}.elementskit-template-save-btn-editor:active,.elementskit-template-save-btn-editor:focus,.elementskit-template-save-btn-editor:hover{color:#fff!important;background-color:#adadad!important;outline:0;border:none;box-shadow:0 7px 15px rgba(204,204,204,.3)!important}.elementskit-template-save-btn-editor img{max-width:14px;margin-right:5px}.elementskit-template-save-btn{background-color:#f2295b;border-radius:27px;box-shadow:0 7px 15px rgba(242,41,91,.3);font-size:14px;line-height:16px;text-transform:uppercase;color:#fff;font-weight:700;border:none;padding:12px 23px;transition:all .4s}.elementskit-template-save-btn:focus,.elementskit-template-save-btn:hover{background-color:#ad0730;outline:0}.attr-panel-heading.pro-disabled{position:relative;overflow:hidden;border-radius:20px!important}.attr-panel-heading.pro-disabled .attr-btn:before{display:none}.attr-panel-heading.pro-disabled:after{background-color:#f2295b;background-image:none;box-shadow:rgba(0,5,41,.1) 0 3px 7px 0;color:#fff;content:"PRO";display:block;font-size:10px;font-weight:600;height:25px;left:-41px;line-height:28px;padding-bottom:1px;padding-left:3px;padding-right:0;padding-top:1px;position:absolute;text-align:center;text-transform:uppercase;top:0;transform:matrix(.70711,-.70711,.70711,.70711,0,0);width:100px}.modal-backdrop.attr-fade{position:fixed;top:0;left:0;width:100vw;height:100vh;background-color:rgba(0,0,0,.5)}.ekit-go-pro-con{margin-top:50px}.ekit-go-pro-con .icon{font-size:90px;color:#f2295b;opacity:.3}.ekit-go-pro-con h2{font-size:44px;margin:56px 0 34px 0}.ekit-go-pro-con p{font-size:20px;font-weight:300;line-height:1.2}.ekit-go-pro-con .attr-modal-body{padding:30px 15px}#v-elementskit-ekit-go-pro-nav-tab .ekit-admin-tab-icon{height:40px;overflow:visible}.ekit-go-pro-gif{height:58px;position:absolute;top:9px;right:25px;transform:rotate(32deg);opacity:.55}.attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus,.attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover{border-left-color:#79b679}.attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus .ekit-go-pro-gif,.attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover .ekit-go-pro-gif{filter:invert(1) brightness(50%) sepia(100%) saturate(10000%) hue-rotate(126deg)}.attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab .ekit-admin-title{color:#79b679}.ekit-content-type-pro-disabled .ekit-admin-input-switch:before{background-color:#f2295b;background-image:none;box-shadow:rgba(0,5,41,.1) 0 3px 7px 0;color:#fff;content:"PRO";display:block;font-size:10px;font-weight:600;height:25px;left:-41px;line-height:28px;padding-bottom:1px;padding-left:3px;padding-right:0;padding-top:1px;position:absolute;text-align:center;text-transform:uppercase;top:0;transform:matrix(.70711,-.70711,.70711,.70711,0,0);width:100px}.attr-panel-heading.pro-disabled{position:relative;overflow:hidden;border-radius:20px!important}.attr-panel-heading.pro-disabled .attr-btn:before{display:none}.attr-panel-heading.pro-disabled:after{background-color:#f2295b;background-image:none;box-shadow:rgba(0,5,41,.1) 0 3px 7px 0;color:#fff;content:"PRO";display:block;font-size:10px;font-weight:600;height:25px;left:-41px;line-height:28px;padding-bottom:1px;padding-left:3px;padding-right:0;padding-top:6px;position:absolute;text-align:center;text-transform:uppercase;top:-4px;transform:matrix(.70711,-.70711,.70711,.70711,0,0);width:100px}.ekit-content-type-pro-disabled .ekit-admin-input-switch:after{position:absolute;content:"";top:0;left:0;height:100%;width:100%;opacity:.4}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/bootstrap/bootstrap.css DELETED
@@ -1,4216 +0,0 @@
1
- .attr-img-responsive, .attr-thumbnail > img, .attr-thumbnail a > img, .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
2
- display: block;
3
- max-width: 100%;
4
- height: auto; }
5
-
6
- .attr-img-rounded {
7
- border-radius: 6px; }
8
-
9
- .attr-img-thumbnail {
10
- display: inline-block;
11
- max-width: 100%;
12
- height: auto;
13
- padding: 4px;
14
- line-height: 1.42857143;
15
- background-color: #fff;
16
- border: 1px solid #ddd;
17
- border-radius: 4px;
18
- -webkit-transition: all .2s ease-in-out;
19
- -o-transition: all .2s ease-in-out;
20
- transition: all .2s ease-in-out; }
21
-
22
- .attr-img-circle {
23
- border-radius: 50%; }
24
-
25
- .attr-sr-only {
26
- position: absolute;
27
- width: 1px;
28
- height: 1px;
29
- padding: 0;
30
- margin: -1px;
31
- overflow: hidden;
32
- clip: rect(0, 0, 0, 0);
33
- border: 0; }
34
-
35
- .attr-sr-only-focusable:active, .attr-sr-only-focusable:focus {
36
- position: static;
37
- width: auto;
38
- height: auto;
39
- margin: 0;
40
- overflow: visible;
41
- clip: auto; }
42
-
43
- .attr-h1, .attr-h2, .attr-h3, .attr-h4, .attr-h5, .attr-h6 {
44
- font-family: inherit;
45
- font-weight: 500;
46
- line-height: 1.1;
47
- color: inherit; }
48
-
49
- .attr-h1 small, .attr-h2 small, .attr-h3 small, .attr-h4 small, .attr-h5 small, .attr-h6 small, h1 .attr-small, h2 .attr-small, h3 .attr-small, h4 .attr-small, h5 .attr-small, h6 .attr-small, .attr-h1 .attr-small, .attr-h2 .attr-small, .attr-h3 .attr-small, .attr-h4 .attr-small, .attr-h5 .attr-small, .attr-h6 .attr-small {
50
- font-weight: normal;
51
- line-height: 1;
52
- color: #777; }
53
-
54
- .attr-h1, .attr-h2, .attr-h3 {
55
- margin-top: 20px;
56
- margin-bottom: 10px; }
57
-
58
- .attr-h1 small, .attr-h2 small, .attr-h3 small, h1 .attr-small, .attr-h1 .attr-small, h2 .attr-small, .attr-h2 .attr-small, h3 .attr-small, .attr-h3 .attr-small {
59
- font-size: 65%; }
60
-
61
- .attr-h4, .attr-h5, .attr-h6 {
62
- margin-top: 10px;
63
- margin-bottom: 10px; }
64
-
65
- .attr-h4 small, .attr-h5 small, .attr-h6 small, h4 .attr-small, .attr-h4 .attr-small, h5 .attr-small, .attr-h5 .attr-small, h6 .attr-small, .attr-h6 .attr-small {
66
- font-size: 75%; }
67
-
68
- .attr-h1 {
69
- font-size: 36px; }
70
-
71
- .attr-h2 {
72
- font-size: 30px; }
73
-
74
- .attr-h3 {
75
- font-size: 24px; }
76
-
77
- .attr-h4 {
78
- font-size: 18px; }
79
-
80
- .attr-h5 {
81
- font-size: 14px; }
82
-
83
- .attr-h6 {
84
- font-size: 12px; }
85
-
86
- .attr-lead {
87
- margin-bottom: 20px;
88
- font-size: 16px;
89
- font-weight: 300;
90
- line-height: 1.4; }
91
-
92
- @media (min-width: 768px) {
93
- .attr-lead {
94
- font-size: 21px; } }
95
-
96
- .attr-small {
97
- font-size: 85%; }
98
-
99
- .attr-mark {
100
- padding: .2em;
101
- background-color: #fcf8e3; }
102
-
103
- .attr-text-left {
104
- text-align: left; }
105
-
106
- .attr-text-right {
107
- text-align: right; }
108
-
109
- .attr-text-center {
110
- text-align: center; }
111
-
112
- .attr-text-justify {
113
- text-align: justify; }
114
-
115
- .attr-text-nowrap {
116
- white-space: nowrap; }
117
-
118
- .attr-text-lowercase {
119
- text-transform: lowercase; }
120
-
121
- .attr-text-uppercase {
122
- text-transform: uppercase; }
123
-
124
- .attr-text-capitalize {
125
- text-transform: capitalize; }
126
-
127
- .attr-text-muted {
128
- color: #777; }
129
-
130
- .attr-text-primary {
131
- color: #337ab7; }
132
-
133
- a.attr-text-primary:hover, a.attr-text-primary:focus {
134
- color: #286090; }
135
-
136
- .attr-text-success {
137
- color: #3c763d; }
138
-
139
- a.attr-text-success:hover, a.attr-text-success:focus {
140
- color: #2b542c; }
141
-
142
- .attr-text-info {
143
- color: #31708f; }
144
-
145
- a.attr-text-info:hover, a.attr-text-info:focus {
146
- color: #245269; }
147
-
148
- .attr-text-warning {
149
- color: #8a6d3b; }
150
-
151
- a.attr-text-warning:hover, a.attr-text-warning:focus {
152
- color: #66512c; }
153
-
154
- .attr-text-danger {
155
- color: #a94442; }
156
-
157
- a.attr-text-danger:hover, a.attr-text-danger:focus {
158
- color: #843534; }
159
-
160
- .attr-bg-primary {
161
- color: #fff;
162
- background-color: #337ab7; }
163
-
164
- a.attr-bg-primary:hover, a.attr-bg-primary:focus {
165
- background-color: #286090; }
166
-
167
- .attr-bg-success {
168
- background-color: #dff0d8; }
169
-
170
- a.attr-bg-success:hover, a.attr-bg-success:focus {
171
- background-color: #c1e2b3; }
172
-
173
- .attr-bg-info {
174
- background-color: #d9edf7; }
175
-
176
- a.attr-bg-info:hover, a.attr-bg-info:focus {
177
- background-color: #afd9ee; }
178
-
179
- .attr-bg-warning {
180
- background-color: #fcf8e3; }
181
-
182
- a.attr-bg-warning:hover, a.attr-bg-warning:focus {
183
- background-color: #f7ecb5; }
184
-
185
- .attr-bg-danger {
186
- background-color: #f2dede; }
187
-
188
- a.attr-bg-danger:hover, a.attr-bg-danger:focus {
189
- background-color: #e4b9b9; }
190
-
191
- .attr-page-header {
192
- padding-bottom: 9px;
193
- margin: 40px 0 20px;
194
- border-bottom: 1px solid #eee; }
195
-
196
- .attr-list-unstyled {
197
- padding-left: 0;
198
- list-style: none; }
199
-
200
- .attr-list-inline {
201
- padding-left: 0;
202
- margin-left: -5px;
203
- list-style: none; }
204
-
205
- .attr-list-inline > li {
206
- display: inline-block;
207
- padding-right: 5px;
208
- padding-left: 5px; }
209
-
210
- @media (min-width: 768px) {
211
- .attr-dl-horizontal dt {
212
- float: left;
213
- width: 160px;
214
- overflow: hidden;
215
- clear: left;
216
- text-align: right;
217
- -o-text-overflow: ellipsis;
218
- text-overflow: ellipsis;
219
- white-space: nowrap; }
220
- .attr-dl-horizontal dd {
221
- margin-left: 180px; } }
222
-
223
- .attr-initialism {
224
- font-size: 90%;
225
- text-transform: uppercase; }
226
-
227
- .attr-pre-scrollable {
228
- max-height: 340px;
229
- overflow-y: scroll; }
230
-
231
- .attr-container {
232
- padding-right: 15px;
233
- padding-left: 15px;
234
- margin-right: auto;
235
- margin-left: auto; }
236
-
237
- @media (min-width: 768px) {
238
- .attr-container {
239
- width: 750px; } }
240
-
241
- @media (min-width: 992px) {
242
- .attr-container {
243
- width: 970px; } }
244
-
245
- @media (min-width: 1200px) {
246
- .attr-container {
247
- width: 1170px; } }
248
-
249
- .attr-container-fluid {
250
- padding-right: 15px;
251
- padding-left: 15px;
252
- margin-right: auto;
253
- margin-left: auto; }
254
-
255
- .attr-row {
256
- margin-right: -15px;
257
- margin-left: -15px; }
258
-
259
- .attr-col-xs-1, .attr-col-sm-1, .attr-col-md-1, .attr-col-lg-1, .attr-col-xs-2, .attr-col-sm-2, .attr-col-md-2, .attr-col-lg-2, .attr-col-xs-3, .attr-col-sm-3, .attr-col-md-3, .attr-col-lg-3, .attr-col-xs-4, .attr-col-sm-4, .attr-col-md-4, .attr-col-lg-4, .attr-col-xs-5, .attr-col-sm-5, .attr-col-md-5, .attr-col-lg-5, .attr-col-xs-6, .attr-col-sm-6, .attr-col-md-6, .attr-col-lg-6, .attr-col-xs-7, .attr-col-sm-7, .attr-col-md-7, .attr-col-lg-7, .attr-col-xs-8, .attr-col-sm-8, .attr-col-md-8, .attr-col-lg-8, .attr-col-xs-9, .attr-col-sm-9, .attr-col-md-9, .attr-col-lg-9, .attr-col-xs-10, .attr-col-sm-10, .attr-col-md-10, .attr-col-lg-10, .attr-col-xs-11, .attr-col-sm-11, .attr-col-md-11, .attr-col-lg-11, .attr-col-xs-12, .attr-col-sm-12, .attr-col-md-12, .attr-col-lg-12 {
260
- position: relative;
261
- min-height: 1px;
262
- padding-right: 15px;
263
- padding-left: 15px; }
264
-
265
- .attr-col-xs-1, .attr-col-xs-2, .attr-col-xs-3, .attr-col-xs-4, .attr-col-xs-5, .attr-col-xs-6, .attr-col-xs-7, .attr-col-xs-8, .attr-col-xs-9, .attr-col-xs-10, .attr-col-xs-11, .attr-col-xs-12 {
266
- float: left; }
267
-
268
- .attr-col-xs-12 {
269
- width: 100%; }
270
-
271
- .attr-col-xs-11 {
272
- width: 91.66666667%; }
273
-
274
- .attr-col-xs-10 {
275
- width: 83.33333333%; }
276
-
277
- .attr-col-xs-9 {
278
- width: 75%; }
279
-
280
- .attr-col-xs-8 {
281
- width: 66.66666667%; }
282
-
283
- .attr-col-xs-7 {
284
- width: 58.33333333%; }
285
-
286
- .attr-col-xs-6 {
287
- width: 50%; }
288
-
289
- .attr-col-xs-5 {
290
- width: 41.66666667%; }
291
-
292
- .attr-col-xs-4 {
293
- width: 33.33333333%; }
294
-
295
- .attr-col-xs-3 {
296
- width: 25%; }
297
-
298
- .attr-col-xs-2 {
299
- width: 16.66666667%; }
300
-
301
- .attr-col-xs-1 {
302
- width: 8.33333333%; }
303
-
304
- .attr-col-xs-pull-12 {
305
- right: 100%; }
306
-
307
- .attr-col-xs-pull-11 {
308
- right: 91.66666667%; }
309
-
310
- .attr-col-xs-pull-10 {
311
- right: 83.33333333%; }
312
-
313
- .attr-col-xs-pull-9 {
314
- right: 75%; }
315
-
316
- .attr-col-xs-pull-8 {
317
- right: 66.66666667%; }
318
-
319
- .attr-col-xs-pull-7 {
320
- right: 58.33333333%; }
321
-
322
- .attr-col-xs-pull-6 {
323
- right: 50%; }
324
-
325
- .attr-col-xs-pull-5 {
326
- right: 41.66666667%; }
327
-
328
- .attr-col-xs-pull-4 {
329
- right: 33.33333333%; }
330
-
331
- .attr-col-xs-pull-3 {
332
- right: 25%; }
333
-
334
- .attr-col-xs-pull-2 {
335
- right: 16.66666667%; }
336
-
337
- .attr-col-xs-pull-1 {
338
- right: 8.33333333%; }
339
-
340
- .attr-col-xs-pull-0 {
341
- right: auto; }
342
-
343
- .attr-col-xs-push-12 {
344
- left: 100%; }
345
-
346
- .attr-col-xs-push-11 {
347
- left: 91.66666667%; }
348
-
349
- .attr-col-xs-push-10 {
350
- left: 83.33333333%; }
351
-
352
- .attr-col-xs-push-9 {
353
- left: 75%; }
354
-
355
- .attr-col-xs-push-8 {
356
- left: 66.66666667%; }
357
-
358
- .attr-col-xs-push-7 {
359
- left: 58.33333333%; }
360
-
361
- .attr-col-xs-push-6 {
362
- left: 50%; }
363
-
364
- .attr-col-xs-push-5 {
365
- left: 41.66666667%; }
366
-
367
- .attr-col-xs-push-4 {
368
- left: 33.33333333%; }
369
-
370
- .attr-col-xs-push-3 {
371
- left: 25%; }
372
-
373
- .attr-col-xs-push-2 {
374
- left: 16.66666667%; }
375
-
376
- .attr-col-xs-push-1 {
377
- left: 8.33333333%; }
378
-
379
- .attr-col-xs-push-0 {
380
- left: auto; }
381
-
382
- .attr-col-xs-offset-12 {
383
- margin-left: 100%; }
384
-
385
- .attr-col-xs-offset-11 {
386
- margin-left: 91.66666667%; }
387
-
388
- .attr-col-xs-offset-10 {
389
- margin-left: 83.33333333%; }
390
-
391
- .attr-col-xs-offset-9 {
392
- margin-left: 75%; }
393
-
394
- .attr-col-xs-offset-8 {
395
- margin-left: 66.66666667%; }
396
-
397
- .attr-col-xs-offset-7 {
398
- margin-left: 58.33333333%; }
399
-
400
- .attr-col-xs-offset-6 {
401
- margin-left: 50%; }
402
-
403
- .attr-col-xs-offset-5 {
404
- margin-left: 41.66666667%; }
405
-
406
- .attr-col-xs-offset-4 {
407
- margin-left: 33.33333333%; }
408
-
409
- .attr-col-xs-offset-3 {
410
- margin-left: 25%; }
411
-
412
- .attr-col-xs-offset-2 {
413
- margin-left: 16.66666667%; }
414
-
415
- .attr-col-xs-offset-1 {
416
- margin-left: 8.33333333%; }
417
-
418
- .attr-col-xs-offset-0 {
419
- margin-left: 0; }
420
-
421
- @media (min-width: 768px) {
422
- .attr-col-sm-1, .attr-col-sm-2, .attr-col-sm-3, .attr-col-sm-4, .attr-col-sm-5, .attr-col-sm-6, .attr-col-sm-7, .attr-col-sm-8, .attr-col-sm-9, .attr-col-sm-10, .attr-col-sm-11, .attr-col-sm-12 {
423
- float: left; }
424
- .attr-col-sm-12 {
425
- width: 100%; }
426
- .attr-col-sm-11 {
427
- width: 91.66666667%; }
428
- .attr-col-sm-10 {
429
- width: 83.33333333%; }
430
- .attr-col-sm-9 {
431
- width: 75%; }
432
- .attr-col-sm-8 {
433
- width: 66.66666667%; }
434
- .attr-col-sm-7 {
435
- width: 58.33333333%; }
436
- .attr-col-sm-6 {
437
- width: 50%; }
438
- .attr-col-sm-5 {
439
- width: 41.66666667%; }
440
- .attr-col-sm-4 {
441
- width: 33.33333333%; }
442
- .attr-col-sm-3 {
443
- width: 25%; }
444
- .attr-col-sm-2 {
445
- width: 16.66666667%; }
446
- .attr-col-sm-1 {
447
- width: 8.33333333%; }
448
- .attr-col-sm-pull-12 {
449
- right: 100%; }
450
- .attr-col-sm-pull-11 {
451
- right: 91.66666667%; }
452
- .attr-col-sm-pull-10 {
453
- right: 83.33333333%; }
454
- .attr-col-sm-pull-9 {
455
- right: 75%; }
456
- .attr-col-sm-pull-8 {
457
- right: 66.66666667%; }
458
- .attr-col-sm-pull-7 {
459
- right: 58.33333333%; }
460
- .attr-col-sm-pull-6 {
461
- right: 50%; }
462
- .attr-col-sm-pull-5 {
463
- right: 41.66666667%; }
464
- .attr-col-sm-pull-4 {
465
- right: 33.33333333%; }
466
- .attr-col-sm-pull-3 {
467
- right: 25%; }
468
- .attr-col-sm-pull-2 {
469
- right: 16.66666667%; }
470
- .attr-col-sm-pull-1 {
471
- right: 8.33333333%; }
472
- .attr-col-sm-pull-0 {
473
- right: auto; }
474
- .attr-col-sm-push-12 {
475
- left: 100%; }
476
- .attr-col-sm-push-11 {
477
- left: 91.66666667%; }
478
- .attr-col-sm-push-10 {
479
- left: 83.33333333%; }
480
- .attr-col-sm-push-9 {
481
- left: 75%; }
482
- .attr-col-sm-push-8 {
483
- left: 66.66666667%; }
484
- .attr-col-sm-push-7 {
485
- left: 58.33333333%; }
486
- .attr-col-sm-push-6 {
487
- left: 50%; }
488
- .attr-col-sm-push-5 {
489
- left: 41.66666667%; }
490
- .attr-col-sm-push-4 {
491
- left: 33.33333333%; }
492
- .attr-col-sm-push-3 {
493
- left: 25%; }
494
- .attr-col-sm-push-2 {
495
- left: 16.66666667%; }
496
- .attr-col-sm-push-1 {
497
- left: 8.33333333%; }
498
- .attr-col-sm-push-0 {
499
- left: auto; }
500
- .attr-col-sm-offset-12 {
501
- margin-left: 100%; }
502
- .attr-col-sm-offset-11 {
503
- margin-left: 91.66666667%; }
504
- .attr-col-sm-offset-10 {
505
- margin-left: 83.33333333%; }
506
- .attr-col-sm-offset-9 {
507
- margin-left: 75%; }
508
- .attr-col-sm-offset-8 {
509
- margin-left: 66.66666667%; }
510
- .attr-col-sm-offset-7 {
511
- margin-left: 58.33333333%; }
512
- .attr-col-sm-offset-6 {
513
- margin-left: 50%; }
514
- .attr-col-sm-offset-5 {
515
- margin-left: 41.66666667%; }
516
- .attr-col-sm-offset-4 {
517
- margin-left: 33.33333333%; }
518
- .attr-col-sm-offset-3 {
519
- margin-left: 25%; }
520
- .attr-col-sm-offset-2 {
521
- margin-left: 16.66666667%; }
522
- .attr-col-sm-offset-1 {
523
- margin-left: 8.33333333%; }
524
- .attr-col-sm-offset-0 {
525
- margin-left: 0; } }
526
-
527
- @media (min-width: 992px) {
528
- .attr-col-md-1, .attr-col-md-2, .attr-col-md-3, .attr-col-md-4, .attr-col-md-5, .attr-col-md-6, .attr-col-md-7, .attr-col-md-8, .attr-col-md-9, .attr-col-md-10, .attr-col-md-11, .attr-col-md-12 {
529
- float: left; }
530
- .attr-col-md-12 {
531
- width: 100%; }
532
- .attr-col-md-11 {
533
- width: 91.66666667%; }
534
- .attr-col-md-10 {
535
- width: 83.33333333%; }
536
- .attr-col-md-9 {
537
- width: 75%; }
538
- .attr-col-md-8 {
539
- width: 66.66666667%; }
540
- .attr-col-md-7 {
541
- width: 58.33333333%; }
542
- .attr-col-md-6 {
543
- width: 50%; }
544
- .attr-col-md-5 {
545
- width: 41.66666667%; }
546
- .attr-col-md-4 {
547
- width: 33.33333333%; }
548
- .attr-col-md-3 {
549
- width: 25%; }
550
- .attr-col-md-2 {
551
- width: 16.66666667%; }
552
- .attr-col-md-1 {
553
- width: 8.33333333%; }
554
- .attr-col-md-pull-12 {
555
- right: 100%; }
556
- .attr-col-md-pull-11 {
557
- right: 91.66666667%; }
558
- .attr-col-md-pull-10 {
559
- right: 83.33333333%; }
560
- .attr-col-md-pull-9 {
561
- right: 75%; }
562
- .attr-col-md-pull-8 {
563
- right: 66.66666667%; }
564
- .attr-col-md-pull-7 {
565
- right: 58.33333333%; }
566
- .attr-col-md-pull-6 {
567
- right: 50%; }
568
- .attr-col-md-pull-5 {
569
- right: 41.66666667%; }
570
- .attr-col-md-pull-4 {
571
- right: 33.33333333%; }
572
- .attr-col-md-pull-3 {
573
- right: 25%; }
574
- .attr-col-md-pull-2 {
575
- right: 16.66666667%; }
576
- .attr-col-md-pull-1 {
577
- right: 8.33333333%; }
578
- .attr-col-md-pull-0 {
579
- right: auto; }
580
- .attr-col-md-push-12 {
581
- left: 100%; }
582
- .attr-col-md-push-11 {
583
- left: 91.66666667%; }
584
- .attr-col-md-push-10 {
585
- left: 83.33333333%; }
586
- .attr-col-md-push-9 {
587
- left: 75%; }
588
- .attr-col-md-push-8 {
589
- left: 66.66666667%; }
590
- .attr-col-md-push-7 {
591
- left: 58.33333333%; }
592
- .attr-col-md-push-6 {
593
- left: 50%; }
594
- .attr-col-md-push-5 {
595
- left: 41.66666667%; }
596
- .attr-col-md-push-4 {
597
- left: 33.33333333%; }
598
- .attr-col-md-push-3 {
599
- left: 25%; }
600
- .attr-col-md-push-2 {
601
- left: 16.66666667%; }
602
- .attr-col-md-push-1 {
603
- left: 8.33333333%; }
604
- .attr-col-md-push-0 {
605
- left: auto; }
606
- .attr-col-md-offset-12 {
607
- margin-left: 100%; }
608
- .attr-col-md-offset-11 {
609
- margin-left: 91.66666667%; }
610
- .attr-col-md-offset-10 {
611
- margin-left: 83.33333333%; }
612
- .attr-col-md-offset-9 {
613
- margin-left: 75%; }
614
- .attr-col-md-offset-8 {
615
- margin-left: 66.66666667%; }
616
- .attr-col-md-offset-7 {
617
- margin-left: 58.33333333%; }
618
- .attr-col-md-offset-6 {
619
- margin-left: 50%; }
620
- .attr-col-md-offset-5 {
621
- margin-left: 41.66666667%; }
622
- .attr-col-md-offset-4 {
623
- margin-left: 33.33333333%; }
624
- .attr-col-md-offset-3 {
625
- margin-left: 25%; }
626
- .attr-col-md-offset-2 {
627
- margin-left: 16.66666667%; }
628
- .attr-col-md-offset-1 {
629
- margin-left: 8.33333333%; }
630
- .attr-col-md-offset-0 {
631
- margin-left: 0; } }
632
-
633
- @media (min-width: 1200px) {
634
- .attr-col-lg-1, .attr-col-lg-2, .attr-col-lg-3, .attr-col-lg-4, .attr-col-lg-5, .attr-col-lg-6, .attr-col-lg-7, .attr-col-lg-8, .attr-col-lg-9, .attr-col-lg-10, .attr-col-lg-11, .attr-col-lg-12 {
635
- float: left; }
636
- .attr-col-lg-12 {
637
- width: 100%; }
638
- .attr-col-lg-11 {
639
- width: 91.66666667%; }
640
- .attr-col-lg-10 {
641
- width: 83.33333333%; }
642
- .attr-col-lg-9 {
643
- width: 75%; }
644
- .attr-col-lg-8 {
645
- width: 66.66666667%; }
646
- .attr-col-lg-7 {
647
- width: 58.33333333%; }
648
- .attr-col-lg-6 {
649
- width: 50%; }
650
- .attr-col-lg-5 {
651
- width: 41.66666667%; }
652
- .attr-col-lg-4 {
653
- width: 33.33333333%; }
654
- .attr-col-lg-3 {
655
- width: 25%; }
656
- .attr-col-lg-2 {
657
- width: 16.66666667%; }
658
- .attr-col-lg-1 {
659
- width: 8.33333333%; }
660
- .attr-col-lg-pull-12 {
661
- right: 100%; }
662
- .attr-col-lg-pull-11 {
663
- right: 91.66666667%; }
664
- .attr-col-lg-pull-10 {
665
- right: 83.33333333%; }
666
- .attr-col-lg-pull-9 {
667
- right: 75%; }
668
- .attr-col-lg-pull-8 {
669
- right: 66.66666667%; }
670
- .attr-col-lg-pull-7 {
671
- right: 58.33333333%; }
672
- .attr-col-lg-pull-6 {
673
- right: 50%; }
674
- .attr-col-lg-pull-5 {
675
- right: 41.66666667%; }
676
- .attr-col-lg-pull-4 {
677
- right: 33.33333333%; }
678
- .attr-col-lg-pull-3 {
679
- right: 25%; }
680
- .attr-col-lg-pull-2 {
681
- right: 16.66666667%; }
682
- .attr-col-lg-pull-1 {
683
- right: 8.33333333%; }
684
- .attr-col-lg-pull-0 {
685
- right: auto; }
686
- .attr-col-lg-push-12 {
687
- left: 100%; }
688
- .attr-col-lg-push-11 {
689
- left: 91.66666667%; }
690
- .attr-col-lg-push-10 {
691
- left: 83.33333333%; }
692
- .attr-col-lg-push-9 {
693
- left: 75%; }
694
- .attr-col-lg-push-8 {
695
- left: 66.66666667%; }
696
- .attr-col-lg-push-7 {
697
- left: 58.33333333%; }
698
- .attr-col-lg-push-6 {
699
- left: 50%; }
700
- .attr-col-lg-push-5 {
701
- left: 41.66666667%; }
702
- .attr-col-lg-push-4 {
703
- left: 33.33333333%; }
704
- .attr-col-lg-push-3 {
705
- left: 25%; }
706
- .attr-col-lg-push-2 {
707
- left: 16.66666667%; }
708
- .attr-col-lg-push-1 {
709
- left: 8.33333333%; }
710
- .attr-col-lg-push-0 {
711
- left: auto; }
712
- .attr-col-lg-offset-12 {
713
- margin-left: 100%; }
714
- .attr-col-lg-offset-11 {
715
- margin-left: 91.66666667%; }
716
- .attr-col-lg-offset-10 {
717
- margin-left: 83.33333333%; }
718
- .attr-col-lg-offset-9 {
719
- margin-left: 75%; }
720
- .attr-col-lg-offset-8 {
721
- margin-left: 66.66666667%; }
722
- .attr-col-lg-offset-7 {
723
- margin-left: 58.33333333%; }
724
- .attr-col-lg-offset-6 {
725
- margin-left: 50%; }
726
- .attr-col-lg-offset-5 {
727
- margin-left: 41.66666667%; }
728
- .attr-col-lg-offset-4 {
729
- margin-left: 33.33333333%; }
730
- .attr-col-lg-offset-3 {
731
- margin-left: 25%; }
732
- .attr-col-lg-offset-2 {
733
- margin-left: 16.66666667%; }
734
- .attr-col-lg-offset-1 {
735
- margin-left: 8.33333333%; }
736
- .attr-col-lg-offset-0 {
737
- margin-left: 0; } }
738
-
739
- .attr-table {
740
- width: 100%;
741
- max-width: 100%;
742
- margin-bottom: 20px; }
743
-
744
- .attr-table > thead > tr > th, .attr-table > tbody > tr > th, .attr-table > tfoot > tr > th, .attr-table > thead > tr > td, .attr-table > tbody > tr > td, .attr-table > tfoot > tr > td {
745
- padding: 8px;
746
- line-height: 1.42857143;
747
- vertical-align: top;
748
- border-top: 1px solid #ddd; }
749
-
750
- .attr-table > thead > tr > th {
751
- vertical-align: bottom;
752
- border-bottom: 2px solid #ddd; }
753
-
754
- .attr-table > caption + thead > tr:first-child > th, .attr-table > colgroup + thead > tr:first-child > th, .attr-table > thead:first-child > tr:first-child > th, .attr-table > caption + thead > tr:first-child > td, .attr-table > colgroup + thead > tr:first-child > td, .attr-table > thead:first-child > tr:first-child > td {
755
- border-top: 0; }
756
-
757
- .attr-table > tbody + tbody {
758
- border-top: 2px solid #ddd; }
759
-
760
- .attr-table .attr-table {
761
- background-color: #fff; }
762
-
763
- .attr-table-condensed > thead > tr > th, .attr-table-condensed > tbody > tr > th, .attr-table-condensed > tfoot > tr > th, .attr-table-condensed > thead > tr > td, .attr-table-condensed > tbody > tr > td, .attr-table-condensed > tfoot > tr > td {
764
- padding: 5px; }
765
-
766
- .attr-table-bordered {
767
- border: 1px solid #ddd; }
768
-
769
- .attr-table-bordered > thead > tr > th, .attr-table-bordered > tbody > tr > th, .attr-table-bordered > tfoot > tr > th, .attr-table-bordered > thead > tr > td, .attr-table-bordered > tbody > tr > td, .attr-table-bordered > tfoot > tr > td {
770
- border: 1px solid #ddd; }
771
-
772
- .attr-table-bordered > thead > tr > th, .attr-table-bordered > thead > tr > td {
773
- border-bottom-width: 2px; }
774
-
775
- .attr-table-striped > tbody > tr:nth-of-type(odd) {
776
- background-color: #f9f9f9; }
777
-
778
- .attr-table-hover > tbody > tr:hover {
779
- background-color: #f5f5f5; }
780
-
781
- .attr-table > thead > tr > td.attr-active, .attr-table > tbody > tr > td.attr-active, .attr-table > tfoot > tr > td.attr-active, .attr-table > thead > tr > th.attr-active, .attr-table > tbody > tr > th.attr-active, .attr-table > tfoot > tr > th.attr-active, .attr-table > thead > tr.attr-active > td, .attr-table > tbody > tr.attr-active > td, .attr-table > tfoot > tr.attr-active > td, .attr-table > thead > tr.attr-active > th, .attr-table > tbody > tr.attr-active > th, .attr-table > tfoot > tr.attr-active > th {
782
- background-color: #f5f5f5; }
783
-
784
- .attr-table-hover > tbody > tr > td.attr-active:hover, .attr-table-hover > tbody > tr > th.attr-active:hover, .attr-table-hover > tbody > tr.attr-active:hover > td, .attr-table-hover > tbody > tr:hover > .attr-active, .attr-table-hover > tbody > tr.attr-active:hover > th {
785
- background-color: #e8e8e8; }
786
-
787
- .attr-table > thead > tr > td.attr-success, .attr-table > tbody > tr > td.attr-success, .attr-table > tfoot > tr > td.attr-success, .attr-table > thead > tr > th.attr-success, .attr-table > tbody > tr > th.attr-success, .attr-table > tfoot > tr > th.attr-success, .attr-table > thead > tr.attr-success > td, .attr-table > tbody > tr.attr-success > td, .attr-table > tfoot > tr.attr-success > td, .attr-table > thead > tr.attr-success > th, .attr-table > tbody > tr.attr-success > th, .attr-table > tfoot > tr.attr-success > th {
788
- background-color: #dff0d8; }
789
-
790
- .attr-table-hover > tbody > tr > td.attr-success:hover, .attr-table-hover > tbody > tr > th.attr-success:hover, .attr-table-hover > tbody > tr.attr-success:hover > td, .attr-table-hover > tbody > tr:hover > .attr-success, .attr-table-hover > tbody > tr.attr-success:hover > th {
791
- background-color: #d0e9c6; }
792
-
793
- .attr-table > thead > tr > td.attr-info, .attr-table > tbody > tr > td.attr-info, .attr-table > tfoot > tr > td.attr-info, .attr-table > thead > tr > th.attr-info, .attr-table > tbody > tr > th.attr-info, .attr-table > tfoot > tr > th.attr-info, .attr-table > thead > tr.attr-info > td, .attr-table > tbody > tr.attr-info > td, .attr-table > tfoot > tr.attr-info > td, .attr-table > thead > tr.attr-info > th, .attr-table > tbody > tr.attr-info > th, .attr-table > tfoot > tr.attr-info > th {
794
- background-color: #d9edf7; }
795
-
796
- .attr-table-hover > tbody > tr > td.attr-info:hover, .attr-table-hover > tbody > tr > th.attr-info:hover, .attr-table-hover > tbody > tr.attr-info:hover > td, .attr-table-hover > tbody > tr:hover > .attr-info, .attr-table-hover > tbody > tr.attr-info:hover > th {
797
- background-color: #c4e3f3; }
798
-
799
- .attr-table > thead > tr > td.attr-warning, .attr-table > tbody > tr > td.attr-warning, .attr-table > tfoot > tr > td.attr-warning, .attr-table > thead > tr > th.attr-warning, .attr-table > tbody > tr > th.attr-warning, .attr-table > tfoot > tr > th.attr-warning, .attr-table > thead > tr.attr-warning > td, .attr-table > tbody > tr.attr-warning > td, .attr-table > tfoot > tr.attr-warning > td, .attr-table > thead > tr.attr-warning > th, .attr-table > tbody > tr.attr-warning > th, .attr-table > tfoot > tr.attr-warning > th {
800
- background-color: #fcf8e3; }
801
-
802
- .attr-table-hover > tbody > tr > td.attr-warning:hover, .attr-table-hover > tbody > tr > th.attr-warning:hover, .attr-table-hover > tbody > tr.attr-warning:hover > td, .attr-table-hover > tbody > tr:hover > .attr-warning, .attr-table-hover > tbody > tr.attr-warning:hover > th {
803
- background-color: #faf2cc; }
804
-
805
- .attr-table > thead > tr > td.attr-danger, .attr-table > tbody > tr > td.attr-danger, .attr-table > tfoot > tr > td.attr-danger, .attr-table > thead > tr > th.attr-danger, .attr-table > tbody > tr > th.attr-danger, .attr-table > tfoot > tr > th.attr-danger, .attr-table > thead > tr.attr-danger > td, .attr-table > tbody > tr.attr-danger > td, .attr-table > tfoot > tr.attr-danger > td, .attr-table > thead > tr.attr-danger > th, .attr-table > tbody > tr.attr-danger > th, .attr-table > tfoot > tr.attr-danger > th {
806
- background-color: #f2dede; }
807
-
808
- .attr-table-hover > tbody > tr > td.attr-danger:hover, .attr-table-hover > tbody > tr > th.attr-danger:hover, .attr-table-hover > tbody > tr.attr-danger:hover > td, .attr-table-hover > tbody > tr:hover > .attr-danger, .attr-table-hover > tbody > tr.attr-danger:hover > th {
809
- background-color: #ebcccc; }
810
-
811
- .attr-table-responsive {
812
- min-height: .01%;
813
- overflow-x: auto; }
814
-
815
- @media screen and (max-width: 767px) {
816
- .attr-table-responsive {
817
- width: 100%;
818
- margin-bottom: 15px;
819
- overflow-y: hidden;
820
- -ms-overflow-style: -ms-autohiding-scrollbar;
821
- border: 1px solid #ddd; }
822
- .attr-table-responsive > .attr-table {
823
- margin-bottom: 0; }
824
- .attr-table-responsive > .attr-table > thead > tr > th, .attr-table-responsive > .attr-table > tbody > tr > th, .attr-table-responsive > .attr-table > tfoot > tr > th, .attr-table-responsive > .attr-table > thead > tr > td, .attr-table-responsive > .attr-table > tbody > tr > td, .attr-table-responsive > .attr-table > tfoot > tr > td {
825
- white-space: nowrap; }
826
- .attr-table-responsive > .attr-table-bordered {
827
- border: 0; }
828
- .attr-table-responsive > .attr-table-bordered > thead > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:first-child, .attr-table-responsive > .attr-table-bordered > thead > tr > td:first-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > td:first-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:first-child {
829
- border-left: 0; }
830
- .attr-table-responsive > .attr-table-bordered > thead > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:last-child, .attr-table-responsive > .attr-table-bordered > thead > tr > td:last-child, .attr-table-responsive > .attr-table-bordered > tbody > tr > td:last-child, .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:last-child {
831
- border-right: 0; }
832
- .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > th, .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > th, .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > td, .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > td {
833
- border-bottom: 0; } }
834
-
835
- .attr-form-control {
836
- display: block;
837
- width: 100%;
838
- height: 34px;
839
- padding: 6px 12px;
840
- font-size: 14px;
841
- line-height: 1.42857143;
842
- color: #555;
843
- background-color: #fff;
844
- background-image: none;
845
- border: 1px solid #ccc;
846
- border-radius: 4px;
847
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
848
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
849
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
850
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
851
- transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
852
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
853
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s; }
854
-
855
- .attr-form-control:focus {
856
- border-color: #66afe9;
857
- outline: 0;
858
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
859
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6); }
860
-
861
- .attr-form-control::-moz-placeholder {
862
- color: #999;
863
- opacity: 1; }
864
-
865
- .attr-form-control:-ms-input-placeholder {
866
- color: #999; }
867
-
868
- .attr-form-control::-webkit-input-placeholder {
869
- color: #999; }
870
-
871
- .attr-form-control::-ms-expand {
872
- background-color: transparent;
873
- border: 0; }
874
-
875
- .attr-form-control[disabled], .attr-form-control[readonly], fieldset[disabled] .attr-form-control {
876
- background-color: #eee;
877
- opacity: 1; }
878
-
879
- .attr-form-control[disabled], fieldset[disabled] .attr-form-control {
880
- cursor: not-allowed; }
881
-
882
- textarea.attr-form-control {
883
- height: auto; }
884
-
885
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
886
- input[type="date"].attr-form-control, input[type="time"].attr-form-control, input[type="datetime-local"].attr-form-control, input[type="month"].attr-form-control {
887
- line-height: 34px; }
888
- input[type="date"].attr-input-sm, input[type="time"].attr-input-sm, input[type="datetime-local"].attr-input-sm, input[type="month"].attr-input-sm, .attr-input-group-sm input[type="date"], .attr-input-group-sm input[type="time"], .attr-input-group-sm input[type="datetime-local"], .attr-input-group-sm input[type="month"] {
889
- line-height: 30px; }
890
- input[type="date"].attr-input-lg, input[type="time"].attr-input-lg, input[type="datetime-local"].attr-input-lg, input[type="month"].attr-input-lg, .attr-input-group-lg input[type="date"], .attr-input-group-lg input[type="time"], .attr-input-group-lg input[type="datetime-local"], .attr-input-group-lg input[type="month"] {
891
- line-height: 46px; } }
892
-
893
- .attr-form-group {
894
- margin-bottom: 15px; }
895
-
896
- .attr-radio, .attr-checkbox {
897
- position: relative;
898
- display: block;
899
- margin-top: 10px;
900
- margin-bottom: 10px; }
901
-
902
- .attr-radio label, .attr-checkbox label {
903
- min-height: 20px;
904
- padding-left: 20px;
905
- margin-bottom: 0;
906
- font-weight: normal;
907
- cursor: pointer; }
908
-
909
- .attr-radio input[type="radio"], .attr-radio-inline input[type="radio"], .attr-checkbox input[type="checkbox"], .attr-checkbox-inline input[type="checkbox"] {
910
- position: absolute;
911
- margin-top: 4px \9;
912
- margin-left: -20px; }
913
-
914
- .attr-radio + .attr-radio, .attr-checkbox + .attr-checkbox {
915
- margin-top: -5px; }
916
-
917
- .attr-radio-inline, .attr-checkbox-inline {
918
- position: relative;
919
- display: inline-block;
920
- padding-left: 20px;
921
- margin-bottom: 0;
922
- font-weight: normal;
923
- vertical-align: middle;
924
- cursor: pointer; }
925
-
926
- .attr-radio-inline + .attr-radio-inline, .attr-checkbox-inline + .attr-checkbox-inline {
927
- margin-top: 0;
928
- margin-left: 10px; }
929
-
930
- input[type="radio"][disabled], input[type="checkbox"][disabled], input[type="radio"].attr-disabled, input[type="checkbox"].attr-disabled, fieldset[disabled] input[type="radio"], fieldset[disabled] input[type="checkbox"] {
931
- cursor: not-allowed; }
932
-
933
- .attr-radio-inline.attr-disabled, .attr-checkbox-inline.attr-disabled, fieldset[disabled] .attr-radio-inline, fieldset[disabled] .attr-checkbox-inline {
934
- cursor: not-allowed; }
935
-
936
- .attr-radio.attr-disabled label, .attr-checkbox.attr-disabled label, fieldset[disabled] .attr-radio label, fieldset[disabled] .attr-checkbox label {
937
- cursor: not-allowed; }
938
-
939
- .attr-form-control-static {
940
- min-height: 34px;
941
- padding-top: 7px;
942
- padding-bottom: 7px;
943
- margin-bottom: 0; }
944
-
945
- .attr-form-control-static.attr-input-lg, .attr-form-control-static.attr-input-sm {
946
- padding-right: 0;
947
- padding-left: 0; }
948
-
949
- .attr-input-sm {
950
- height: 30px;
951
- padding: 5px 10px;
952
- font-size: 12px;
953
- line-height: 1.5;
954
- border-radius: 3px; }
955
-
956
- select.attr-input-sm {
957
- height: 30px;
958
- line-height: 30px; }
959
-
960
- textarea.attr-input-sm, select[multiple].attr-input-sm {
961
- height: auto; }
962
-
963
- .attr-form-group-sm .attr-form-control {
964
- height: 30px;
965
- padding: 5px 10px;
966
- font-size: 12px;
967
- line-height: 1.5;
968
- border-radius: 3px; }
969
-
970
- .attr-form-group-sm select.attr-form-control {
971
- height: 30px;
972
- line-height: 30px; }
973
-
974
- .attr-form-group-sm textarea.attr-form-control, .attr-form-group-sm select[multiple].attr-form-control {
975
- height: auto; }
976
-
977
- .attr-form-group-sm .attr-form-control-static {
978
- height: 30px;
979
- min-height: 32px;
980
- padding: 6px 10px;
981
- font-size: 12px;
982
- line-height: 1.5; }
983
-
984
- .attr-input-lg {
985
- height: 46px;
986
- padding: 10px 16px;
987
- font-size: 18px;
988
- line-height: 1.3333333;
989
- border-radius: 6px; }
990
-
991
- select.attr-input-lg {
992
- height: 46px;
993
- line-height: 46px; }
994
-
995
- textarea.attr-input-lg, select[multiple].attr-input-lg {
996
- height: auto; }
997
-
998
- .attr-form-group-lg .attr-form-control {
999
- height: 46px;
1000
- padding: 10px 16px;
1001
- font-size: 18px;
1002
- line-height: 1.3333333;
1003
- border-radius: 6px; }
1004
-
1005
- .attr-form-group-lg select.attr-form-control {
1006
- height: 46px;
1007
- line-height: 46px; }
1008
-
1009
- .attr-form-group-lg textarea.attr-form-control, .attr-form-group-lg select[multiple].attr-form-control {
1010
- height: auto; }
1011
-
1012
- .attr-form-group-lg .attr-form-control-static {
1013
- height: 46px;
1014
- min-height: 38px;
1015
- padding: 11px 16px;
1016
- font-size: 18px;
1017
- line-height: 1.3333333; }
1018
-
1019
- .attr-has-feedback {
1020
- position: relative; }
1021
-
1022
- .attr-has-feedback .attr-form-control {
1023
- padding-right: 42.5px; }
1024
-
1025
- .attr-form-control-feedback {
1026
- position: absolute;
1027
- top: 0;
1028
- right: 0;
1029
- z-index: 2;
1030
- display: block;
1031
- width: 34px;
1032
- height: 34px;
1033
- line-height: 34px;
1034
- text-align: center;
1035
- pointer-events: none; }
1036
-
1037
- .attr-input-lg + .attr-form-control-feedback, .attr-input-group-lg + .attr-form-control-feedback, .attr-form-group-lg .attr-form-control + .attr-form-control-feedback {
1038
- width: 46px;
1039
- height: 46px;
1040
- line-height: 46px; }
1041
-
1042
- .attr-input-sm + .attr-form-control-feedback, .attr-input-group-sm + .attr-form-control-feedback, .attr-form-group-sm .attr-form-control + .attr-form-control-feedback {
1043
- width: 30px;
1044
- height: 30px;
1045
- line-height: 30px; }
1046
-
1047
- .attr-has-success .attr-help-block, .attr-has-success .attr-control-label, .attr-has-success .attr-radio, .attr-has-success .attr-checkbox, .attr-has-success .attr-radio-inline, .attr-has-success .attr-checkbox-inline, .attr-has-success.attr-radio label, .attr-has-success.attr-checkbox label, .attr-has-success.attr-radio-inline label, .attr-has-success.attr-checkbox-inline label {
1048
- color: #3c763d; }
1049
-
1050
- .attr-has-success .attr-form-control {
1051
- border-color: #3c763d;
1052
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1053
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1054
-
1055
- .attr-has-success .attr-form-control:focus {
1056
- border-color: #2b542c;
1057
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1058
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168; }
1059
-
1060
- .attr-has-success .attr-input-group-addon {
1061
- color: #3c763d;
1062
- background-color: #dff0d8;
1063
- border-color: #3c763d; }
1064
-
1065
- .attr-has-success .attr-form-control-feedback {
1066
- color: #3c763d; }
1067
-
1068
- .attr-has-warning .attr-help-block, .attr-has-warning .attr-control-label, .attr-has-warning .attr-radio, .attr-has-warning .attr-checkbox, .attr-has-warning .attr-radio-inline, .attr-has-warning .attr-checkbox-inline, .attr-has-warning.attr-radio label, .attr-has-warning.attr-checkbox label, .attr-has-warning.attr-radio-inline label, .attr-has-warning.attr-checkbox-inline label {
1069
- color: #8a6d3b; }
1070
-
1071
- .attr-has-warning .attr-form-control {
1072
- border-color: #8a6d3b;
1073
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1074
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1075
-
1076
- .attr-has-warning .attr-form-control:focus {
1077
- border-color: #66512c;
1078
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1079
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b; }
1080
-
1081
- .attr-has-warning .attr-input-group-addon {
1082
- color: #8a6d3b;
1083
- background-color: #fcf8e3;
1084
- border-color: #8a6d3b; }
1085
-
1086
- .attr-has-warning .attr-form-control-feedback {
1087
- color: #8a6d3b; }
1088
-
1089
- .attr-has-error .attr-help-block, .attr-has-error .attr-control-label, .attr-has-error .attr-radio, .attr-has-error .attr-checkbox, .attr-has-error .attr-radio-inline, .attr-has-error .attr-checkbox-inline, .attr-has-error.attr-radio label, .attr-has-error.attr-checkbox label, .attr-has-error.attr-radio-inline label, .attr-has-error.attr-checkbox-inline label {
1090
- color: #a94442; }
1091
-
1092
- .attr-has-error .attr-form-control {
1093
- border-color: #a94442;
1094
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1095
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
1096
-
1097
- .attr-has-error .attr-form-control:focus {
1098
- border-color: #843534;
1099
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1100
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483; }
1101
-
1102
- .attr-has-error .attr-input-group-addon {
1103
- color: #a94442;
1104
- background-color: #f2dede;
1105
- border-color: #a94442; }
1106
-
1107
- .attr-has-error .attr-form-control-feedback {
1108
- color: #a94442; }
1109
-
1110
- .attr-has-feedback label ~ .attr-form-control-feedback {
1111
- top: 25px; }
1112
-
1113
- .attr-has-feedback label.attr-sr-only ~ .attr-form-control-feedback {
1114
- top: 0; }
1115
-
1116
- .attr-help-block {
1117
- display: block;
1118
- margin-top: 5px;
1119
- margin-bottom: 10px;
1120
- color: #737373; }
1121
-
1122
- @media (min-width: 768px) {
1123
- .attr-form-inline .attr-form-group {
1124
- display: inline-block;
1125
- margin-bottom: 0;
1126
- vertical-align: middle; }
1127
- .attr-form-inline .attr-form-control {
1128
- display: inline-block;
1129
- width: auto;
1130
- vertical-align: middle; }
1131
- .attr-form-inline .attr-form-control-static {
1132
- display: inline-block; }
1133
- .attr-form-inline .attr-input-group {
1134
- display: inline-table;
1135
- vertical-align: middle; }
1136
- .attr-form-inline .attr-input-group .attr-input-group-addon, .attr-form-inline .attr-input-group .attr-input-group-btn, .attr-form-inline .attr-input-group .attr-form-control {
1137
- width: auto; }
1138
- .attr-form-inline .attr-input-group > .attr-form-control {
1139
- width: 100%; }
1140
- .attr-form-inline .attr-control-label {
1141
- margin-bottom: 0;
1142
- vertical-align: middle; }
1143
- .attr-form-inline .attr-radio, .attr-form-inline .attr-checkbox {
1144
- display: inline-block;
1145
- margin-top: 0;
1146
- margin-bottom: 0;
1147
- vertical-align: middle; }
1148
- .attr-form-inline .attr-radio label, .attr-form-inline .attr-checkbox label {
1149
- padding-left: 0; }
1150
- .attr-form-inline .attr-radio input[type="radio"], .attr-form-inline .attr-checkbox input[type="checkbox"] {
1151
- position: relative;
1152
- margin-left: 0; }
1153
- .attr-form-inline .attr-has-feedback .attr-form-control-feedback {
1154
- top: 0; } }
1155
-
1156
- .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox, .attr-form-horizontal .attr-radio-inline, .attr-form-horizontal .attr-checkbox-inline {
1157
- padding-top: 7px;
1158
- margin-top: 0;
1159
- margin-bottom: 0; }
1160
-
1161
- .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox {
1162
- min-height: 27px; }
1163
-
1164
- .attr-form-horizontal .attr-form-group {
1165
- margin-right: -15px;
1166
- margin-left: -15px; }
1167
-
1168
- @media (min-width: 768px) {
1169
- .attr-form-horizontal .attr-control-label {
1170
- padding-top: 7px;
1171
- margin-bottom: 0;
1172
- text-align: right; } }
1173
-
1174
- .attr-form-horizontal .attr-has-feedback .attr-form-control-feedback {
1175
- right: 15px; }
1176
-
1177
- @media (min-width: 768px) {
1178
- .attr-form-horizontal .attr-form-group-lg .attr-control-label {
1179
- padding-top: 11px;
1180
- font-size: 18px; } }
1181
-
1182
- @media (min-width: 768px) {
1183
- .attr-form-horizontal .attr-form-group-sm .attr-control-label {
1184
- padding-top: 6px;
1185
- font-size: 12px; } }
1186
-
1187
- .attr-btn {
1188
- display: inline-block;
1189
- padding: 6px 12px;
1190
- margin-bottom: 0;
1191
- font-size: 14px;
1192
- font-weight: normal;
1193
- line-height: 1.42857143;
1194
- text-align: center;
1195
- white-space: nowrap;
1196
- vertical-align: middle;
1197
- -ms-touch-action: manipulation;
1198
- touch-action: manipulation;
1199
- cursor: pointer;
1200
- -webkit-user-select: none;
1201
- -moz-user-select: none;
1202
- -ms-user-select: none;
1203
- user-select: none;
1204
- background-image: none;
1205
- border: 1px solid transparent;
1206
- border-radius: 4px; }
1207
-
1208
- .attr-btn:focus, .attr-btn:active:focus, .attr-btn.attr-active:focus, .attr-btn.attr-focus, .attr-btn:active.attr-focus, .attr-btn.attr-active.attr-focus {
1209
- outline: 5px auto -webkit-focus-ring-color;
1210
- outline-offset: -2px; }
1211
-
1212
- .attr-btn:hover, .attr-btn:focus, .attr-btn.attr-focus {
1213
- color: #333;
1214
- text-decoration: none; }
1215
-
1216
- .attr-btn:active, .attr-btn.attr-active {
1217
- background-image: none;
1218
- outline: 0;
1219
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1220
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
1221
-
1222
- .attr-btn.attr-disabled, .attr-btn[disabled], fieldset[disabled] .attr-btn {
1223
- cursor: not-allowed;
1224
- filter: alpha(opacity=65);
1225
- -webkit-box-shadow: none;
1226
- box-shadow: none;
1227
- opacity: .65; }
1228
-
1229
- a.attr-btn.attr-disabled, fieldset[disabled] a.attr-btn {
1230
- pointer-events: none; }
1231
-
1232
- .attr-btn-default {
1233
- color: #333;
1234
- background-color: #fff;
1235
- border-color: #ccc; }
1236
-
1237
- .attr-btn-default:focus, .attr-btn-default.attr-focus {
1238
- color: #333;
1239
- background-color: #e6e6e6;
1240
- border-color: #8c8c8c; }
1241
-
1242
- .attr-btn-default:hover {
1243
- color: #333;
1244
- background-color: #e6e6e6;
1245
- border-color: #adadad; }
1246
-
1247
- .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1248
- color: #333;
1249
- background-color: #e6e6e6;
1250
- border-color: #adadad; }
1251
-
1252
- .attr-btn-default:active:hover, .attr-btn-default.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-default:hover, .attr-btn-default:active:focus, .attr-btn-default.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-default:focus, .attr-btn-default:active.attr-focus, .attr-btn-default.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-default.attr-focus {
1253
- color: #333;
1254
- background-color: #d4d4d4;
1255
- border-color: #8c8c8c; }
1256
-
1257
- .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1258
- background-image: none; }
1259
-
1260
- .attr-btn-default.attr-disabled:hover, .attr-btn-default[disabled]:hover, fieldset[disabled] .attr-btn-default:hover, .attr-btn-default.attr-disabled:focus, .attr-btn-default[disabled]:focus, fieldset[disabled] .attr-btn-default:focus, .attr-btn-default.attr-disabled.attr-focus, .attr-btn-default[disabled].attr-focus, fieldset[disabled] .attr-btn-default.attr-focus {
1261
- background-color: #fff;
1262
- border-color: #ccc; }
1263
-
1264
- .attr-btn-default .attr-badge {
1265
- color: #fff;
1266
- background-color: #333; }
1267
-
1268
- .attr-btn-primary {
1269
- color: #fff;
1270
- background-color: #337ab7;
1271
- border-color: #2e6da4; }
1272
-
1273
- .attr-btn-primary:focus, .attr-btn-primary.attr-focus {
1274
- color: #fff;
1275
- background-color: #286090;
1276
- border-color: #122b40; }
1277
-
1278
- .attr-btn-primary:hover {
1279
- color: #fff;
1280
- background-color: #286090;
1281
- border-color: #204d74; }
1282
-
1283
- .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1284
- color: #fff;
1285
- background-color: #286090;
1286
- border-color: #204d74; }
1287
-
1288
- .attr-btn-primary:active:hover, .attr-btn-primary.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-primary:hover, .attr-btn-primary:active:focus, .attr-btn-primary.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-primary:focus, .attr-btn-primary:active.attr-focus, .attr-btn-primary.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-primary.attr-focus {
1289
- color: #fff;
1290
- background-color: #204d74;
1291
- border-color: #122b40; }
1292
-
1293
- .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1294
- background-image: none; }
1295
-
1296
- .attr-btn-primary.attr-disabled:hover, .attr-btn-primary[disabled]:hover, fieldset[disabled] .attr-btn-primary:hover, .attr-btn-primary.attr-disabled:focus, .attr-btn-primary[disabled]:focus, fieldset[disabled] .attr-btn-primary:focus, .attr-btn-primary.attr-disabled.attr-focus, .attr-btn-primary[disabled].attr-focus, fieldset[disabled] .attr-btn-primary.attr-focus {
1297
- background-color: #337ab7;
1298
- border-color: #2e6da4; }
1299
-
1300
- .attr-btn-primary .attr-badge {
1301
- color: #337ab7;
1302
- background-color: #fff; }
1303
-
1304
- .attr-btn-success {
1305
- color: #fff;
1306
- background-color: #5cb85c;
1307
- border-color: #4cae4c; }
1308
-
1309
- .attr-btn-success:focus, .attr-btn-success.attr-focus {
1310
- color: #fff;
1311
- background-color: #449d44;
1312
- border-color: #255625; }
1313
-
1314
- .attr-btn-success:hover {
1315
- color: #fff;
1316
- background-color: #449d44;
1317
- border-color: #398439; }
1318
-
1319
- .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1320
- color: #fff;
1321
- background-color: #449d44;
1322
- border-color: #398439; }
1323
-
1324
- .attr-btn-success:active:hover, .attr-btn-success.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-success:hover, .attr-btn-success:active:focus, .attr-btn-success.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-success:focus, .attr-btn-success:active.attr-focus, .attr-btn-success.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-success.attr-focus {
1325
- color: #fff;
1326
- background-color: #398439;
1327
- border-color: #255625; }
1328
-
1329
- .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1330
- background-image: none; }
1331
-
1332
- .attr-btn-success.attr-disabled:hover, .attr-btn-success[disabled]:hover, fieldset[disabled] .attr-btn-success:hover, .attr-btn-success.attr-disabled:focus, .attr-btn-success[disabled]:focus, fieldset[disabled] .attr-btn-success:focus, .attr-btn-success.attr-disabled.attr-focus, .attr-btn-success[disabled].attr-focus, fieldset[disabled] .attr-btn-success.attr-focus {
1333
- background-color: #5cb85c;
1334
- border-color: #4cae4c; }
1335
-
1336
- .attr-btn-success .attr-badge {
1337
- color: #5cb85c;
1338
- background-color: #fff; }
1339
-
1340
- .attr-btn-info {
1341
- color: #fff;
1342
- background-color: #5bc0de;
1343
- border-color: #46b8da; }
1344
-
1345
- .attr-btn-info:focus, .attr-btn-info.attr-focus {
1346
- color: #fff;
1347
- background-color: #31b0d5;
1348
- border-color: #1b6d85; }
1349
-
1350
- .attr-btn-info:hover {
1351
- color: #fff;
1352
- background-color: #31b0d5;
1353
- border-color: #269abc; }
1354
-
1355
- .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1356
- color: #fff;
1357
- background-color: #31b0d5;
1358
- border-color: #269abc; }
1359
-
1360
- .attr-btn-info:active:hover, .attr-btn-info.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-info:hover, .attr-btn-info:active:focus, .attr-btn-info.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-info:focus, .attr-btn-info:active.attr-focus, .attr-btn-info.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-info.attr-focus {
1361
- color: #fff;
1362
- background-color: #269abc;
1363
- border-color: #1b6d85; }
1364
-
1365
- .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1366
- background-image: none; }
1367
-
1368
- .attr-btn-info.attr-disabled:hover, .attr-btn-info[disabled]:hover, fieldset[disabled] .attr-btn-info:hover, .attr-btn-info.attr-disabled:focus, .attr-btn-info[disabled]:focus, fieldset[disabled] .attr-btn-info:focus, .attr-btn-info.attr-disabled.attr-focus, .attr-btn-info[disabled].attr-focus, fieldset[disabled] .attr-btn-info.attr-focus {
1369
- background-color: #5bc0de;
1370
- border-color: #46b8da; }
1371
-
1372
- .attr-btn-info .attr-badge {
1373
- color: #5bc0de;
1374
- background-color: #fff; }
1375
-
1376
- .attr-btn-warning {
1377
- color: #fff;
1378
- background-color: #f0ad4e;
1379
- border-color: #eea236; }
1380
-
1381
- .attr-btn-warning:focus, .attr-btn-warning.attr-focus {
1382
- color: #fff;
1383
- background-color: #ec971f;
1384
- border-color: #985f0d; }
1385
-
1386
- .attr-btn-warning:hover {
1387
- color: #fff;
1388
- background-color: #ec971f;
1389
- border-color: #d58512; }
1390
-
1391
- .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
1392
- color: #fff;
1393
- background-color: #ec971f;
1394
- border-color: #d58512; }
1395
-
1396
- .attr-btn-warning:active:hover, .attr-btn-warning.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-warning:hover, .attr-btn-warning:active:focus, .attr-btn-warning.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-warning:focus, .attr-btn-warning:active.attr-focus, .attr-btn-warning.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-warning.attr-focus {
1397
- color: #fff;
1398
- background-color: #d58512;
1399
- border-color: #985f0d; }
1400
-
1401
- .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
1402
- background-image: none; }
1403
-
1404
- .attr-btn-warning.attr-disabled:hover, .attr-btn-warning[disabled]:hover, fieldset[disabled] .attr-btn-warning:hover, .attr-btn-warning.attr-disabled:focus, .attr-btn-warning[disabled]:focus, fieldset[disabled] .attr-btn-warning:focus, .attr-btn-warning.attr-disabled.attr-focus, .attr-btn-warning[disabled].attr-focus, fieldset[disabled] .attr-btn-warning.attr-focus {
1405
- background-color: #f0ad4e;
1406
- border-color: #eea236; }
1407
-
1408
- .attr-btn-warning .attr-badge {
1409
- color: #f0ad4e;
1410
- background-color: #fff; }
1411
-
1412
- .attr-btn-danger {
1413
- color: #fff;
1414
- background-color: #d9534f;
1415
- border-color: #d43f3a; }
1416
-
1417
- .attr-btn-danger:focus, .attr-btn-danger.attr-focus {
1418
- color: #fff;
1419
- background-color: #c9302c;
1420
- border-color: #761c19; }
1421
-
1422
- .attr-btn-danger:hover {
1423
- color: #fff;
1424
- background-color: #c9302c;
1425
- border-color: #ac2925; }
1426
-
1427
- .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
1428
- color: #fff;
1429
- background-color: #c9302c;
1430
- border-color: #ac2925; }
1431
-
1432
- .attr-btn-danger:active:hover, .attr-btn-danger.attr-active:hover, .attr-open > .attr-dropdown-toggle.attr-btn-danger:hover, .attr-btn-danger:active:focus, .attr-btn-danger.attr-active:focus, .attr-open > .attr-dropdown-toggle.attr-btn-danger:focus, .attr-btn-danger:active.attr-focus, .attr-btn-danger.attr-active.attr-focus, .attr-open > .attr-dropdown-toggle.attr-btn-danger.attr-focus {
1433
- color: #fff;
1434
- background-color: #ac2925;
1435
- border-color: #761c19; }
1436
-
1437
- .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
1438
- background-image: none; }
1439
-
1440
- .attr-btn-danger.attr-disabled:hover, .attr-btn-danger[disabled]:hover, fieldset[disabled] .attr-btn-danger:hover, .attr-btn-danger.attr-disabled:focus, .attr-btn-danger[disabled]:focus, fieldset[disabled] .attr-btn-danger:focus, .attr-btn-danger.attr-disabled.attr-focus, .attr-btn-danger[disabled].attr-focus, fieldset[disabled] .attr-btn-danger.attr-focus {
1441
- background-color: #d9534f;
1442
- border-color: #d43f3a; }
1443
-
1444
- .attr-btn-danger .attr-badge {
1445
- color: #d9534f;
1446
- background-color: #fff; }
1447
-
1448
- .attr-btn-link {
1449
- font-weight: normal;
1450
- color: #337ab7;
1451
- border-radius: 0; }
1452
-
1453
- .attr-btn-link, .attr-btn-link:active, .attr-btn-link.attr-active, .attr-btn-link[disabled], fieldset[disabled] .attr-btn-link {
1454
- background-color: transparent;
1455
- -webkit-box-shadow: none;
1456
- box-shadow: none; }
1457
-
1458
- .attr-btn-link, .attr-btn-link:hover, .attr-btn-link:focus, .attr-btn-link:active {
1459
- border-color: transparent; }
1460
-
1461
- .attr-btn-link:hover, .attr-btn-link:focus {
1462
- color: #23527c;
1463
- text-decoration: underline;
1464
- background-color: transparent; }
1465
-
1466
- .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-btn-link:hover, .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-btn-link:focus {
1467
- color: #777;
1468
- text-decoration: none; }
1469
-
1470
- .attr-btn-lg, .attr-btn-group-lg > .attr-btn {
1471
- padding: 10px 16px;
1472
- font-size: 18px;
1473
- line-height: 1.3333333;
1474
- border-radius: 6px; }
1475
-
1476
- .attr-btn-sm, .attr-btn-group-sm > .attr-btn {
1477
- padding: 5px 10px;
1478
- font-size: 12px;
1479
- line-height: 1.5;
1480
- border-radius: 3px; }
1481
-
1482
- .attr-btn-xs, .attr-btn-group-xs > .attr-btn {
1483
- padding: 1px 5px;
1484
- font-size: 12px;
1485
- line-height: 1.5;
1486
- border-radius: 3px; }
1487
-
1488
- .attr-btn-block {
1489
- display: block;
1490
- width: 100%; }
1491
-
1492
- .attr-btn-block + .attr-btn-block {
1493
- margin-top: 5px; }
1494
-
1495
- input[type="submit"].attr-btn-block, input[type="reset"].attr-btn-block, input[type="button"].attr-btn-block {
1496
- width: 100%; }
1497
-
1498
- .attr-fade {
1499
- opacity: 0;
1500
- -webkit-transition: opacity .15s linear;
1501
- -o-transition: opacity .15s linear;
1502
- transition: opacity .15s linear; }
1503
-
1504
- .attr-fade.attr-in {
1505
- opacity: 1; }
1506
-
1507
- .attr-collapse {
1508
- display: none; }
1509
-
1510
- .attr-collapse.attr-in {
1511
- display: block; }
1512
-
1513
- tr.attr-collapse.attr-in {
1514
- display: table-row; }
1515
-
1516
- tbody.attr-collapse.attr-in {
1517
- display: table-row-group; }
1518
-
1519
- .attr-collapsing {
1520
- position: relative;
1521
- height: 0;
1522
- overflow: hidden;
1523
- -webkit-transition-timing-function: ease;
1524
- -o-transition-timing-function: ease;
1525
- transition-timing-function: ease;
1526
- -webkit-transition-duration: .35s;
1527
- -o-transition-duration: .35s;
1528
- transition-duration: .35s;
1529
- -webkit-transition-property: height, visibility;
1530
- -o-transition-property: height, visibility;
1531
- transition-property: height, visibility; }
1532
-
1533
- .attr-caret {
1534
- display: inline-block;
1535
- width: 0;
1536
- height: 0;
1537
- margin-left: 2px;
1538
- vertical-align: middle;
1539
- border-top: 4px dashed;
1540
- border-top: 4px solid \9;
1541
- border-right: 4px solid transparent;
1542
- border-left: 4px solid transparent; }
1543
-
1544
- .attr-dropup, .attr-dropdown {
1545
- position: relative; }
1546
-
1547
- .attr-dropdown-toggle:focus {
1548
- outline: 0; }
1549
-
1550
- .attr-dropdown-menu {
1551
- position: absolute;
1552
- top: 100%;
1553
- left: 0;
1554
- z-index: 1000;
1555
- display: none;
1556
- float: left;
1557
- min-width: 160px;
1558
- padding: 5px 0;
1559
- margin: 2px 0 0;
1560
- font-size: 14px;
1561
- text-align: left;
1562
- list-style: none;
1563
- background-color: #fff;
1564
- -webkit-background-clip: padding-box;
1565
- background-clip: padding-box;
1566
- border: 1px solid #ccc;
1567
- border: 1px solid rgba(0, 0, 0, 0.15);
1568
- border-radius: 4px;
1569
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
1570
- box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }
1571
-
1572
- .attr-dropdown-menu.attr-pull-right {
1573
- right: 0;
1574
- left: auto; }
1575
-
1576
- .attr-dropdown-menu .attr-divider {
1577
- height: 1px;
1578
- margin: 9px 0;
1579
- overflow: hidden;
1580
- background-color: #e5e5e5; }
1581
-
1582
- .attr-dropdown-menu > li > a {
1583
- display: block;
1584
- padding: 3px 20px;
1585
- clear: both;
1586
- font-weight: normal;
1587
- line-height: 1.42857143;
1588
- color: #333;
1589
- white-space: nowrap; }
1590
-
1591
- .attr-dropdown-menu > li > a:hover, .attr-dropdown-menu > li > a:focus {
1592
- color: #262626;
1593
- text-decoration: none;
1594
- background-color: #f5f5f5; }
1595
-
1596
- .attr-dropdown-menu > .attr-active > a, .attr-dropdown-menu > .attr-active > a:hover, .attr-dropdown-menu > .attr-active > a:focus {
1597
- color: #fff;
1598
- text-decoration: none;
1599
- background-color: #337ab7;
1600
- outline: 0; }
1601
-
1602
- .attr-dropdown-menu > .attr-disabled > a, .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
1603
- color: #777; }
1604
-
1605
- .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
1606
- text-decoration: none;
1607
- cursor: not-allowed;
1608
- background-color: transparent;
1609
- background-image: none;
1610
- filter: progid:DXImageTransform.Microsoft.gradient(enabled=false); }
1611
-
1612
- .attr-open > .attr-dropdown-menu {
1613
- display: block; }
1614
-
1615
- .attr-open > a {
1616
- outline: 0; }
1617
-
1618
- .attr-dropdown-menu-right {
1619
- right: 0;
1620
- left: auto; }
1621
-
1622
- .attr-dropdown-menu-left {
1623
- right: auto;
1624
- left: 0; }
1625
-
1626
- .attr-dropdown-header {
1627
- display: block;
1628
- padding: 3px 20px;
1629
- font-size: 12px;
1630
- line-height: 1.42857143;
1631
- color: #777;
1632
- white-space: nowrap; }
1633
-
1634
- .attr-dropdown-backdrop {
1635
- position: fixed;
1636
- top: 0;
1637
- right: 0;
1638
- bottom: 0;
1639
- left: 0;
1640
- z-index: 990; }
1641
-
1642
- .attr-pull-right > .attr-dropdown-menu {
1643
- right: 0;
1644
- left: auto; }
1645
-
1646
- .attr-dropup .attr-caret, .attr-navbar-fixed-bottom .attr-dropdown .attr-caret {
1647
- content: "";
1648
- border-top: 0;
1649
- border-bottom: 4px dashed;
1650
- border-bottom: 4px solid \9; }
1651
-
1652
- .attr-dropup .attr-dropdown-menu, .attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu {
1653
- top: auto;
1654
- bottom: 100%;
1655
- margin-bottom: 2px; }
1656
-
1657
- @media (min-width: 768px) {
1658
- .attr-navbar-right .attr-dropdown-menu {
1659
- right: 0;
1660
- left: auto; }
1661
- .attr-navbar-right .attr-dropdown-menu-left {
1662
- right: auto;
1663
- left: 0; } }
1664
-
1665
- .attr-btn-group, .attr-btn-group-vertical {
1666
- position: relative;
1667
- display: inline-block;
1668
- vertical-align: middle; }
1669
-
1670
- .attr-btn-group > .attr-btn, .attr-btn-group-vertical > .attr-btn {
1671
- position: relative;
1672
- float: left; }
1673
-
1674
- .attr-btn-group > .attr-btn:hover, .attr-btn-group-vertical > .attr-btn:hover, .attr-btn-group > .attr-btn:focus, .attr-btn-group-vertical > .attr-btn:focus, .attr-btn-group > .attr-btn:active, .attr-btn-group-vertical > .attr-btn:active, .attr-btn-group > .attr-btn.attr-active, .attr-btn-group-vertical > .attr-btn.attr-active {
1675
- z-index: 2; }
1676
-
1677
- .attr-btn-group .attr-btn + .attr-btn, .attr-btn-group .attr-btn + .attr-btn-group, .attr-btn-group .attr-btn-group + .attr-btn, .attr-btn-group .attr-btn-group + .attr-btn-group {
1678
- margin-left: -1px; }
1679
-
1680
- .attr-btn-toolbar {
1681
- margin-left: -5px; }
1682
-
1683
- .attr-btn-toolbar .attr-btn, .attr-btn-toolbar .attr-btn-group, .attr-btn-toolbar .attr-input-group {
1684
- float: left; }
1685
-
1686
- .attr-btn-toolbar > .attr-btn, .attr-btn-toolbar > .attr-btn-group, .attr-btn-toolbar > .attr-input-group {
1687
- margin-left: 5px; }
1688
-
1689
- .attr-btn-group > .attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle) {
1690
- border-radius: 0; }
1691
-
1692
- .attr-btn-group > .attr-btn:first-child {
1693
- margin-left: 0; }
1694
-
1695
- .attr-btn-group > .attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle) {
1696
- border-top-right-radius: 0;
1697
- border-bottom-right-radius: 0; }
1698
-
1699
- .attr-btn-group > .attr-btn:last-child:not(:first-child), .attr-btn-group > .attr-dropdown-toggle:not(:first-child) {
1700
- border-top-left-radius: 0;
1701
- border-bottom-left-radius: 0; }
1702
-
1703
- .attr-btn-group > .attr-btn-group {
1704
- float: left; }
1705
-
1706
- .attr-btn-group > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
1707
- border-radius: 0; }
1708
-
1709
- .attr-btn-group > .attr-btn-group:first-child:not(:last-child) > .attr-btn:last-child, .attr-btn-group > .attr-btn-group:first-child:not(:last-child) > .attr-dropdown-toggle {
1710
- border-top-right-radius: 0;
1711
- border-bottom-right-radius: 0; }
1712
-
1713
- .attr-btn-group > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
1714
- border-top-left-radius: 0;
1715
- border-bottom-left-radius: 0; }
1716
-
1717
- .attr-btn-group .attr-dropdown-toggle:active, .attr-btn-group.attr-open .attr-dropdown-toggle {
1718
- outline: 0; }
1719
-
1720
- .attr-btn-group > .attr-btn + .attr-dropdown-toggle {
1721
- padding-right: 8px;
1722
- padding-left: 8px; }
1723
-
1724
- .attr-btn-group > .attr-btn-lg + .attr-dropdown-toggle {
1725
- padding-right: 12px;
1726
- padding-left: 12px; }
1727
-
1728
- .attr-btn-group.attr-open .attr-dropdown-toggle {
1729
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1730
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125); }
1731
-
1732
- .attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link {
1733
- -webkit-box-shadow: none;
1734
- box-shadow: none; }
1735
-
1736
- .attr-btn .attr-caret {
1737
- margin-left: 0; }
1738
-
1739
- .attr-btn-lg .attr-caret {
1740
- border-width: 5px 5px 0;
1741
- border-bottom-width: 0; }
1742
-
1743
- .attr-dropup .attr-btn-lg .attr-caret {
1744
- border-width: 0 5px 5px; }
1745
-
1746
- .attr-btn-group-vertical > .attr-btn, .attr-btn-group-vertical > .attr-btn-group, .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
1747
- display: block;
1748
- float: none;
1749
- width: 100%;
1750
- max-width: 100%; }
1751
-
1752
- .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
1753
- float: none; }
1754
-
1755
- .attr-btn-group-vertical > .attr-btn + .attr-btn, .attr-btn-group-vertical > .attr-btn + .attr-btn-group, .attr-btn-group-vertical > .attr-btn-group + .attr-btn, .attr-btn-group-vertical > .attr-btn-group + .attr-btn-group {
1756
- margin-top: -1px;
1757
- margin-left: 0; }
1758
-
1759
- .attr-btn-group-vertical > .attr-btn:not(:first-child):not(:last-child) {
1760
- border-radius: 0; }
1761
-
1762
- .attr-btn-group-vertical > .attr-btn:first-child:not(:last-child) {
1763
- border-top-left-radius: 4px;
1764
- border-top-right-radius: 4px;
1765
- border-bottom-right-radius: 0;
1766
- border-bottom-left-radius: 0; }
1767
-
1768
- .attr-btn-group-vertical > .attr-btn:last-child:not(:first-child) {
1769
- border-top-left-radius: 0;
1770
- border-top-right-radius: 0;
1771
- border-bottom-right-radius: 4px;
1772
- border-bottom-left-radius: 4px; }
1773
-
1774
- .attr-btn-group-vertical > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
1775
- border-radius: 0; }
1776
-
1777
- .attr-btn-group-vertical > .attr-btn-group:first-child:not(:last-child) > .attr-btn:last-child, .attr-btn-group-vertical > .attr-btn-group:first-child:not(:last-child) > .attr-dropdown-toggle {
1778
- border-bottom-right-radius: 0;
1779
- border-bottom-left-radius: 0; }
1780
-
1781
- .attr-btn-group-vertical > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
1782
- border-top-left-radius: 0;
1783
- border-top-right-radius: 0; }
1784
-
1785
- .attr-btn-group-justified {
1786
- display: table;
1787
- width: 100%;
1788
- table-layout: fixed;
1789
- border-collapse: separate; }
1790
-
1791
- .attr-btn-group-justified > .attr-btn, .attr-btn-group-justified > .attr-btn-group {
1792
- display: table-cell;
1793
- float: none;
1794
- width: 1%; }
1795
-
1796
- .attr-btn-group-justified > .attr-btn-group .attr-btn {
1797
- width: 100%; }
1798
-
1799
- .attr-btn-group-justified > .attr-btn-group .attr-dropdown-menu {
1800
- left: auto; }
1801
-
1802
- [data-attr-toggle="buttons"] > .attr-btn input[type="radio"], [data-attr-toggle="buttons"] > .attr-btn-group > .attr-btn input[type="radio"], [data-attr-toggle="buttons"] > .attr-btn input[type="checkbox"], [data-attr-toggle="buttons"] > .attr-btn-group > .attr-btn input[type="checkbox"] {
1803
- position: absolute;
1804
- clip: rect(0, 0, 0, 0);
1805
- pointer-events: none; }
1806
-
1807
- .attr-input-group {
1808
- position: relative;
1809
- display: table;
1810
- border-collapse: separate; }
1811
-
1812
- .attr-input-group[class*="attr-col-"] {
1813
- float: none;
1814
- padding-right: 0;
1815
- padding-left: 0; }
1816
-
1817
- .attr-input-group .attr-form-control {
1818
- position: relative;
1819
- z-index: 2;
1820
- float: left;
1821
- width: 100%;
1822
- margin-bottom: 0; }
1823
-
1824
- .attr-input-group .attr-form-control:focus {
1825
- z-index: 3; }
1826
-
1827
- .attr-input-group-lg > .attr-form-control, .attr-input-group-lg > .attr-input-group-addon, .attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1828
- height: 46px;
1829
- padding: 10px 16px;
1830
- font-size: 18px;
1831
- line-height: 1.3333333;
1832
- border-radius: 6px; }
1833
-
1834
- select.attr-input-group-lg > .attr-form-control, select.attr-input-group-lg > .attr-input-group-addon, select.attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1835
- height: 46px;
1836
- line-height: 46px; }
1837
-
1838
- textarea.attr-input-group-lg > .attr-form-control, textarea.attr-input-group-lg > .attr-input-group-addon, textarea.attr-input-group-lg > .attr-input-group-btn > .attr-btn, select[multiple].attr-input-group-lg > .attr-form-control, select[multiple].attr-input-group-lg > .attr-input-group-addon, select[multiple].attr-input-group-lg > .attr-input-group-btn > .attr-btn {
1839
- height: auto; }
1840
-
1841
- .attr-input-group-sm > .attr-form-control, .attr-input-group-sm > .attr-input-group-addon, .attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1842
- height: 30px;
1843
- padding: 5px 10px;
1844
- font-size: 12px;
1845
- line-height: 1.5;
1846
- border-radius: 3px; }
1847
-
1848
- select.attr-input-group-sm > .attr-form-control, select.attr-input-group-sm > .attr-input-group-addon, select.attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1849
- height: 30px;
1850
- line-height: 30px; }
1851
-
1852
- textarea.attr-input-group-sm > .attr-form-control, textarea.attr-input-group-sm > .attr-input-group-addon, textarea.attr-input-group-sm > .attr-input-group-btn > .attr-btn, select[multiple].attr-input-group-sm > .attr-form-control, select[multiple].attr-input-group-sm > .attr-input-group-addon, select[multiple].attr-input-group-sm > .attr-input-group-btn > .attr-btn {
1853
- height: auto; }
1854
-
1855
- .attr-input-group-addon, .attr-input-group-btn, .attr-input-group .attr-form-control {
1856
- display: table-cell; }
1857
-
1858
- .attr-input-group-addon:not(:first-child):not(:last-child), .attr-input-group-btn:not(:first-child):not(:last-child), .attr-input-group .attr-form-control:not(:first-child):not(:last-child) {
1859
- border-radius: 0; }
1860
-
1861
- .attr-input-group-addon, .attr-input-group-btn {
1862
- width: 1%;
1863
- white-space: nowrap;
1864
- vertical-align: middle; }
1865
-
1866
- .attr-input-group-addon {
1867
- padding: 6px 12px;
1868
- font-size: 14px;
1869
- font-weight: normal;
1870
- line-height: 1;
1871
- color: #555;
1872
- text-align: center;
1873
- background-color: #eee;
1874
- border: 1px solid #ccc;
1875
- border-radius: 4px; }
1876
-
1877
- .attr-input-group-addon.attr-input-sm {
1878
- padding: 5px 10px;
1879
- font-size: 12px;
1880
- border-radius: 3px; }
1881
-
1882
- .attr-input-group-addon.attr-input-lg {
1883
- padding: 10px 16px;
1884
- font-size: 18px;
1885
- border-radius: 6px; }
1886
-
1887
- .attr-input-group-addon input[type="radio"], .attr-input-group-addon input[type="checkbox"] {
1888
- margin-top: 0; }
1889
-
1890
- .attr-input-group .attr-form-control:first-child, .attr-input-group-addon:first-child, .attr-input-group-btn:first-child > .attr-btn, .attr-input-group-btn:first-child > .attr-btn-group > .attr-btn, .attr-input-group-btn:first-child > .attr-dropdown-toggle, .attr-input-group-btn:last-child > .attr-btn:not(:last-child):not(.attr-dropdown-toggle), .attr-input-group-btn:last-child > .attr-btn-group:not(:last-child) > .attr-btn {
1891
- border-top-right-radius: 0;
1892
- border-bottom-right-radius: 0; }
1893
-
1894
- .attr-input-group-addon:first-child {
1895
- border-right: 0; }
1896
-
1897
- .attr-input-group .attr-form-control:last-child, .attr-input-group-addon:last-child, .attr-input-group-btn:last-child > .attr-btn, .attr-input-group-btn:last-child > .attr-btn-group > .attr-btn, .attr-input-group-btn:last-child > .attr-dropdown-toggle, .attr-input-group-btn:first-child > .attr-btn:not(:first-child), .attr-input-group-btn:first-child > .attr-btn-group:not(:first-child) > .attr-btn {
1898
- border-top-left-radius: 0;
1899
- border-bottom-left-radius: 0; }
1900
-
1901
- .attr-input-group-addon:last-child {
1902
- border-left: 0; }
1903
-
1904
- .attr-input-group-btn {
1905
- position: relative;
1906
- font-size: 0;
1907
- white-space: nowrap; }
1908
-
1909
- .attr-input-group-btn > .attr-btn {
1910
- position: relative; }
1911
-
1912
- .attr-input-group-btn > .attr-btn + .attr-btn {
1913
- margin-left: -1px; }
1914
-
1915
- .attr-input-group-btn > .attr-btn:hover, .attr-input-group-btn > .attr-btn:focus, .attr-input-group-btn > .attr-btn:active {
1916
- z-index: 2; }
1917
-
1918
- .attr-input-group-btn:first-child > .attr-btn, .attr-input-group-btn:first-child > .attr-btn-group {
1919
- margin-right: -1px; }
1920
-
1921
- .attr-input-group-btn:last-child > .attr-btn, .attr-input-group-btn:last-child > .attr-btn-group {
1922
- z-index: 2;
1923
- margin-left: -1px; }
1924
-
1925
- .attr-nav {
1926
- padding-left: 0;
1927
- margin-bottom: 0;
1928
- list-style: none; }
1929
-
1930
- .attr-nav > li {
1931
- position: relative;
1932
- display: block; }
1933
-
1934
- .attr-nav > li > a {
1935
- position: relative;
1936
- display: block;
1937
- padding: 10px 15px; }
1938
-
1939
- .attr-nav > li > a:hover, .attr-nav > li > a:focus {
1940
- text-decoration: none;
1941
- background-color: #eee; }
1942
-
1943
- .attr-nav > li.attr-disabled > a {
1944
- color: #777; }
1945
-
1946
- .attr-nav > li.attr-disabled > a:hover, .attr-nav > li.attr-disabled > a:focus {
1947
- color: #777;
1948
- text-decoration: none;
1949
- cursor: not-allowed;
1950
- background-color: transparent; }
1951
-
1952
- .attr-nav .attr-open > a, .attr-nav .attr-open > a:hover, .attr-nav .attr-open > a:focus {
1953
- background-color: #eee;
1954
- border-color: #337ab7; }
1955
-
1956
- .attr-nav .attr-nav-divider {
1957
- height: 1px;
1958
- margin: 9px 0;
1959
- overflow: hidden;
1960
- background-color: #e5e5e5; }
1961
-
1962
- .attr-nav > li > a > img {
1963
- max-width: none; }
1964
-
1965
- .attr-nav-tabs {
1966
- border-bottom: 1px solid #ddd; }
1967
-
1968
- .attr-nav-tabs > li {
1969
- float: left;
1970
- margin-bottom: -1px; }
1971
-
1972
- .attr-nav-tabs > li > a {
1973
- margin-right: 2px;
1974
- line-height: 1.42857143;
1975
- border: 1px solid transparent;
1976
- border-radius: 4px 4px 0 0; }
1977
-
1978
- .attr-nav-tabs > li > a:hover {
1979
- border-color: #eee #eee #ddd; }
1980
-
1981
- .attr-nav-tabs > li.attr-active > a, .attr-nav-tabs > li.attr-active > a:hover, .attr-nav-tabs > li.attr-active > a:focus {
1982
- color: #555;
1983
- cursor: default;
1984
- background-color: #fff;
1985
- border: 1px solid #ddd;
1986
- border-bottom-color: transparent; }
1987
-
1988
- .attr-nav-tabs.attr-nav-justified {
1989
- width: 100%;
1990
- border-bottom: 0; }
1991
-
1992
- .attr-nav-tabs.attr-nav-justified > li {
1993
- float: none; }
1994
-
1995
- .attr-nav-tabs.attr-nav-justified > li > a {
1996
- margin-bottom: 5px;
1997
- text-align: center; }
1998
-
1999
- .attr-nav-tabs.attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2000
- top: auto;
2001
- left: auto; }
2002
-
2003
- @media (min-width: 768px) {
2004
- .attr-nav-tabs.attr-nav-justified > li {
2005
- display: table-cell;
2006
- width: 1%; }
2007
- .attr-nav-tabs.attr-nav-justified > li > a {
2008
- margin-bottom: 0; } }
2009
-
2010
- .attr-nav-tabs.attr-nav-justified > li > a {
2011
- margin-right: 0;
2012
- border-radius: 4px; }
2013
-
2014
- .attr-nav-tabs.attr-nav-justified > .attr-active > a, .attr-nav-tabs.attr-nav-justified > .attr-active > a:hover, .attr-nav-tabs.attr-nav-justified > .attr-active > a:focus {
2015
- border: 1px solid #ddd; }
2016
-
2017
- @media (min-width: 768px) {
2018
- .attr-nav-tabs.attr-nav-justified > li > a {
2019
- border-bottom: 1px solid #ddd;
2020
- border-radius: 4px 4px 0 0; }
2021
- .attr-nav-tabs.attr-nav-justified > .attr-active > a, .attr-nav-tabs.attr-nav-justified > .attr-active > a:hover, .attr-nav-tabs.attr-nav-justified > .attr-active > a:focus {
2022
- border-bottom-color: #fff; } }
2023
-
2024
- .attr-nav-pills > li {
2025
- float: left; }
2026
-
2027
- .attr-nav-pills > li > a {
2028
- border-radius: 4px; }
2029
-
2030
- .attr-nav-pills > li + li {
2031
- margin-left: 2px; }
2032
-
2033
- .attr-nav-pills > li.attr-active > a, .attr-nav-pills > li.attr-active > a:hover, .attr-nav-pills > li.attr-active > a:focus {
2034
- color: #fff;
2035
- background-color: #337ab7; }
2036
-
2037
- .attr-nav-stacked > li {
2038
- float: none; }
2039
-
2040
- .attr-nav-stacked > li + li {
2041
- margin-top: 2px;
2042
- margin-left: 0; }
2043
-
2044
- .attr-nav-justified {
2045
- width: 100%; }
2046
-
2047
- .attr-nav-justified > li {
2048
- float: none; }
2049
-
2050
- .attr-nav-justified > li > a {
2051
- margin-bottom: 5px;
2052
- text-align: center; }
2053
-
2054
- .attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2055
- top: auto;
2056
- left: auto; }
2057
-
2058
- @media (min-width: 768px) {
2059
- .attr-nav-justified > li {
2060
- display: table-cell;
2061
- width: 1%; }
2062
- .attr-nav-justified > li > a {
2063
- margin-bottom: 0; } }
2064
-
2065
- .attr-nav-tabs-justified {
2066
- border-bottom: 0; }
2067
-
2068
- .attr-nav-tabs-justified > li > a {
2069
- margin-right: 0;
2070
- border-radius: 4px; }
2071
-
2072
- .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2073
- border: 1px solid #ddd; }
2074
-
2075
- @media (min-width: 768px) {
2076
- .attr-nav-tabs-justified > li > a {
2077
- border-bottom: 1px solid #ddd;
2078
- border-radius: 4px 4px 0 0; }
2079
- .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2080
- border-bottom-color: #fff; } }
2081
-
2082
- .attr-tab-content > .attr-tab-pane {
2083
- display: none; }
2084
-
2085
- .attr-tab-content > .attr-active {
2086
- display: block; }
2087
-
2088
- .attr-nav-tabs .attr-dropdown-menu {
2089
- margin-top: -1px;
2090
- border-top-left-radius: 0;
2091
- border-top-right-radius: 0; }
2092
-
2093
- .attr-navbar {
2094
- position: relative;
2095
- min-height: 50px;
2096
- margin-bottom: 20px;
2097
- border: 1px solid transparent; }
2098
-
2099
- @media (min-width: 768px) {
2100
- .attr-navbar {
2101
- border-radius: 4px; } }
2102
-
2103
- @media (min-width: 768px) {
2104
- .attr-navbar-header {
2105
- float: left; } }
2106
-
2107
- .attr-navbar-collapse {
2108
- padding-right: 15px;
2109
- padding-left: 15px;
2110
- overflow-x: visible;
2111
- -webkit-overflow-scrolling: touch;
2112
- border-top: 1px solid transparent;
2113
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
2114
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1); }
2115
-
2116
- .attr-navbar-collapse.attr-in {
2117
- overflow-y: auto; }
2118
-
2119
- @media (min-width: 768px) {
2120
- .attr-navbar-collapse {
2121
- width: auto;
2122
- border-top: 0;
2123
- -webkit-box-shadow: none;
2124
- box-shadow: none; }
2125
- .attr-navbar-collapse.attr-collapse {
2126
- display: block !important;
2127
- height: auto !important;
2128
- padding-bottom: 0;
2129
- overflow: visible !important; }
2130
- .attr-navbar-collapse.attr-in {
2131
- overflow-y: visible; }
2132
- .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-static-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2133
- padding-right: 0;
2134
- padding-left: 0; } }
2135
-
2136
- .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2137
- max-height: 340px; }
2138
-
2139
- @media (max-device-width: 480px) and (orientation: landscape) {
2140
- .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2141
- max-height: 200px; } }
2142
-
2143
- .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2144
- margin-right: -15px;
2145
- margin-left: -15px; }
2146
-
2147
- @media (min-width: 768px) {
2148
- .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2149
- margin-right: 0;
2150
- margin-left: 0; } }
2151
-
2152
- .attr-navbar-static-top {
2153
- z-index: 1000;
2154
- border-width: 0 0 1px; }
2155
-
2156
- @media (min-width: 768px) {
2157
- .attr-navbar-static-top {
2158
- border-radius: 0; } }
2159
-
2160
- .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2161
- position: fixed;
2162
- right: 0;
2163
- left: 0;
2164
- z-index: 1030; }
2165
-
2166
- @media (min-width: 768px) {
2167
- .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2168
- border-radius: 0; } }
2169
-
2170
- .attr-navbar-fixed-top {
2171
- top: 0;
2172
- border-width: 0 0 1px; }
2173
-
2174
- .attr-navbar-fixed-bottom {
2175
- bottom: 0;
2176
- margin-bottom: 0;
2177
- border-width: 1px 0 0; }
2178
-
2179
- .attr-navbar-brand {
2180
- float: left;
2181
- height: 50px;
2182
- padding: 15px 15px;
2183
- font-size: 18px;
2184
- line-height: 20px; }
2185
-
2186
- .attr-navbar-brand:hover, .attr-navbar-brand:focus {
2187
- text-decoration: none; }
2188
-
2189
- .attr-navbar-brand > img {
2190
- display: block; }
2191
-
2192
- @media (min-width: 768px) {
2193
- .attr-navbar > .attr-container .attr-navbar-brand, .attr-navbar > .attr-container-fluid .attr-navbar-brand {
2194
- margin-left: -15px; } }
2195
-
2196
- .attr-navbar-toggle {
2197
- position: relative;
2198
- float: right;
2199
- padding: 9px 10px;
2200
- margin-top: 8px;
2201
- margin-right: 15px;
2202
- margin-bottom: 8px;
2203
- background-color: transparent;
2204
- background-image: none;
2205
- border: 1px solid transparent;
2206
- border-radius: 4px; }
2207
-
2208
- .attr-navbar-toggle:focus {
2209
- outline: 0; }
2210
-
2211
- .attr-navbar-toggle .attr-icon-bar {
2212
- display: block;
2213
- width: 22px;
2214
- height: 2px;
2215
- border-radius: 1px; }
2216
-
2217
- .attr-navbar-toggle .attr-icon-bar + .attr-icon-bar {
2218
- margin-top: 4px; }
2219
-
2220
- @media (min-width: 768px) {
2221
- .attr-navbar-toggle {
2222
- display: none; } }
2223
-
2224
- .attr-navbar-nav {
2225
- margin: 7.5px -15px; }
2226
-
2227
- .attr-navbar-nav > li > a {
2228
- padding-top: 10px;
2229
- padding-bottom: 10px;
2230
- line-height: 20px; }
2231
-
2232
- @media (max-width: 767px) {
2233
- .attr-navbar-nav .attr-open .attr-dropdown-menu {
2234
- position: static;
2235
- float: none;
2236
- width: auto;
2237
- margin-top: 0;
2238
- background-color: transparent;
2239
- border: 0;
2240
- -webkit-box-shadow: none;
2241
- box-shadow: none; }
2242
- .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a, .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header {
2243
- padding: 5px 15px 5px 25px; }
2244
- .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2245
- line-height: 20px; }
2246
- .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2247
- background-image: none; } }
2248
-
2249
- @media (min-width: 768px) {
2250
- .attr-navbar-nav {
2251
- float: left;
2252
- margin: 0; }
2253
- .attr-navbar-nav > li {
2254
- float: left; }
2255
- .attr-navbar-nav > li > a {
2256
- padding-top: 15px;
2257
- padding-bottom: 15px; } }
2258
-
2259
- .attr-navbar-form {
2260
- padding: 10px 15px;
2261
- margin-top: 8px;
2262
- margin-right: -15px;
2263
- margin-bottom: 8px;
2264
- margin-left: -15px;
2265
- border-top: 1px solid transparent;
2266
- border-bottom: 1px solid transparent;
2267
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
2268
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1); }
2269
-
2270
- @media (min-width: 768px) {
2271
- .attr-navbar-form .attr-form-group {
2272
- display: inline-block;
2273
- margin-bottom: 0;
2274
- vertical-align: middle; }
2275
- .attr-navbar-form .attr-form-control {
2276
- display: inline-block;
2277
- width: auto;
2278
- vertical-align: middle; }
2279
- .attr-navbar-form .attr-form-control-static {
2280
- display: inline-block; }
2281
- .attr-navbar-form .attr-input-group {
2282
- display: inline-table;
2283
- vertical-align: middle; }
2284
- .attr-navbar-form .attr-input-group .attr-input-group-addon, .attr-navbar-form .attr-input-group .attr-input-group-btn, .attr-navbar-form .attr-input-group .attr-form-control {
2285
- width: auto; }
2286
- .attr-navbar-form .attr-input-group > .attr-form-control {
2287
- width: 100%; }
2288
- .attr-navbar-form .attr-control-label {
2289
- margin-bottom: 0;
2290
- vertical-align: middle; }
2291
- .attr-navbar-form .attr-radio, .attr-navbar-form .attr-checkbox {
2292
- display: inline-block;
2293
- margin-top: 0;
2294
- margin-bottom: 0;
2295
- vertical-align: middle; }
2296
- .attr-navbar-form .attr-radio label, .attr-navbar-form .attr-checkbox label {
2297
- padding-left: 0; }
2298
- .attr-navbar-form .attr-radio input[type="radio"], .attr-navbar-form .attr-checkbox input[type="checkbox"] {
2299
- position: relative;
2300
- margin-left: 0; }
2301
- .attr-navbar-form .attr-has-feedback .attr-form-control-feedback {
2302
- top: 0; } }
2303
-
2304
- @media (max-width: 767px) {
2305
- .attr-navbar-form .attr-form-group {
2306
- margin-bottom: 5px; }
2307
- .attr-navbar-form .attr-form-group:last-child {
2308
- margin-bottom: 0; } }
2309
-
2310
- @media (min-width: 768px) {
2311
- .attr-navbar-form {
2312
- width: auto;
2313
- padding-top: 0;
2314
- padding-bottom: 0;
2315
- margin-right: 0;
2316
- margin-left: 0;
2317
- border: 0;
2318
- -webkit-box-shadow: none;
2319
- box-shadow: none; } }
2320
-
2321
- .attr-navbar-nav > li > .attr-dropdown-menu {
2322
- margin-top: 0;
2323
- border-top-left-radius: 0;
2324
- border-top-right-radius: 0; }
2325
-
2326
- .attr-navbar-fixed-bottom .attr-navbar-nav > li > .attr-dropdown-menu {
2327
- margin-bottom: 0;
2328
- border-top-left-radius: 4px;
2329
- border-top-right-radius: 4px;
2330
- border-bottom-right-radius: 0;
2331
- border-bottom-left-radius: 0; }
2332
-
2333
- .attr-navbar-btn {
2334
- margin-top: 8px;
2335
- margin-bottom: 8px; }
2336
-
2337
- .attr-navbar-btn.attr-btn-sm {
2338
- margin-top: 10px;
2339
- margin-bottom: 10px; }
2340
-
2341
- .attr-navbar-btn.attr-btn-xs {
2342
- margin-top: 14px;
2343
- margin-bottom: 14px; }
2344
-
2345
- .attr-navbar-text {
2346
- margin-top: 15px;
2347
- margin-bottom: 15px; }
2348
-
2349
- @media (min-width: 768px) {
2350
- .attr-navbar-text {
2351
- float: left;
2352
- margin-right: 15px;
2353
- margin-left: 15px; } }
2354
-
2355
- @media (min-width: 768px) {
2356
- .attr-navbar-left {
2357
- float: left !important; }
2358
- .attr-navbar-right {
2359
- float: right !important;
2360
- margin-right: -15px; }
2361
- .attr-navbar-right ~ .attr-navbar-right {
2362
- margin-right: 0; } }
2363
-
2364
- .attr-navbar-default {
2365
- background-color: #f8f8f8;
2366
- border-color: #e7e7e7; }
2367
-
2368
- .attr-navbar-default .attr-navbar-brand {
2369
- color: #777; }
2370
-
2371
- .attr-navbar-default .attr-navbar-brand:hover, .attr-navbar-default .attr-navbar-brand:focus {
2372
- color: #5e5e5e;
2373
- background-color: transparent; }
2374
-
2375
- .attr-navbar-default .attr-navbar-text {
2376
- color: #777; }
2377
-
2378
- .attr-navbar-default .attr-navbar-nav > li > a {
2379
- color: #777; }
2380
-
2381
- .attr-navbar-default .attr-navbar-nav > li > a:hover, .attr-navbar-default .attr-navbar-nav > li > a:focus {
2382
- color: #333;
2383
- background-color: transparent; }
2384
-
2385
- .attr-navbar-default .attr-navbar-nav > .attr-active > a, .attr-navbar-default .attr-navbar-nav > .attr-active > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-active > a:focus {
2386
- color: #555;
2387
- background-color: #e7e7e7; }
2388
-
2389
- .attr-navbar-default .attr-navbar-nav > .attr-disabled > a, .attr-navbar-default .attr-navbar-nav > .attr-disabled > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-disabled > a:focus {
2390
- color: #ccc;
2391
- background-color: transparent; }
2392
-
2393
- .attr-navbar-default .attr-navbar-toggle {
2394
- border-color: #ddd; }
2395
-
2396
- .attr-navbar-default .attr-navbar-toggle:hover, .attr-navbar-default .attr-navbar-toggle:focus {
2397
- background-color: #ddd; }
2398
-
2399
- .attr-navbar-default .attr-navbar-toggle .attr-icon-bar {
2400
- background-color: #888; }
2401
-
2402
- .attr-navbar-default .attr-navbar-collapse, .attr-navbar-default .attr-navbar-form {
2403
- border-color: #e7e7e7; }
2404
-
2405
- .attr-navbar-default .attr-navbar-nav > .attr-open > a, .attr-navbar-default .attr-navbar-nav > .attr-open > a:hover, .attr-navbar-default .attr-navbar-nav > .attr-open > a:focus {
2406
- color: #555;
2407
- background-color: #e7e7e7; }
2408
-
2409
- @media (max-width: 767px) {
2410
- .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2411
- color: #777; }
2412
- .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2413
- color: #333;
2414
- background-color: transparent; }
2415
- .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:focus {
2416
- color: #555;
2417
- background-color: #e7e7e7; }
2418
- .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:hover, .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:focus {
2419
- color: #ccc;
2420
- background-color: transparent; } }
2421
-
2422
- .attr-navbar-default .attr-navbar-link {
2423
- color: #777; }
2424
-
2425
- .attr-navbar-default .attr-navbar-link:hover {
2426
- color: #333; }
2427
-
2428
- .attr-navbar-default .attr-btn-link {
2429
- color: #777; }
2430
-
2431
- .attr-navbar-default .attr-btn-link:hover, .attr-navbar-default .attr-btn-link:focus {
2432
- color: #333; }
2433
-
2434
- .attr-navbar-default .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-navbar-default .attr-btn-link:hover, .attr-navbar-default .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-navbar-default .attr-btn-link:focus {
2435
- color: #ccc; }
2436
-
2437
- .attr-navbar-inverse {
2438
- background-color: #222;
2439
- border-color: #080808; }
2440
-
2441
- .attr-navbar-inverse .attr-navbar-brand {
2442
- color: #9d9d9d; }
2443
-
2444
- .attr-navbar-inverse .attr-navbar-brand:hover, .attr-navbar-inverse .attr-navbar-brand:focus {
2445
- color: #fff;
2446
- background-color: transparent; }
2447
-
2448
- .attr-navbar-inverse .attr-navbar-text {
2449
- color: #9d9d9d; }
2450
-
2451
- .attr-navbar-inverse .attr-navbar-nav > li > a {
2452
- color: #9d9d9d; }
2453
-
2454
- .attr-navbar-inverse .attr-navbar-nav > li > a:hover, .attr-navbar-inverse .attr-navbar-nav > li > a:focus {
2455
- color: #fff;
2456
- background-color: transparent; }
2457
-
2458
- .attr-navbar-inverse .attr-navbar-nav > .attr-active > a, .attr-navbar-inverse .attr-navbar-nav > .attr-active > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-active > a:focus {
2459
- color: #fff;
2460
- background-color: #080808; }
2461
-
2462
- .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a, .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-disabled > a:focus {
2463
- color: #444;
2464
- background-color: transparent; }
2465
-
2466
- .attr-navbar-inverse .attr-navbar-toggle {
2467
- border-color: #333; }
2468
-
2469
- .attr-navbar-inverse .attr-navbar-toggle:hover, .attr-navbar-inverse .attr-navbar-toggle:focus {
2470
- background-color: #333; }
2471
-
2472
- .attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar {
2473
- background-color: #fff; }
2474
-
2475
- .attr-navbar-inverse .attr-navbar-collapse, .attr-navbar-inverse .attr-navbar-form {
2476
- border-color: #101010; }
2477
-
2478
- .attr-navbar-inverse .attr-navbar-nav > .attr-open > a, .attr-navbar-inverse .attr-navbar-nav > .attr-open > a:hover, .attr-navbar-inverse .attr-navbar-nav > .attr-open > a:focus {
2479
- color: #fff;
2480
- background-color: #080808; }
2481
-
2482
- @media (max-width: 767px) {
2483
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-dropdown-header {
2484
- border-color: #080808; }
2485
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider {
2486
- background-color: #080808; }
2487
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
2488
- color: #9d9d9d; }
2489
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
2490
- color: #fff;
2491
- background-color: transparent; }
2492
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-active > a:focus {
2493
- color: #fff;
2494
- background-color: #080808; }
2495
- .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:hover, .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-disabled > a:focus {
2496
- color: #444;
2497
- background-color: transparent; } }
2498
-
2499
- .attr-navbar-inverse .attr-navbar-link {
2500
- color: #9d9d9d; }
2501
-
2502
- .attr-navbar-inverse .attr-navbar-link:hover {
2503
- color: #fff; }
2504
-
2505
- .attr-navbar-inverse .attr-btn-link {
2506
- color: #9d9d9d; }
2507
-
2508
- .attr-navbar-inverse .attr-btn-link:hover, .attr-navbar-inverse .attr-btn-link:focus {
2509
- color: #fff; }
2510
-
2511
- .attr-navbar-inverse .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover, .attr-navbar-inverse .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus {
2512
- color: #444; }
2513
-
2514
- .attr-breadcrumb {
2515
- padding: 8px 15px;
2516
- margin-bottom: 20px;
2517
- list-style: none;
2518
- background-color: #f5f5f5;
2519
- border-radius: 4px; }
2520
-
2521
- .attr-breadcrumb > li {
2522
- display: inline-block; }
2523
-
2524
- .attr-breadcrumb > li + li:before {
2525
- padding: 0 5px;
2526
- color: #ccc;
2527
- content: "/\00a0"; }
2528
-
2529
- .attr-breadcrumb > .attr-active {
2530
- color: #777; }
2531
-
2532
- .attr-pagination {
2533
- display: inline-block;
2534
- padding-left: 0;
2535
- margin: 20px 0;
2536
- border-radius: 4px; }
2537
-
2538
- .attr-pagination > li {
2539
- display: inline; }
2540
-
2541
- .attr-pagination > li > a, .attr-pagination > li > span {
2542
- position: relative;
2543
- float: left;
2544
- padding: 6px 12px;
2545
- margin-left: -1px;
2546
- line-height: 1.42857143;
2547
- color: #337ab7;
2548
- text-decoration: none;
2549
- background-color: #fff;
2550
- border: 1px solid #ddd; }
2551
-
2552
- .attr-pagination > li:first-child > a, .attr-pagination > li:first-child > span {
2553
- margin-left: 0;
2554
- border-top-left-radius: 4px;
2555
- border-bottom-left-radius: 4px; }
2556
-
2557
- .attr-pagination > li:last-child > a, .attr-pagination > li:last-child > span {
2558
- border-top-right-radius: 4px;
2559
- border-bottom-right-radius: 4px; }
2560
-
2561
- .attr-pagination > li > a:hover, .attr-pagination > li > span:hover, .attr-pagination > li > a:focus, .attr-pagination > li > span:focus {
2562
- z-index: 2;
2563
- color: #23527c;
2564
- background-color: #eee;
2565
- border-color: #ddd; }
2566
-
2567
- .attr-pagination > .attr-active > a, .attr-pagination > .attr-active > span, .attr-pagination > .attr-active > a:hover, .attr-pagination > .attr-active > span:hover, .attr-pagination > .attr-active > a:focus, .attr-pagination > .attr-active > span:focus {
2568
- z-index: 3;
2569
- color: #fff;
2570
- cursor: default;
2571
- background-color: #337ab7;
2572
- border-color: #337ab7; }
2573
-
2574
- .attr-pagination > .attr-disabled > span, .attr-pagination > .attr-disabled > span:hover, .attr-pagination > .attr-disabled > span:focus, .attr-pagination > .attr-disabled > a, .attr-pagination > .attr-disabled > a:hover, .attr-pagination > .attr-disabled > a:focus {
2575
- color: #777;
2576
- cursor: not-allowed;
2577
- background-color: #fff;
2578
- border-color: #ddd; }
2579
-
2580
- .attr-pagination-lg > li > a, .attr-pagination-lg > li > span {
2581
- padding: 10px 16px;
2582
- font-size: 18px;
2583
- line-height: 1.3333333; }
2584
-
2585
- .attr-pagination-lg > li:first-child > a, .attr-pagination-lg > li:first-child > span {
2586
- border-top-left-radius: 6px;
2587
- border-bottom-left-radius: 6px; }
2588
-
2589
- .attr-pagination-lg > li:last-child > a, .attr-pagination-lg > li:last-child > span {
2590
- border-top-right-radius: 6px;
2591
- border-bottom-right-radius: 6px; }
2592
-
2593
- .attr-pagination-sm > li > a, .attr-pagination-sm > li > span {
2594
- padding: 5px 10px;
2595
- font-size: 12px;
2596
- line-height: 1.5; }
2597
-
2598
- .attr-pagination-sm > li:first-child > a, .attr-pagination-sm > li:first-child > span {
2599
- border-top-left-radius: 3px;
2600
- border-bottom-left-radius: 3px; }
2601
-
2602
- .attr-pagination-sm > li:last-child > a, .attr-pagination-sm > li:last-child > span {
2603
- border-top-right-radius: 3px;
2604
- border-bottom-right-radius: 3px; }
2605
-
2606
- .attr-pager {
2607
- padding-left: 0;
2608
- margin: 20px 0;
2609
- text-align: center;
2610
- list-style: none; }
2611
-
2612
- .attr-pager li {
2613
- display: inline; }
2614
-
2615
- .attr-pager li > a, .attr-pager li > span {
2616
- display: inline-block;
2617
- padding: 5px 14px;
2618
- background-color: #fff;
2619
- border: 1px solid #ddd;
2620
- border-radius: 15px; }
2621
-
2622
- .attr-pager li > a:hover, .attr-pager li > a:focus {
2623
- text-decoration: none;
2624
- background-color: #eee; }
2625
-
2626
- .attr-pager .attr-next > a, .attr-pager .attr-next > span {
2627
- float: right; }
2628
-
2629
- .attr-pager .attr-previous > a, .attr-pager .attr-previous > span {
2630
- float: left; }
2631
-
2632
- .attr-pager .attr-disabled > a, .attr-pager .attr-disabled > a:hover, .attr-pager .attr-disabled > a:focus, .attr-pager .attr-disabled > span {
2633
- color: #777;
2634
- cursor: not-allowed;
2635
- background-color: #fff; }
2636
-
2637
- .attr-label {
2638
- display: inline;
2639
- padding: .2em .6em .3em;
2640
- font-size: 75%;
2641
- font-weight: bold;
2642
- line-height: 1;
2643
- color: #fff;
2644
- text-align: center;
2645
- white-space: nowrap;
2646
- vertical-align: baseline;
2647
- border-radius: .25em; }
2648
-
2649
- a.attr-label:hover, a.attr-label:focus {
2650
- color: #fff;
2651
- text-decoration: none;
2652
- cursor: pointer; }
2653
-
2654
- .attr-label:empty {
2655
- display: none; }
2656
-
2657
- .attr-btn .attr-label {
2658
- position: relative;
2659
- top: -1px; }
2660
-
2661
- .attr-label-default {
2662
- background-color: #777; }
2663
-
2664
- .attr-label-default[href]:hover, .attr-label-default[href]:focus {
2665
- background-color: #5e5e5e; }
2666
-
2667
- .attr-label-primary {
2668
- background-color: #337ab7; }
2669
-
2670
- .attr-label-primary[href]:hover, .attr-label-primary[href]:focus {
2671
- background-color: #286090; }
2672
-
2673
- .attr-label-success {
2674
- background-color: #5cb85c; }
2675
-
2676
- .attr-label-success[href]:hover, .attr-label-success[href]:focus {
2677
- background-color: #449d44; }
2678
-
2679
- .attr-label-info {
2680
- background-color: #5bc0de; }
2681
-
2682
- .attr-label-info[href]:hover, .attr-label-info[href]:focus {
2683
- background-color: #31b0d5; }
2684
-
2685
- .attr-label-warning {
2686
- background-color: #f0ad4e; }
2687
-
2688
- .attr-label-warning[href]:hover, .attr-label-warning[href]:focus {
2689
- background-color: #ec971f; }
2690
-
2691
- .attr-label-danger {
2692
- background-color: #d9534f; }
2693
-
2694
- .attr-label-danger[href]:hover, .attr-label-danger[href]:focus {
2695
- background-color: #c9302c; }
2696
-
2697
- .attr-badge {
2698
- display: inline-block;
2699
- min-width: 10px;
2700
- padding: 3px 7px;
2701
- font-size: 12px;
2702
- font-weight: bold;
2703
- line-height: 1;
2704
- color: #fff;
2705
- text-align: center;
2706
- white-space: nowrap;
2707
- vertical-align: middle;
2708
- background-color: #777;
2709
- border-radius: 10px; }
2710
-
2711
- .attr-badge:empty {
2712
- display: none; }
2713
-
2714
- .attr-btn .attr-badge {
2715
- position: relative;
2716
- top: -1px; }
2717
-
2718
- .attr-btn-xs .attr-badge, .attr-btn-group-xs > .attr-btn .attr-badge {
2719
- top: 0;
2720
- padding: 1px 5px; }
2721
-
2722
- a.attr-badge:hover, a.attr-badge:focus {
2723
- color: #fff;
2724
- text-decoration: none;
2725
- cursor: pointer; }
2726
-
2727
- .attr-list-group-item.attr-active > .attr-badge, .attr-nav-pills > .attr-active > a > .attr-badge {
2728
- color: #337ab7;
2729
- background-color: #fff; }
2730
-
2731
- .attr-list-group-item > .attr-badge {
2732
- float: right; }
2733
-
2734
- .attr-list-group-item > .attr-badge + .attr-badge {
2735
- margin-right: 5px; }
2736
-
2737
- .attr-nav-pills > li > a > .attr-badge {
2738
- margin-left: 3px; }
2739
-
2740
- .attr-jumbotron {
2741
- padding-top: 30px;
2742
- padding-bottom: 30px;
2743
- margin-bottom: 30px;
2744
- color: inherit;
2745
- background-color: #eee; }
2746
-
2747
- .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
2748
- color: inherit; }
2749
-
2750
- .attr-jumbotron p {
2751
- margin-bottom: 15px;
2752
- font-size: 21px;
2753
- font-weight: 200; }
2754
-
2755
- .attr-jumbotron > hr {
2756
- border-top-color: #d5d5d5; }
2757
-
2758
- .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
2759
- padding-right: 15px;
2760
- padding-left: 15px;
2761
- border-radius: 6px; }
2762
-
2763
- .attr-jumbotron .attr-container {
2764
- max-width: 100%; }
2765
-
2766
- @media screen and (min-width: 768px) {
2767
- .attr-jumbotron {
2768
- padding-top: 48px;
2769
- padding-bottom: 48px; }
2770
- .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
2771
- padding-right: 60px;
2772
- padding-left: 60px; }
2773
- .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
2774
- font-size: 63px; } }
2775
-
2776
- .attr-thumbnail {
2777
- display: block;
2778
- padding: 4px;
2779
- margin-bottom: 20px;
2780
- line-height: 1.42857143;
2781
- background-color: #fff;
2782
- border: 1px solid #ddd;
2783
- border-radius: 4px;
2784
- -webkit-transition: border .2s ease-in-out;
2785
- -o-transition: border .2s ease-in-out;
2786
- transition: border .2s ease-in-out; }
2787
-
2788
- .attr-thumbnail > img, .attr-thumbnail a > img {
2789
- margin-right: auto;
2790
- margin-left: auto; }
2791
-
2792
- a.attr-thumbnail:hover, a.attr-thumbnail:focus, a.attr-thumbnail.attr-active {
2793
- border-color: #337ab7; }
2794
-
2795
- .attr-thumbnail .attr-caption {
2796
- padding: 9px;
2797
- color: #333; }
2798
-
2799
- .attr-alert {
2800
- padding: 15px;
2801
- margin-bottom: 20px;
2802
- border: 1px solid transparent;
2803
- border-radius: 4px; }
2804
-
2805
- .attr-alert h4 {
2806
- margin-top: 0;
2807
- color: inherit; }
2808
-
2809
- .attr-alert .attr-alert-link {
2810
- font-weight: bold; }
2811
-
2812
- .attr-alert > p, .attr-alert > ul {
2813
- margin-bottom: 0; }
2814
-
2815
- .attr-alert > p + p {
2816
- margin-top: 5px; }
2817
-
2818
- .attr-alert-dismissable, .attr-alert-dismissible {
2819
- padding-right: 35px; }
2820
-
2821
- .attr-alert-dismissable .attr-close, .attr-alert-dismissible .attr-close {
2822
- position: relative;
2823
- top: -2px;
2824
- right: -21px;
2825
- color: inherit; }
2826
-
2827
- .attr-alert-success {
2828
- color: #3c763d;
2829
- background-color: #dff0d8;
2830
- border-color: #d6e9c6; }
2831
-
2832
- .attr-alert-success hr {
2833
- border-top-color: #c9e2b3; }
2834
-
2835
- .attr-alert-success .attr-alert-link {
2836
- color: #2b542c; }
2837
-
2838
- .attr-alert-info {
2839
- color: #31708f;
2840
- background-color: #d9edf7;
2841
- border-color: #bce8f1; }
2842
-
2843
- .attr-alert-info hr {
2844
- border-top-color: #a6e1ec; }
2845
-
2846
- .attr-alert-info .attr-alert-link {
2847
- color: #245269; }
2848
-
2849
- .attr-alert-warning {
2850
- color: #8a6d3b;
2851
- background-color: #fcf8e3;
2852
- border-color: #faebcc; }
2853
-
2854
- .attr-alert-warning hr {
2855
- border-top-color: #f7e1b5; }
2856
-
2857
- .attr-alert-warning .attr-alert-link {
2858
- color: #66512c; }
2859
-
2860
- .attr-alert-danger {
2861
- color: #a94442;
2862
- background-color: #f2dede;
2863
- border-color: #ebccd1; }
2864
-
2865
- .attr-alert-danger hr {
2866
- border-top-color: #e4b9c0; }
2867
-
2868
- .attr-alert-danger .attr-alert-link {
2869
- color: #843534; }
2870
-
2871
- @-webkit-keyframes progress-bar-stripes {
2872
- from {
2873
- background-position: 40px 0; }
2874
- to {
2875
- background-position: 0 0; } }
2876
-
2877
- @-o-keyframes progress-bar-stripes {
2878
- from {
2879
- background-position: 40px 0; }
2880
- to {
2881
- background-position: 0 0; } }
2882
-
2883
- @keyframes progress-bar-stripes {
2884
- from {
2885
- background-position: 40px 0; }
2886
- to {
2887
- background-position: 0 0; } }
2888
-
2889
- .attr-progress {
2890
- height: 20px;
2891
- margin-bottom: 20px;
2892
- overflow: hidden;
2893
- background-color: #f5f5f5;
2894
- border-radius: 4px;
2895
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
2896
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1); }
2897
-
2898
- .attr-progress-bar {
2899
- float: left;
2900
- width: 0;
2901
- height: 100%;
2902
- font-size: 12px;
2903
- line-height: 20px;
2904
- color: #fff;
2905
- text-align: center;
2906
- background-color: #337ab7;
2907
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2908
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
2909
- -webkit-transition: width .6s ease;
2910
- -o-transition: width .6s ease;
2911
- transition: width .6s ease; }
2912
-
2913
- .attr-progress-striped .attr-progress-bar, .attr-progress-bar-striped {
2914
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2915
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2916
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2917
- -webkit-background-size: 40px 40px;
2918
- background-size: 40px 40px; }
2919
-
2920
- .attr-progress.attr-active .attr-progress-bar, .attr-progress-bar.attr-active {
2921
- -webkit-animation: progress-bar-stripes 2s linear infinite;
2922
- -o-animation: progress-bar-stripes 2s linear infinite;
2923
- animation: progress-bar-stripes 2s linear infinite; }
2924
-
2925
- .attr-progress-bar-success {
2926
- background-color: #5cb85c; }
2927
-
2928
- .attr-progress-striped .attr-progress-bar-success {
2929
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2930
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2931
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2932
-
2933
- .attr-progress-bar-info {
2934
- background-color: #5bc0de; }
2935
-
2936
- .attr-progress-striped .attr-progress-bar-info {
2937
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2938
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2939
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2940
-
2941
- .attr-progress-bar-warning {
2942
- background-color: #f0ad4e; }
2943
-
2944
- .attr-progress-striped .attr-progress-bar-warning {
2945
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2946
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2947
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2948
-
2949
- .attr-progress-bar-danger {
2950
- background-color: #d9534f; }
2951
-
2952
- .attr-progress-striped .attr-progress-bar-danger {
2953
- background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2954
- background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
2955
- background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent); }
2956
-
2957
- .attr-media {
2958
- margin-top: 15px; }
2959
-
2960
- .attr-media:first-child {
2961
- margin-top: 0; }
2962
-
2963
- .attr-media, .attr-media-body {
2964
- overflow: hidden;
2965
- zoom: 1; }
2966
-
2967
- .attr-media-body {
2968
- width: 10000px; }
2969
-
2970
- .attr-media-object {
2971
- display: block; }
2972
-
2973
- .attr-media-object.attr-img-thumbnail {
2974
- max-width: none; }
2975
-
2976
- .attr-media-right, .attr-media > .attr-pull-right {
2977
- padding-left: 10px; }
2978
-
2979
- .attr-media-left, .attr-media > .attr-pull-left {
2980
- padding-right: 10px; }
2981
-
2982
- .attr-media-left, .attr-media-right, .attr-media-body {
2983
- display: table-cell;
2984
- vertical-align: top; }
2985
-
2986
- .attr-media-middle {
2987
- vertical-align: middle; }
2988
-
2989
- .attr-media-bottom {
2990
- vertical-align: bottom; }
2991
-
2992
- .attr-media-heading {
2993
- margin-top: 0;
2994
- margin-bottom: 5px; }
2995
-
2996
- .attr-media-list {
2997
- padding-left: 0;
2998
- list-style: none; }
2999
-
3000
- .attr-list-group {
3001
- padding-left: 0;
3002
- margin-bottom: 20px; }
3003
-
3004
- .attr-list-group-item {
3005
- position: relative;
3006
- display: block;
3007
- padding: 10px 15px;
3008
- margin-bottom: -1px;
3009
- background-color: #fff;
3010
- border: 1px solid #ddd; }
3011
-
3012
- .attr-list-group-item:first-child {
3013
- border-top-left-radius: 4px;
3014
- border-top-right-radius: 4px; }
3015
-
3016
- .attr-list-group-item:last-child {
3017
- margin-bottom: 0;
3018
- border-bottom-right-radius: 4px;
3019
- border-bottom-left-radius: 4px; }
3020
-
3021
- a.attr-list-group-item, button.attr-list-group-item {
3022
- color: #555; }
3023
-
3024
- a.attr-list-group-item .attr-list-group-item-heading, button.attr-list-group-item .attr-list-group-item-heading {
3025
- color: #333; }
3026
-
3027
- a.attr-list-group-item:hover, button.attr-list-group-item:hover, a.attr-list-group-item:focus, button.attr-list-group-item:focus {
3028
- color: #555;
3029
- text-decoration: none;
3030
- background-color: #f5f5f5; }
3031
-
3032
- button.attr-list-group-item {
3033
- width: 100%;
3034
- text-align: left; }
3035
-
3036
- .attr-list-group-item.attr-disabled, .attr-list-group-item.attr-disabled:hover, .attr-list-group-item.attr-disabled:focus {
3037
- color: #777;
3038
- cursor: not-allowed;
3039
- background-color: #eee; }
3040
-
3041
- .attr-list-group-item.attr-disabled .attr-list-group-item-heading, .attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading, .attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading {
3042
- color: inherit; }
3043
-
3044
- .attr-list-group-item.attr-disabled .attr-list-group-item-text, .attr-list-group-item.attr-disabled:hover .attr-list-group-item-text, .attr-list-group-item.attr-disabled:focus .attr-list-group-item-text {
3045
- color: #777; }
3046
-
3047
- .attr-list-group-item.attr-active, .attr-list-group-item.attr-active:hover, .attr-list-group-item.attr-active:focus {
3048
- z-index: 2;
3049
- color: #fff;
3050
- background-color: #337ab7;
3051
- border-color: #337ab7; }
3052
-
3053
- .attr-list-group-item.attr-active .attr-list-group-item-heading, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading, .attr-list-group-item.attr-active .attr-list-group-item-heading > small, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading > small, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading > small, .attr-list-group-item.attr-active .attr-list-group-item-heading > .attr-small, .attr-list-group-item.attr-active:hover .attr-list-group-item-heading > .attr-small, .attr-list-group-item.attr-active:focus .attr-list-group-item-heading > .attr-small {
3054
- color: inherit; }
3055
-
3056
- .attr-list-group-item.attr-active .attr-list-group-item-text, .attr-list-group-item.attr-active:hover .attr-list-group-item-text, .attr-list-group-item.attr-active:focus .attr-list-group-item-text {
3057
- color: #c7ddef; }
3058
-
3059
- .attr-list-group-item-success {
3060
- color: #3c763d;
3061
- background-color: #dff0d8; }
3062
-
3063
- a.attr-list-group-item-success, button.attr-list-group-item-success {
3064
- color: #3c763d; }
3065
-
3066
- a.attr-list-group-item-success .attr-list-group-item-heading, button.attr-list-group-item-success .attr-list-group-item-heading {
3067
- color: inherit; }
3068
-
3069
- a.attr-list-group-item-success:hover, button.attr-list-group-item-success:hover, a.attr-list-group-item-success:focus, button.attr-list-group-item-success:focus {
3070
- color: #3c763d;
3071
- background-color: #d0e9c6; }
3072
-
3073
- a.attr-list-group-item-success.attr-active, button.attr-list-group-item-success.attr-active, a.attr-list-group-item-success.attr-active:hover, button.attr-list-group-item-success.attr-active:hover, a.attr-list-group-item-success.attr-active:focus, button.attr-list-group-item-success.attr-active:focus {
3074
- color: #fff;
3075
- background-color: #3c763d;
3076
- border-color: #3c763d; }
3077
-
3078
- .attr-list-group-item-info {
3079
- color: #31708f;
3080
- background-color: #d9edf7; }
3081
-
3082
- a.attr-list-group-item-info, button.attr-list-group-item-info {
3083
- color: #31708f; }
3084
-
3085
- a.attr-list-group-item-info .attr-list-group-item-heading, button.attr-list-group-item-info .attr-list-group-item-heading {
3086
- color: inherit; }
3087
-
3088
- a.attr-list-group-item-info:hover, button.attr-list-group-item-info:hover, a.attr-list-group-item-info:focus, button.attr-list-group-item-info:focus {
3089
- color: #31708f;
3090
- background-color: #c4e3f3; }
3091
-
3092
- a.attr-list-group-item-info.attr-active, button.attr-list-group-item-info.attr-active, a.attr-list-group-item-info.attr-active:hover, button.attr-list-group-item-info.attr-active:hover, a.attr-list-group-item-info.attr-active:focus, button.attr-list-group-item-info.attr-active:focus {
3093
- color: #fff;
3094
- background-color: #31708f;
3095
- border-color: #31708f; }
3096
-
3097
- .attr-list-group-item-warning {
3098
- color: #8a6d3b;
3099
- background-color: #fcf8e3; }
3100
-
3101
- a.attr-list-group-item-warning, button.attr-list-group-item-warning {
3102
- color: #8a6d3b; }
3103
-
3104
- a.attr-list-group-item-warning .attr-list-group-item-heading, button.attr-list-group-item-warning .attr-list-group-item-heading {
3105
- color: inherit; }
3106
-
3107
- a.attr-list-group-item-warning:hover, button.attr-list-group-item-warning:hover, a.attr-list-group-item-warning:focus, button.attr-list-group-item-warning:focus {
3108
- color: #8a6d3b;
3109
- background-color: #faf2cc; }
3110
-
3111
- a.attr-list-group-item-warning.attr-active, button.attr-list-group-item-warning.attr-active, a.attr-list-group-item-warning.attr-active:hover, button.attr-list-group-item-warning.attr-active:hover, a.attr-list-group-item-warning.attr-active:focus, button.attr-list-group-item-warning.attr-active:focus {
3112
- color: #fff;
3113
- background-color: #8a6d3b;
3114
- border-color: #8a6d3b; }
3115
-
3116
- .attr-list-group-item-danger {
3117
- color: #a94442;
3118
- background-color: #f2dede; }
3119
-
3120
- a.attr-list-group-item-danger, button.attr-list-group-item-danger {
3121
- color: #a94442; }
3122
-
3123
- a.attr-list-group-item-danger .attr-list-group-item-heading, button.attr-list-group-item-danger .attr-list-group-item-heading {
3124
- color: inherit; }
3125
-
3126
- a.attr-list-group-item-danger:hover, button.attr-list-group-item-danger:hover, a.attr-list-group-item-danger:focus, button.attr-list-group-item-danger:focus {
3127
- color: #a94442;
3128
- background-color: #ebcccc; }
3129
-
3130
- a.attr-list-group-item-danger.attr-active, button.attr-list-group-item-danger.attr-active, a.attr-list-group-item-danger.attr-active:hover, button.attr-list-group-item-danger.attr-active:hover, a.attr-list-group-item-danger.attr-active:focus, button.attr-list-group-item-danger.attr-active:focus {
3131
- color: #fff;
3132
- background-color: #a94442;
3133
- border-color: #a94442; }
3134
-
3135
- .attr-list-group-item-heading {
3136
- margin-top: 0;
3137
- margin-bottom: 5px; }
3138
-
3139
- .attr-list-group-item-text {
3140
- margin-bottom: 0;
3141
- line-height: 1.3; }
3142
-
3143
- .attr-panel {
3144
- margin-bottom: 20px;
3145
- background-color: #fff;
3146
- border: 1px solid transparent;
3147
- border-radius: 4px;
3148
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
3149
- box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05); }
3150
-
3151
- .attr-panel-body {
3152
- padding: 15px; }
3153
-
3154
- .attr-panel-heading {
3155
- padding: 10px 15px;
3156
- border-bottom: 1px solid transparent;
3157
- border-top-left-radius: 3px;
3158
- border-top-right-radius: 3px; }
3159
-
3160
- .attr-panel-heading > .attr-dropdown .attr-dropdown-toggle {
3161
- color: inherit; }
3162
-
3163
- .attr-panel-title {
3164
- margin-top: 0;
3165
- margin-bottom: 0;
3166
- font-size: 16px;
3167
- color: inherit; }
3168
-
3169
- .attr-panel-title > a, .attr-panel-title > small, .attr-panel-title > .attr-small, .attr-panel-title > small > a, .attr-panel-title > .attr-small > a {
3170
- color: inherit; }
3171
-
3172
- .attr-panel-footer {
3173
- padding: 10px 15px;
3174
- background-color: #f5f5f5;
3175
- border-top: 1px solid #ddd;
3176
- border-bottom-right-radius: 3px;
3177
- border-bottom-left-radius: 3px; }
3178
-
3179
- .attr-panel > .attr-list-group, .attr-panel > .attr-panel-collapse > .attr-list-group {
3180
- margin-bottom: 0; }
3181
-
3182
- .attr-panel > .attr-list-group .attr-list-group-item, .attr-panel > .attr-panel-collapse > .attr-list-group .attr-list-group-item {
3183
- border-width: 1px 0;
3184
- border-radius: 0; }
3185
-
3186
- .attr-panel > .attr-list-group:first-child .attr-list-group-item:first-child, .attr-panel > .attr-panel-collapse > .attr-list-group:first-child .attr-list-group-item:first-child {
3187
- border-top: 0;
3188
- border-top-left-radius: 3px;
3189
- border-top-right-radius: 3px; }
3190
-
3191
- .attr-panel > .attr-list-group:last-child .attr-list-group-item:last-child, .attr-panel > .attr-panel-collapse > .attr-list-group:last-child .attr-list-group-item:last-child {
3192
- border-bottom: 0;
3193
- border-bottom-right-radius: 3px;
3194
- border-bottom-left-radius: 3px; }
3195
-
3196
- .attr-panel > .attr-panel-heading + .attr-panel-collapse > .attr-list-group .attr-list-group-item:first-child {
3197
- border-top-left-radius: 0;
3198
- border-top-right-radius: 0; }
3199
-
3200
- .attr-panel-heading + .attr-list-group .attr-list-group-item:first-child {
3201
- border-top-width: 0; }
3202
-
3203
- .attr-list-group + .attr-panel-footer {
3204
- border-top-width: 0; }
3205
-
3206
- .attr-panel > .attr-table, .attr-panel > .attr-table-responsive > .attr-table, .attr-panel > .attr-panel-collapse > .attr-table {
3207
- margin-bottom: 0; }
3208
-
3209
- .attr-panel > .attr-table caption, .attr-panel > .attr-table-responsive > .attr-table caption, .attr-panel > .attr-panel-collapse > .attr-table caption {
3210
- padding-right: 15px;
3211
- padding-left: 15px; }
3212
-
3213
- .attr-panel > .attr-table:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child {
3214
- border-top-left-radius: 3px;
3215
- border-top-right-radius: 3px; }
3216
-
3217
- .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child {
3218
- border-top-left-radius: 3px;
3219
- border-top-right-radius: 3px; }
3220
-
3221
- .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child td:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child td:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child td:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child td:first-child, .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child th:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child th:first-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child th:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child th:first-child {
3222
- border-top-left-radius: 3px; }
3223
-
3224
- .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child td:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child td:last-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child td:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child td:last-child, .attr-panel > .attr-table:first-child > thead:first-child > tr:first-child th:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > thead:first-child > tr:first-child th:last-child, .attr-panel > .attr-table:first-child > tbody:first-child > tr:first-child th:last-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child > tbody:first-child > tr:first-child th:last-child {
3225
- border-top-right-radius: 3px; }
3226
-
3227
- .attr-panel > .attr-table:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child {
3228
- border-bottom-right-radius: 3px;
3229
- border-bottom-left-radius: 3px; }
3230
-
3231
- .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child {
3232
- border-bottom-right-radius: 3px;
3233
- border-bottom-left-radius: 3px; }
3234
-
3235
- .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child td:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child td:first-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child td:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child td:first-child, .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child th:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child th:first-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child th:first-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child th:first-child {
3236
- border-bottom-left-radius: 3px; }
3237
-
3238
- .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child td:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child td:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child td:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child td:last-child, .attr-panel > .attr-table:last-child > tbody:last-child > tr:last-child th:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tbody:last-child > tr:last-child th:last-child, .attr-panel > .attr-table:last-child > tfoot:last-child > tr:last-child th:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child > tfoot:last-child > tr:last-child th:last-child {
3239
- border-bottom-right-radius: 3px; }
3240
-
3241
- .attr-panel > .attr-panel-body + .attr-table, .attr-panel > .attr-panel-body + .attr-table-responsive, .attr-panel > .attr-table + .attr-panel-body, .attr-panel > .attr-table-responsive + .attr-panel-body {
3242
- border-top: 1px solid #ddd; }
3243
-
3244
- .attr-panel > .attr-table > tbody:first-child > tr:first-child th, .attr-panel > .attr-table > tbody:first-child > tr:first-child td {
3245
- border-top: 0; }
3246
-
3247
- .attr-panel > .attr-table-bordered, .attr-panel > .attr-table-responsive > .attr-table-bordered {
3248
- border: 0; }
3249
-
3250
- .attr-panel > .attr-table-bordered > thead > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > th:first-child, .attr-panel > .attr-table-bordered > tbody > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > th:first-child, .attr-panel > .attr-table-bordered > tfoot > tr > th:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:first-child, .attr-panel > .attr-table-bordered > thead > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > td:first-child, .attr-panel > .attr-table-bordered > tbody > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > td:first-child, .attr-panel > .attr-table-bordered > tfoot > tr > td:first-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:first-child {
3251
- border-left: 0; }
3252
-
3253
- .attr-panel > .attr-table-bordered > thead > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > th:last-child, .attr-panel > .attr-table-bordered > tbody > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > th:last-child, .attr-panel > .attr-table-bordered > tfoot > tr > th:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > th:last-child, .attr-panel > .attr-table-bordered > thead > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr > td:last-child, .attr-panel > .attr-table-bordered > tbody > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr > td:last-child, .attr-panel > .attr-table-bordered > tfoot > tr > td:last-child, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr > td:last-child {
3254
- border-right: 0; }
3255
-
3256
- .attr-panel > .attr-table-bordered > thead > tr:first-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr:first-child > td, .attr-panel > .attr-table-bordered > tbody > tr:first-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:first-child > td, .attr-panel > .attr-table-bordered > thead > tr:first-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > thead > tr:first-child > th, .attr-panel > .attr-table-bordered > tbody > tr:first-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:first-child > th {
3257
- border-bottom: 0; }
3258
-
3259
- .attr-panel > .attr-table-bordered > tbody > tr:last-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > td, .attr-panel > .attr-table-bordered > tfoot > tr:last-child > td, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > td, .attr-panel > .attr-table-bordered > tbody > tr:last-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tbody > tr:last-child > th, .attr-panel > .attr-table-bordered > tfoot > tr:last-child > th, .attr-panel > .attr-table-responsive > .attr-table-bordered > tfoot > tr:last-child > th {
3260
- border-bottom: 0; }
3261
-
3262
- .attr-panel > .attr-table-responsive {
3263
- margin-bottom: 0;
3264
- border: 0; }
3265
-
3266
- .attr-panel-group {
3267
- margin-bottom: 20px; }
3268
-
3269
- .attr-panel-group .attr-panel {
3270
- margin-bottom: 0;
3271
- border-radius: 4px; }
3272
-
3273
- .attr-panel-group .attr-panel + .attr-panel {
3274
- margin-top: 5px; }
3275
-
3276
- .attr-panel-group .attr-panel-heading {
3277
- border-bottom: 0; }
3278
-
3279
- .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-panel-body, .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-list-group {
3280
- border-top: 1px solid #ddd; }
3281
-
3282
- .attr-panel-group .attr-panel-footer {
3283
- border-top: 0; }
3284
-
3285
- .attr-panel-group .attr-panel-footer + .attr-panel-collapse .attr-panel-body {
3286
- border-bottom: 1px solid #ddd; }
3287
-
3288
- .attr-panel-default {
3289
- border-color: #ddd; }
3290
-
3291
- .attr-panel-default > .attr-panel-heading {
3292
- color: #333;
3293
- background-color: #f5f5f5;
3294
- border-color: #ddd; }
3295
-
3296
- .attr-panel-default > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3297
- border-top-color: #ddd; }
3298
-
3299
- .attr-panel-default > .attr-panel-heading .attr-badge {
3300
- color: #f5f5f5;
3301
- background-color: #333; }
3302
-
3303
- .attr-panel-default > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3304
- border-bottom-color: #ddd; }
3305
-
3306
- .attr-panel-primary {
3307
- border-color: #337ab7; }
3308
-
3309
- .attr-panel-primary > .attr-panel-heading {
3310
- color: #fff;
3311
- background-color: #337ab7;
3312
- border-color: #337ab7; }
3313
-
3314
- .attr-panel-primary > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3315
- border-top-color: #337ab7; }
3316
-
3317
- .attr-panel-primary > .attr-panel-heading .attr-badge {
3318
- color: #337ab7;
3319
- background-color: #fff; }
3320
-
3321
- .attr-panel-primary > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3322
- border-bottom-color: #337ab7; }
3323
-
3324
- .attr-panel-success {
3325
- border-color: #d6e9c6; }
3326
-
3327
- .attr-panel-success > .attr-panel-heading {
3328
- color: #3c763d;
3329
- background-color: #dff0d8;
3330
- border-color: #d6e9c6; }
3331
-
3332
- .attr-panel-success > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3333
- border-top-color: #d6e9c6; }
3334
-
3335
- .attr-panel-success > .attr-panel-heading .attr-badge {
3336
- color: #dff0d8;
3337
- background-color: #3c763d; }
3338
-
3339
- .attr-panel-success > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3340
- border-bottom-color: #d6e9c6; }
3341
-
3342
- .attr-panel-info {
3343
- border-color: #bce8f1; }
3344
-
3345
- .attr-panel-info > .attr-panel-heading {
3346
- color: #31708f;
3347
- background-color: #d9edf7;
3348
- border-color: #bce8f1; }
3349
-
3350
- .attr-panel-info > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3351
- border-top-color: #bce8f1; }
3352
-
3353
- .attr-panel-info > .attr-panel-heading .attr-badge {
3354
- color: #d9edf7;
3355
- background-color: #31708f; }
3356
-
3357
- .attr-panel-info > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3358
- border-bottom-color: #bce8f1; }
3359
-
3360
- .attr-panel-warning {
3361
- border-color: #faebcc; }
3362
-
3363
- .attr-panel-warning > .attr-panel-heading {
3364
- color: #8a6d3b;
3365
- background-color: #fcf8e3;
3366
- border-color: #faebcc; }
3367
-
3368
- .attr-panel-warning > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3369
- border-top-color: #faebcc; }
3370
-
3371
- .attr-panel-warning > .attr-panel-heading .attr-badge {
3372
- color: #fcf8e3;
3373
- background-color: #8a6d3b; }
3374
-
3375
- .attr-panel-warning > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3376
- border-bottom-color: #faebcc; }
3377
-
3378
- .attr-panel-danger {
3379
- border-color: #ebccd1; }
3380
-
3381
- .attr-panel-danger > .attr-panel-heading {
3382
- color: #a94442;
3383
- background-color: #f2dede;
3384
- border-color: #ebccd1; }
3385
-
3386
- .attr-panel-danger > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
3387
- border-top-color: #ebccd1; }
3388
-
3389
- .attr-panel-danger > .attr-panel-heading .attr-badge {
3390
- color: #f2dede;
3391
- background-color: #a94442; }
3392
-
3393
- .attr-panel-danger > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
3394
- border-bottom-color: #ebccd1; }
3395
-
3396
- .attr-embed-responsive {
3397
- position: relative;
3398
- display: block;
3399
- height: 0;
3400
- padding: 0;
3401
- overflow: hidden; }
3402
-
3403
- .attr-embed-responsive .attr-embed-responsive-item, .attr-embed-responsive iframe, .attr-embed-responsive embed, .attr-embed-responsive object, .attr-embed-responsive video {
3404
- position: absolute;
3405
- top: 0;
3406
- bottom: 0;
3407
- left: 0;
3408
- width: 100%;
3409
- height: 100%;
3410
- border: 0; }
3411
-
3412
- .attr-embed-responsive-16by9 {
3413
- padding-bottom: 56.25%; }
3414
-
3415
- .attr-embed-responsive-4by3 {
3416
- padding-bottom: 75%; }
3417
-
3418
- .attr-well {
3419
- min-height: 20px;
3420
- padding: 19px;
3421
- margin-bottom: 20px;
3422
- background-color: #f5f5f5;
3423
- border: 1px solid #e3e3e3;
3424
- border-radius: 4px;
3425
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
3426
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05); }
3427
-
3428
- .attr-well blockquote {
3429
- border-color: #ddd;
3430
- border-color: rgba(0, 0, 0, 0.15); }
3431
-
3432
- .attr-well-lg {
3433
- padding: 24px;
3434
- border-radius: 6px; }
3435
-
3436
- .attr-well-sm {
3437
- padding: 9px;
3438
- border-radius: 3px; }
3439
-
3440
- .attr-close {
3441
- float: right;
3442
- font-size: 21px;
3443
- font-weight: bold;
3444
- line-height: 1;
3445
- color: #000;
3446
- text-shadow: 0 1px 0 #fff;
3447
- filter: alpha(opacity=20);
3448
- opacity: .2; }
3449
-
3450
- .attr-close:hover, .attr-close:focus {
3451
- color: #000;
3452
- text-decoration: none;
3453
- cursor: pointer;
3454
- filter: alpha(opacity=50);
3455
- opacity: .5; }
3456
-
3457
- button.attr-close {
3458
- -webkit-appearance: none;
3459
- padding: 0;
3460
- cursor: pointer;
3461
- background: transparent;
3462
- border: 0; }
3463
-
3464
- .attr-modal-open {
3465
- overflow: hidden; }
3466
-
3467
- .attr-modal {
3468
- position: fixed;
3469
- top: 0;
3470
- right: 0;
3471
- bottom: 0;
3472
- left: 0;
3473
- z-index: 1050;
3474
- display: none;
3475
- overflow: hidden;
3476
- -webkit-overflow-scrolling: touch;
3477
- outline: 0; }
3478
-
3479
- .attr-modal.attr-fade .attr-modal-dialog {
3480
- -webkit-transition: -webkit-transform .3s ease-out;
3481
- -o-transition: -o-transform .3s ease-out;
3482
- transition: -webkit-transform .3s ease-out;
3483
- -o-transition: transform .3s ease-out;
3484
- transition: transform .3s ease-out;
3485
- transition: transform .3s ease-out, -webkit-transform .3s ease-out;
3486
- -webkit-transform: translate(0, -25%);
3487
- -ms-transform: translate(0, -25%);
3488
- -o-transform: translate(0, -25%);
3489
- transform: translate(0, -25%); }
3490
-
3491
- .attr-modal.attr-in .attr-modal-dialog {
3492
- -webkit-transform: translate(0, 0);
3493
- -ms-transform: translate(0, 0);
3494
- -o-transform: translate(0, 0);
3495
- transform: translate(0, 0); }
3496
-
3497
- .attr-modal-open .attr-modal {
3498
- overflow-x: hidden;
3499
- overflow-y: auto; }
3500
-
3501
- .attr-modal-dialog {
3502
- position: relative;
3503
- width: auto;
3504
- margin: 10px; }
3505
-
3506
- .attr-modal-content {
3507
- position: relative;
3508
- background-color: #fff;
3509
- -webkit-background-clip: padding-box;
3510
- background-clip: padding-box;
3511
- border: 1px solid #999;
3512
- border: 1px solid rgba(0, 0, 0, 0.2);
3513
- border-radius: 6px;
3514
- outline: 0;
3515
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
3516
- box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }
3517
-
3518
- .attr-modal-backdrop {
3519
- position: fixed;
3520
- top: 0;
3521
- right: 0;
3522
- bottom: 0;
3523
- left: 0;
3524
- z-index: 1040;
3525
- background-color: #000; }
3526
-
3527
- .attr-modal-backdrop.attr-fade {
3528
- filter: alpha(opacity=0);
3529
- opacity: 0; }
3530
-
3531
- .attr-modal-backdrop.attr-in {
3532
- filter: alpha(opacity=50);
3533
- opacity: .5; }
3534
-
3535
- .attr-modal-header {
3536
- padding: 15px;
3537
- border-bottom: 1px solid #e5e5e5; }
3538
-
3539
- .attr-modal-header .attr-close {
3540
- margin-top: -2px; }
3541
-
3542
- .attr-modal-title {
3543
- margin: 0;
3544
- line-height: 1.42857143; }
3545
-
3546
- .attr-modal-body {
3547
- position: relative;
3548
- padding: 15px; }
3549
-
3550
- .attr-modal-footer {
3551
- padding: 15px;
3552
- text-align: right;
3553
- border-top: 1px solid #e5e5e5; }
3554
-
3555
- .attr-modal-footer .attr-btn + .attr-btn {
3556
- margin-bottom: 0;
3557
- margin-left: 5px; }
3558
-
3559
- .attr-modal-footer .attr-btn-group .attr-btn + .attr-btn {
3560
- margin-left: -1px; }
3561
-
3562
- .attr-modal-footer .attr-btn-block + .attr-btn-block {
3563
- margin-left: 0; }
3564
-
3565
- .attr-modal-scrollbar-measure {
3566
- position: absolute;
3567
- top: -9999px;
3568
- width: 50px;
3569
- height: 50px;
3570
- overflow: scroll; }
3571
-
3572
- @media (min-width: 768px) {
3573
- .attr-modal-dialog {
3574
- width: 600px;
3575
- margin: 30px auto; }
3576
- .attr-modal-content {
3577
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
3578
- box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }
3579
- .attr-modal-sm {
3580
- width: 300px; } }
3581
-
3582
- @media (min-width: 992px) {
3583
- .attr-modal-lg {
3584
- width: 900px; } }
3585
-
3586
- .attr-tooltip {
3587
- position: absolute;
3588
- z-index: 1070;
3589
- display: block;
3590
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3591
- font-size: 12px;
3592
- font-style: normal;
3593
- font-weight: normal;
3594
- line-height: 1.42857143;
3595
- text-align: left;
3596
- text-align: start;
3597
- text-decoration: none;
3598
- text-shadow: none;
3599
- text-transform: none;
3600
- letter-spacing: normal;
3601
- word-break: normal;
3602
- word-spacing: normal;
3603
- word-wrap: normal;
3604
- white-space: normal;
3605
- filter: alpha(opacity=0);
3606
- opacity: 0;
3607
- line-break: auto; }
3608
-
3609
- .attr-tooltip.attr-in {
3610
- filter: alpha(opacity=90);
3611
- opacity: .9; }
3612
-
3613
- .attr-tooltip.attr-top {
3614
- padding: 5px 0;
3615
- margin-top: -3px; }
3616
-
3617
- .attr-tooltip.attr-right {
3618
- padding: 0 5px;
3619
- margin-left: 3px; }
3620
-
3621
- .attr-tooltip.attr-bottom {
3622
- padding: 5px 0;
3623
- margin-top: 3px; }
3624
-
3625
- .attr-tooltip.attr-left {
3626
- padding: 0 5px;
3627
- margin-left: -3px; }
3628
-
3629
- .attr-tooltip-inner {
3630
- max-width: 200px;
3631
- padding: 3px 8px;
3632
- color: #fff;
3633
- text-align: center;
3634
- background-color: #000;
3635
- border-radius: 4px; }
3636
-
3637
- .attr-tooltip-arrow {
3638
- position: absolute;
3639
- width: 0;
3640
- height: 0;
3641
- border-color: transparent;
3642
- border-style: solid; }
3643
-
3644
- .attr-tooltip.attr-top .attr-tooltip-arrow {
3645
- bottom: 0;
3646
- left: 50%;
3647
- margin-left: -5px;
3648
- border-width: 5px 5px 0;
3649
- border-top-color: #000; }
3650
-
3651
- .attr-tooltip.attr-top-left .attr-tooltip-arrow {
3652
- right: 5px;
3653
- bottom: 0;
3654
- margin-bottom: -5px;
3655
- border-width: 5px 5px 0;
3656
- border-top-color: #000; }
3657
-
3658
- .attr-tooltip.attr-top-right .attr-tooltip-arrow {
3659
- bottom: 0;
3660
- left: 5px;
3661
- margin-bottom: -5px;
3662
- border-width: 5px 5px 0;
3663
- border-top-color: #000; }
3664
-
3665
- .attr-tooltip.attr-right .attr-tooltip-arrow {
3666
- top: 50%;
3667
- left: 0;
3668
- margin-top: -5px;
3669
- border-width: 5px 5px 5px 0;
3670
- border-right-color: #000; }
3671
-
3672
- .attr-tooltip.attr-left .attr-tooltip-arrow {
3673
- top: 50%;
3674
- right: 0;
3675
- margin-top: -5px;
3676
- border-width: 5px 0 5px 5px;
3677
- border-left-color: #000; }
3678
-
3679
- .attr-tooltip.attr-bottom .attr-tooltip-arrow {
3680
- top: 0;
3681
- left: 50%;
3682
- margin-left: -5px;
3683
- border-width: 0 5px 5px;
3684
- border-bottom-color: #000; }
3685
-
3686
- .attr-tooltip.attr-bottom-left .attr-tooltip-arrow {
3687
- top: 0;
3688
- right: 5px;
3689
- margin-top: -5px;
3690
- border-width: 0 5px 5px;
3691
- border-bottom-color: #000; }
3692
-
3693
- .attr-tooltip.attr-bottom-right .attr-tooltip-arrow {
3694
- top: 0;
3695
- left: 5px;
3696
- margin-top: -5px;
3697
- border-width: 0 5px 5px;
3698
- border-bottom-color: #000; }
3699
-
3700
- .attr-popover {
3701
- position: absolute;
3702
- top: 0;
3703
- left: 0;
3704
- z-index: 1060;
3705
- display: none;
3706
- max-width: 276px;
3707
- padding: 1px;
3708
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
3709
- font-size: 14px;
3710
- font-style: normal;
3711
- font-weight: normal;
3712
- line-height: 1.42857143;
3713
- text-align: left;
3714
- text-align: start;
3715
- text-decoration: none;
3716
- text-shadow: none;
3717
- text-transform: none;
3718
- letter-spacing: normal;
3719
- word-break: normal;
3720
- word-spacing: normal;
3721
- word-wrap: normal;
3722
- white-space: normal;
3723
- background-color: #fff;
3724
- -webkit-background-clip: padding-box;
3725
- background-clip: padding-box;
3726
- border: 1px solid #ccc;
3727
- border: 1px solid rgba(0, 0, 0, 0.2);
3728
- border-radius: 6px;
3729
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3730
- box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
3731
- line-break: auto; }
3732
-
3733
- .attr-popover.attr-top {
3734
- margin-top: -10px; }
3735
-
3736
- .attr-popover.attr-right {
3737
- margin-left: 10px; }
3738
-
3739
- .attr-popover.attr-bottom {
3740
- margin-top: 10px; }
3741
-
3742
- .attr-popover.attr-left {
3743
- margin-left: -10px; }
3744
-
3745
- .attr-popover-title {
3746
- padding: 8px 14px;
3747
- margin: 0;
3748
- font-size: 14px;
3749
- background-color: #f7f7f7;
3750
- border-bottom: 1px solid #ebebeb;
3751
- border-radius: 5px 5px 0 0; }
3752
-
3753
- .attr-popover-content {
3754
- padding: 9px 14px; }
3755
-
3756
- .attr-popover > .attr-arrow, .attr-popover > .attr-arrow:after {
3757
- position: absolute;
3758
- display: block;
3759
- width: 0;
3760
- height: 0;
3761
- border-color: transparent;
3762
- border-style: solid; }
3763
-
3764
- .attr-popover > .attr-arrow {
3765
- border-width: 11px; }
3766
-
3767
- .attr-popover > .attr-arrow:after {
3768
- content: "";
3769
- border-width: 10px; }
3770
-
3771
- .attr-popover.attr-top > .attr-arrow {
3772
- bottom: -11px;
3773
- left: 50%;
3774
- margin-left: -11px;
3775
- border-top-color: #999;
3776
- border-top-color: rgba(0, 0, 0, 0.25);
3777
- border-bottom-width: 0; }
3778
-
3779
- .attr-popover.attr-top > .attr-arrow:after {
3780
- bottom: 1px;
3781
- margin-left: -10px;
3782
- content: " ";
3783
- border-top-color: #fff;
3784
- border-bottom-width: 0; }
3785
-
3786
- .attr-popover.attr-right > .attr-arrow {
3787
- top: 50%;
3788
- left: -11px;
3789
- margin-top: -11px;
3790
- border-right-color: #999;
3791
- border-right-color: rgba(0, 0, 0, 0.25);
3792
- border-left-width: 0; }
3793
-
3794
- .attr-popover.attr-right > .attr-arrow:after {
3795
- bottom: -10px;
3796
- left: 1px;
3797
- content: " ";
3798
- border-right-color: #fff;
3799
- border-left-width: 0; }
3800
-
3801
- .attr-popover.attr-bottom > .attr-arrow {
3802
- top: -11px;
3803
- left: 50%;
3804
- margin-left: -11px;
3805
- border-top-width: 0;
3806
- border-bottom-color: #999;
3807
- border-bottom-color: rgba(0, 0, 0, 0.25); }
3808
-
3809
- .attr-popover.attr-bottom > .attr-arrow:after {
3810
- top: 1px;
3811
- margin-left: -10px;
3812
- content: " ";
3813
- border-top-width: 0;
3814
- border-bottom-color: #fff; }
3815
-
3816
- .attr-popover.attr-left > .attr-arrow {
3817
- top: 50%;
3818
- right: -11px;
3819
- margin-top: -11px;
3820
- border-right-width: 0;
3821
- border-left-color: #999;
3822
- border-left-color: rgba(0, 0, 0, 0.25); }
3823
-
3824
- .attr-popover.attr-left > .attr-arrow:after {
3825
- right: 1px;
3826
- bottom: -10px;
3827
- content: " ";
3828
- border-right-width: 0;
3829
- border-left-color: #fff; }
3830
-
3831
- .attr-carousel {
3832
- position: relative; }
3833
-
3834
- .attr-carousel-inner {
3835
- position: relative;
3836
- width: 100%;
3837
- overflow: hidden; }
3838
-
3839
- .attr-carousel-inner > .attr-item {
3840
- position: relative;
3841
- display: none;
3842
- -webkit-transition: .6s ease-in-out left;
3843
- -o-transition: .6s ease-in-out left;
3844
- transition: .6s ease-in-out left; }
3845
-
3846
- .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
3847
- line-height: 1; }
3848
-
3849
- @media all and (transform-3d), (-webkit-transform-3d) {
3850
- .attr-carousel-inner > .attr-item {
3851
- -webkit-transition: -webkit-transform .6s ease-in-out;
3852
- -o-transition: -o-transform .6s ease-in-out;
3853
- transition: -webkit-transform .6s ease-in-out;
3854
- -o-transition: transform .6s ease-in-out;
3855
- transition: transform .6s ease-in-out;
3856
- transition: transform .6s ease-in-out, -webkit-transform .6s ease-in-out;
3857
- -webkit-backface-visibility: hidden;
3858
- backface-visibility: hidden;
3859
- -webkit-perspective: 1000px;
3860
- perspective: 1000px; }
3861
- .attr-carousel-inner > .attr-item.attr-next, .attr-carousel-inner > .attr-item.attr-active.attr-right {
3862
- left: 0;
3863
- -webkit-transform: translate3d(100%, 0, 0);
3864
- transform: translate3d(100%, 0, 0); }
3865
- .attr-carousel-inner > .attr-item.attr-prev, .attr-carousel-inner > .attr-item.attr-active.attr-left {
3866
- left: 0;
3867
- -webkit-transform: translate3d(-100%, 0, 0);
3868
- transform: translate3d(-100%, 0, 0); }
3869
- .attr-carousel-inner > .attr-item.attr-next.attr-left, .attr-carousel-inner > .attr-item.attr-prev.attr-right, .attr-carousel-inner > .attr-item.attr-active {
3870
- left: 0;
3871
- -webkit-transform: translate3d(0, 0, 0);
3872
- transform: translate3d(0, 0, 0); } }
3873
-
3874
- .attr-carousel-inner > .attr-active, .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
3875
- display: block; }
3876
-
3877
- .attr-carousel-inner > .attr-active {
3878
- left: 0; }
3879
-
3880
- .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
3881
- position: absolute;
3882
- top: 0;
3883
- width: 100%; }
3884
-
3885
- .attr-carousel-inner > .attr-next {
3886
- left: 100%; }
3887
-
3888
- .attr-carousel-inner > .attr-prev {
3889
- left: -100%; }
3890
-
3891
- .attr-carousel-inner > .attr-next.attr-left, .attr-carousel-inner > .attr-prev.attr-right {
3892
- left: 0; }
3893
-
3894
- .attr-carousel-inner > .attr-active.attr-left {
3895
- left: -100%; }
3896
-
3897
- .attr-carousel-inner > .attr-active.attr-right {
3898
- left: 100%; }
3899
-
3900
- .attr-carousel-control {
3901
- position: absolute;
3902
- top: 0;
3903
- bottom: 0;
3904
- left: 0;
3905
- width: 15%;
3906
- font-size: 20px;
3907
- color: #fff;
3908
- text-align: center;
3909
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
3910
- background-color: rgba(0, 0, 0, 0);
3911
- filter: alpha(opacity=50);
3912
- opacity: .5; }
3913
-
3914
- .attr-carousel-control.attr-left {
3915
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3916
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3917
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
3918
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
3919
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
3920
- background-repeat: repeat-x; }
3921
-
3922
- .attr-carousel-control.attr-right {
3923
- right: 0;
3924
- left: auto;
3925
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3926
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3927
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
3928
- background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
3929
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
3930
- background-repeat: repeat-x; }
3931
-
3932
- .attr-carousel-control:hover, .attr-carousel-control:focus {
3933
- color: #fff;
3934
- text-decoration: none;
3935
- filter: alpha(opacity=90);
3936
- outline: 0;
3937
- opacity: .9; }
3938
-
3939
- .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next, .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-glyphicon-chevron-right {
3940
- position: absolute;
3941
- top: 50%;
3942
- z-index: 5;
3943
- display: inline-block;
3944
- margin-top: -10px; }
3945
-
3946
- .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-glyphicon-chevron-left {
3947
- left: 50%;
3948
- margin-left: -10px; }
3949
-
3950
- .attr-carousel-control .attr-icon-next, .attr-carousel-control .attr-glyphicon-chevron-right {
3951
- right: 50%;
3952
- margin-right: -10px; }
3953
-
3954
- .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next {
3955
- width: 20px;
3956
- height: 20px;
3957
- font-family: serif;
3958
- line-height: 1; }
3959
-
3960
- .attr-carousel-control .attr-icon-prev:before {
3961
- content: '\2039'; }
3962
-
3963
- .attr-carousel-control .attr-icon-next:before {
3964
- content: '\203a'; }
3965
-
3966
- .attr-carousel-indicators {
3967
- position: absolute;
3968
- bottom: 10px;
3969
- left: 50%;
3970
- z-index: 15;
3971
- width: 60%;
3972
- padding-left: 0;
3973
- margin-left: -30%;
3974
- text-align: center;
3975
- list-style: none; }
3976
-
3977
- .attr-carousel-indicators li {
3978
- display: inline-block;
3979
- width: 10px;
3980
- height: 10px;
3981
- margin: 1px;
3982
- text-indent: -999px;
3983
- cursor: pointer;
3984
- background-color: #000 \9;
3985
- background-color: rgba(0, 0, 0, 0);
3986
- border: 1px solid #fff;
3987
- border-radius: 10px; }
3988
-
3989
- .attr-carousel-indicators .attr-active {
3990
- width: 12px;
3991
- height: 12px;
3992
- margin: 0;
3993
- background-color: #fff; }
3994
-
3995
- .attr-carousel-caption {
3996
- position: absolute;
3997
- right: 15%;
3998
- bottom: 20px;
3999
- left: 15%;
4000
- z-index: 10;
4001
- padding-top: 20px;
4002
- padding-bottom: 20px;
4003
- color: #fff;
4004
- text-align: center;
4005
- text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6); }
4006
-
4007
- .attr-carousel-caption .attr-btn {
4008
- text-shadow: none; }
4009
-
4010
- @media screen and (min-width: 768px) {
4011
- .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-glyphicon-chevron-right, .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next {
4012
- width: 30px;
4013
- height: 30px;
4014
- margin-top: -10px;
4015
- font-size: 30px; }
4016
- .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-icon-prev {
4017
- margin-left: -10px; }
4018
- .attr-carousel-control .attr-glyphicon-chevron-right, .attr-carousel-control .attr-icon-next {
4019
- margin-right: -10px; }
4020
- .attr-carousel-caption {
4021
- right: 20%;
4022
- left: 20%;
4023
- padding-bottom: 30px; }
4024
- .attr-carousel-indicators {
4025
- bottom: 20px; } }
4026
-
4027
- .attr-clearfix:before, .attr-clearfix:after, .attr-dl-horizontal dd:before, .attr-dl-horizontal dd:after, .attr-container:before, .attr-container:after, .attr-container-fluid:before, .attr-container-fluid:after, .attr-row:before, .attr-row:after, .attr-form-horizontal .attr-form-group:before, .attr-form-horizontal .attr-form-group:after, .attr-btn-toolbar:before, .attr-btn-toolbar:after, .attr-btn-group-vertical > .attr-btn-group:before, .attr-btn-group-vertical > .attr-btn-group:after, .attr-nav:before, .attr-nav:after, .attr-navbar:before, .attr-navbar:after, .attr-navbar-header:before, .attr-navbar-header:after, .attr-navbar-collapse:before, .attr-navbar-collapse:after, .attr-pager:before, .attr-pager:after, .attr-panel-body:before, .attr-panel-body:after, .attr-modal-header:before, .attr-modal-header:after, .attr-modal-footer:before, .attr-modal-footer:after {
4028
- display: table;
4029
- content: " "; }
4030
-
4031
- .attr-clearfix:after, .attr-dl-horizontal dd:after, .attr-container:after, .attr-container-fluid:after, .attr-row:after, .attr-form-horizontal .attr-form-group:after, .attr-btn-toolbar:after, .attr-btn-group-vertical > .attr-btn-group:after, .attr-nav:after, .attr-navbar:after, .attr-navbar-header:after, .attr-navbar-collapse:after, .attr-pager:after, .attr-panel-body:after, .attr-modal-header:after, .attr-modal-footer:after {
4032
- clear: both; }
4033
-
4034
- .attr-center-block {
4035
- display: block;
4036
- margin-right: auto;
4037
- margin-left: auto; }
4038
-
4039
- .attr-pull-right {
4040
- float: right !important; }
4041
-
4042
- .attr-pull-left {
4043
- float: left !important; }
4044
-
4045
- .attr-hide {
4046
- display: none !important; }
4047
-
4048
- .attr-show {
4049
- display: block !important; }
4050
-
4051
- .attr-invisible {
4052
- visibility: hidden; }
4053
-
4054
- .attr-text-hide {
4055
- font: 0/0 a;
4056
- color: transparent;
4057
- text-shadow: none;
4058
- background-color: transparent;
4059
- border: 0; }
4060
-
4061
- .attr-hidden {
4062
- display: none !important; }
4063
-
4064
- .attr-affix {
4065
- position: fixed; }
4066
-
4067
- @-ms-viewport {
4068
- width: device-width; }
4069
-
4070
- .attr-visible-xs, .attr-visible-sm, .attr-visible-md, .attr-visible-lg {
4071
- display: none !important; }
4072
-
4073
- .attr-visible-xs-block, .attr-visible-xs-inline, .attr-visible-xs-inline-block, .attr-visible-sm-block, .attr-visible-sm-inline, .attr-visible-sm-inline-block, .attr-visible-md-block, .attr-visible-md-inline, .attr-visible-md-inline-block, .attr-visible-lg-block, .attr-visible-lg-inline, .attr-visible-lg-inline-block {
4074
- display: none !important; }
4075
-
4076
- @media (max-width: 767px) {
4077
- .attr-visible-xs {
4078
- display: block !important; }
4079
- table.attr-visible-xs {
4080
- display: table !important; }
4081
- tr.attr-visible-xs {
4082
- display: table-row !important; }
4083
- th.attr-visible-xs, td.attr-visible-xs {
4084
- display: table-cell !important; } }
4085
-
4086
- @media (max-width: 767px) {
4087
- .attr-visible-xs-block {
4088
- display: block !important; } }
4089
-
4090
- @media (max-width: 767px) {
4091
- .attr-visible-xs-inline {
4092
- display: inline !important; } }
4093
-
4094
- @media (max-width: 767px) {
4095
- .attr-visible-xs-inline-block {
4096
- display: inline-block !important; } }
4097
-
4098
- @media (min-width: 768px) and (max-width: 991px) {
4099
- .attr-visible-sm {
4100
- display: block !important; }
4101
- table.attr-visible-sm {
4102
- display: table !important; }
4103
- tr.attr-visible-sm {
4104
- display: table-row !important; }
4105
- th.attr-visible-sm, td.attr-visible-sm {
4106
- display: table-cell !important; } }
4107
-
4108
- @media (min-width: 768px) and (max-width: 991px) {
4109
- .attr-visible-sm-block {
4110
- display: block !important; } }
4111
-
4112
- @media (min-width: 768px) and (max-width: 991px) {
4113
- .attr-visible-sm-inline {
4114
- display: inline !important; } }
4115
-
4116
- @media (min-width: 768px) and (max-width: 991px) {
4117
- .attr-visible-sm-inline-block {
4118
- display: inline-block !important; } }
4119
-
4120
- @media (min-width: 992px) and (max-width: 1199px) {
4121
- .attr-visible-md {
4122
- display: block !important; }
4123
- table.attr-visible-md {
4124
- display: table !important; }
4125
- tr.attr-visible-md {
4126
- display: table-row !important; }
4127
- th.attr-visible-md, td.attr-visible-md {
4128
- display: table-cell !important; } }
4129
-
4130
- @media (min-width: 992px) and (max-width: 1199px) {
4131
- .attr-visible-md-block {
4132
- display: block !important; } }
4133
-
4134
- @media (min-width: 992px) and (max-width: 1199px) {
4135
- .attr-visible-md-inline {
4136
- display: inline !important; } }
4137
-
4138
- @media (min-width: 992px) and (max-width: 1199px) {
4139
- .attr-visible-md-inline-block {
4140
- display: inline-block !important; } }
4141
-
4142
- @media (min-width: 1200px) {
4143
- .attr-visible-lg {
4144
- display: block !important; }
4145
- table.attr-visible-lg {
4146
- display: table !important; }
4147
- tr.attr-visible-lg {
4148
- display: table-row !important; }
4149
- th.attr-visible-lg, td.attr-visible-lg {
4150
- display: table-cell !important; } }
4151
-
4152
- @media (min-width: 1200px) {
4153
- .attr-visible-lg-block {
4154
- display: block !important; } }
4155
-
4156
- @media (min-width: 1200px) {
4157
- .attr-visible-lg-inline {
4158
- display: inline !important; } }
4159
-
4160
- @media (min-width: 1200px) {
4161
- .attr-visible-lg-inline-block {
4162
- display: inline-block !important; } }
4163
-
4164
- @media (max-width: 767px) {
4165
- .attr-hidden-xs {
4166
- display: none !important; } }
4167
-
4168
- @media (min-width: 768px) and (max-width: 991px) {
4169
- .attr-hidden-sm {
4170
- display: none !important; } }
4171
-
4172
- @media (min-width: 992px) and (max-width: 1199px) {
4173
- .attr-hidden-md {
4174
- display: none !important; } }
4175
-
4176
- @media (min-width: 1200px) {
4177
- .attr-hidden-lg {
4178
- display: none !important; } }
4179
-
4180
- .attr-visible-print {
4181
- display: none !important; }
4182
-
4183
- @media print {
4184
- .attr-visible-print {
4185
- display: block !important; }
4186
- table.attr-visible-print {
4187
- display: table !important; }
4188
- tr.attr-visible-print {
4189
- display: table-row !important; }
4190
- th.attr-visible-print, td.attr-visible-print {
4191
- display: table-cell !important; } }
4192
-
4193
- .attr-visible-print-block {
4194
- display: none !important; }
4195
-
4196
- @media print {
4197
- .attr-visible-print-block {
4198
- display: block !important; } }
4199
-
4200
- .attr-visible-print-inline {
4201
- display: none !important; }
4202
-
4203
- @media print {
4204
- .attr-visible-print-inline {
4205
- display: inline !important; } }
4206
-
4207
- .attr-visible-print-inline-block {
4208
- display: none !important; }
4209
-
4210
- @media print {
4211
- .attr-visible-print-inline-block {
4212
- display: inline-block !important; } }
4213
-
4214
- @media print {
4215
- .attr-hidden-print {
4216
- display: none !important; } }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/bootstrap/utilities/_align.css DELETED
@@ -1,17 +0,0 @@
1
- .align-baseline {
2
- vertical-align: baseline !important; }
3
-
4
- .align-top {
5
- vertical-align: top !important; }
6
-
7
- .align-middle {
8
- vertical-align: middle !important; }
9
-
10
- .align-bottom {
11
- vertical-align: bottom !important; }
12
-
13
- .align-text-bottom {
14
- vertical-align: text-bottom !important; }
15
-
16
- .align-text-top {
17
- vertical-align: text-top !important; }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/bootstrap/utilities/_visibility.css DELETED
@@ -1,5 +0,0 @@
1
- .visible {
2
- visibility: visible !important; }
3
-
4
- .invisible {
5
- visibility: hidden !important; }
 
 
 
 
 
libs/framework/assets/css/customizer.css DELETED
@@ -1,623 +0,0 @@
1
- /* ==========================================================================
2
- CSS for Customizer Custom Controls
3
- ========================================================================== */
4
-
5
- /* ==========================================================================
6
- Standard Selection
7
- ========================================================================== */
8
- .customize-control select,
9
- .select2-container--default .selection .select2-selection--single {
10
- border: none;
11
- background: #fcfcff;
12
- position: relative;
13
- border-radius: 0;
14
- height: 27px;
15
- line-height: 27px;
16
- outline: none;
17
- -webkit-box-shadow: none;
18
- box-shadow: none;
19
- }
20
-
21
- .wp-customizer .select2-container--default .selection .select2-selection--multiple {
22
- border: none;
23
- background: #fcfcff;
24
- border-radius: 0;
25
- height: auto;
26
- outline: none;
27
- -webkit-box-shadow: none;
28
- box-shadow: none;
29
- }
30
-
31
- .wp-customizer .select2-container--default .select2-selection--multiple .select2-selection__rendered {
32
- width: 95%;
33
- }
34
-
35
- .wp-customizer .select2-container--default .select2-selection--multiple .select2-selection__clear {
36
- position: absolute;
37
- right: 0;
38
- }
39
-
40
- .wp-customizer .select2-container .select2-dropdown {
41
- z-index: 900000;
42
- }
43
-
44
- .customize-control select:active,
45
- .customize-control select:focus {
46
- outline: none;
47
- -webkit-box-shadow: none;
48
- box-shadow: none;
49
- }
50
-
51
- /* ==========================================================================
52
- Standard Input
53
- ========================================================================== */
54
- input[type="text"],
55
- input[type="number"],
56
- input[type="url"],
57
- input[type="email"],
58
- input[type="date"] {
59
- background: #fcfcff;
60
- position: relative;
61
- border-radius: 0;
62
- border: 1px solid #eee;
63
- height: 27px;
64
- line-height: 27px;
65
- outline: none;
66
- -webkit-box-shadow: none;
67
- box-shadow: none;
68
- }
69
-
70
- input[type="text"]:active,
71
- input[type="text"]:focus,
72
- input[type="number"]:active,
73
- input[type="number"]:focus {
74
- outline: none;
75
- -webkit-box-shadow: none;
76
- box-shadow: none;
77
- }
78
-
79
- /* ==========================================================================
80
- Simple Notice
81
- ========================================================================== */
82
-
83
- .simple-notice-custom-control .customize-control-description {
84
- line-height: 1.6
85
- }
86
-
87
- .simple-notice-custom-control code {
88
- font-size: 90%;
89
- padding: 2px 4px;
90
- }
91
-
92
- /* ==========================================================================
93
- Textarea/TinyMCE
94
- ========================================================================== */
95
- .tinymce-control textarea {
96
- width: 100%;
97
- padding: 10px;
98
- }
99
-
100
- /* ==========================================================================
101
- Text Radio Buttons
102
- ========================================================================== */
103
- .text_radio_button_control:after {
104
- content: " ";
105
- display: block;
106
- clear: both;
107
- }
108
- .text_radio_button_control .radio-buttons {
109
- display: inline-block;
110
- border: 1px solid #f9f9fe;
111
- }
112
- .text_radio_button_control .radio-button-label {
113
- cursor: pointer;
114
- float: left;
115
- }
116
- .text_radio_button_control .radio-button-label > input {
117
- display: none;
118
- }
119
- .text_radio_button_control .radio-button-label span {
120
- cursor: pointer;
121
- font-weight: 500;
122
- border: 2px solid #f9f9fe;
123
- margin: 0;
124
- background-color: #eee;
125
- padding: 5px 15px;
126
- display: inline-block;
127
- }
128
- .text_radio_button_control .radio-button-label span:hover {
129
- background-color: rgba(255, 255, 255, .2);
130
- color: #2885bb;
131
- }
132
- .text_radio_button_control .radio-button-label > input:checked + span {
133
- background-color: #2084bd;
134
- color: #fff;
135
- }
136
- .text_radio_button_control .radio-button-label > input:checked + span:hover {
137
- color: #fff;
138
- }
139
-
140
- /* ==========================================================================
141
- Image Radio Buttons
142
- ========================================================================== */
143
- .image_radio_button_control .radio-button-label > input {
144
- display: none;
145
- }
146
- .image_radio_button_control .radio-button-label > img {
147
- cursor: pointer;
148
- border: 3px solid #ddd;
149
- }
150
- .image_radio_button_control .radio-button-label > input:checked + img {
151
- border: 3px solid #2885bb;
152
- }
153
-
154
- /* ==========================================================================
155
- Image Checkboxes
156
- ========================================================================== */
157
- .image_checkbox_control .checkbox-label > input {
158
- display: none;
159
- }
160
- .image_checkbox_control .checkbox-label > img {
161
- cursor: pointer;
162
- border: 3px solid #ddd;
163
- }
164
- .image_checkbox_control .checkbox-label > input:checked + img {
165
- border: 3px solid #2885bb;
166
- }
167
-
168
- /* ==========================================================================
169
- Slider
170
- ========================================================================== */
171
- .slider-custom-control {
172
- margin-bottom: 30px;
173
- }
174
- .slider-custom-control input[type=number]::-webkit-inner-spin-button,
175
- .slider-custom-control input[type=number]::-webkit-outer-spin-button {
176
- -webkit-appearance: none;
177
- margin: 0;
178
- }
179
- .slider-custom-control input[type=number] {
180
- -moz-appearance: textfield;
181
- }
182
- .slider-custom-control .customize-control-title {
183
- display: inline-block;
184
- }
185
- .slider-custom-control input[type=number] {
186
- text-align: right;
187
- width: 50px;
188
- float: right;
189
- }
190
- .slider-custom-control .slider {
191
- width: 85%;
192
- float: left;
193
- margin: 20px 0 10px;
194
- }
195
- .slider-custom-control .slider-reset {
196
- float: right;
197
- cursor: pointer;
198
- }
199
- .slider-custom-control .slider-value {
200
- border: none;
201
- text-align: right;
202
- width: 50px;
203
- margin-right: 5px;
204
- }
205
- .slider-custom-control .slider-value,
206
- .slider-custom-control .slider-unit {
207
- float: right;
208
- }
209
- .slider-custom-control .ui-widget.ui-widget-content {
210
- border: 1px solid #f4f4f4;
211
- }
212
- .slider-custom-control .ui-corner-all,
213
- .slider-custom-control .ui-corner-bottom,
214
- .slider-custom-control .ui-corner-right,
215
- .slider-custom-control .ui-corner-br {
216
- border-bottom-right-radius: 3px;
217
- }
218
- .slider-custom-control .ui-corner-all,
219
- .slider-custom-control .ui-corner-bottom,
220
- .slider-custom-control .ui-corner-left,
221
- .slider-custom-control .ui-corner-bl {
222
- border-bottom-left-radius: 3px;
223
- }
224
- .slider-custom-control .ui-corner-all,
225
- .slider-custom-control .ui-corner-top,
226
- .slider-custom-control .ui-corner-right,
227
- .slider-custom-control .ui-corner-tr {
228
- border-top-right-radius: 3px;
229
- }
230
- .slider-custom-control .ui-corner-all,
231
- .slider-custom-control .ui-corner-top,
232
- .slider-custom-control .ui-corner-left,
233
- .slider-custom-control .ui-corner-tl {
234
- border-top-left-radius: 3px;
235
- }
236
- .slider-custom-control .ui-widget-content {
237
- background: #f4f4f4 none repeat scroll 0 0;
238
- color: #333;
239
- }
240
- .slider-custom-control .ui-slider-horizontal {
241
- height: 3px;
242
- }
243
- .slider-custom-control .ui-slider {
244
- position: relative;
245
- text-align: left;
246
- }
247
- .slider-custom-control .ui-state-default,
248
- .slider-custom-control .ui-widget-content .ui-state-default,
249
- .slider-custom-control .ui-widget-header .ui-state-default,
250
- .slider-custom-control .ui-button,
251
- .slider-custom-control .ui-button.ui-state-disabled:hover,
252
- .slider-custom-control .ui-button.ui-state-disabled:active {
253
- background: #2885bb none repeat scroll 0 0;
254
- border: 1px solid #2885bb;
255
- color: #454545;
256
- font-weight: normal;
257
- }
258
- .slider-custom-control .ui-slider-horizontal .ui-slider-handle {
259
- margin-left: -7px;
260
- top: -7px;
261
- border-radius: 50%;
262
- }
263
- .slider-custom-control .ui-slider .ui-slider-handle {
264
- cursor: pointer;
265
- height: 14px;
266
- position: absolute;
267
- width: 14px;
268
- z-index: 2;
269
- }
270
- .slider-custom-control .dashicons-image-rotate {
271
- margin-top: 10px;
272
- color: #d4d4d4;
273
- size: 16px;
274
- }
275
- .slider-custom-control .dashicons-image-rotate:hover {
276
- color: #a7a7a7;
277
- }
278
-
279
- /* ==========================================================================
280
- Toggle Switch
281
- ========================================================================== */
282
- .toggle-switch-control .customize-control-title {
283
- display: inline-block;
284
- }
285
-
286
- .toggle-switch {
287
- position: relative;
288
- width: 64px;
289
- -webkit-user-select: none;
290
- -moz-user-select: none;
291
- -ms-user-select: none;
292
- float: right;
293
- }
294
-
295
- .toggle-switch .toggle-switch-checkbox {
296
- display: none;
297
- }
298
-
299
- .toggle-switch .toggle-switch-label {
300
- display: block;
301
- overflow: hidden;
302
- cursor: pointer;
303
- border: 2px solid #ddd;
304
- border-radius: 20px;
305
- padding: 0;
306
- margin: 0;
307
- }
308
-
309
- .toggle-switch-inner {
310
- display: block;
311
- width: 200%;
312
- margin-left: -100%;
313
- transition: margin 0.3s ease-in 0s;
314
- }
315
-
316
- .toggle-switch-inner:before,
317
- .toggle-switch-inner:after {
318
- display: block;
319
- float: left;
320
- width: 50%;
321
- height: 22px;
322
- padding: 0;
323
- line-height: 22px;
324
- font-size: 14px;
325
- color: white;
326
- font-family: Trebuchet, Arial, sans-serif;
327
- font-weight: bold;
328
- box-sizing: border-box;
329
- }
330
-
331
- .toggle-switch-inner:before {
332
- content: "ON";
333
- padding-left: 8px;
334
- background-color: #2885bb;
335
- color: #FFFFFF;
336
- }
337
-
338
- .toggle-switch-inner:after {
339
- content: "OFF";
340
- padding-right: 8px;
341
- background-color: #EEEEEE;
342
- color: #999999;
343
- text-align: right;
344
- }
345
-
346
- .toggle-switch-switch {
347
- display: block;
348
- width: 16px;
349
- margin: 3px;
350
- background: #FFFFFF;
351
- position: absolute;
352
- top: 0;
353
- bottom: 0;
354
- right: 38px;
355
- border: 2px solid #ddd;
356
- border-radius: 20px;
357
- transition: all 0.3s ease-in 0s;
358
- }
359
-
360
- .toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-inner {
361
- margin-left: 0;
362
- }
363
-
364
- .toggle-switch-checkbox:checked + .toggle-switch-label .toggle-switch-switch {
365
- right: 0px;
366
- }
367
-
368
- /* ==========================================================================
369
- Sortable Repeater
370
- ========================================================================== */
371
- .sortable {
372
- list-style-type: none;
373
- margin: 0;
374
- padding: 0;
375
- }
376
- .sortable input[type="text"] {
377
- margin: 5px 5px 5px 0;
378
- width: 80%;
379
- }
380
- .sortable div {
381
- cursor: move;
382
- }
383
- .customize-control-sortable-repeater-delete {
384
- color: #d4d4d4;
385
- }
386
- .customize-control-sortable-repeater-delete:hover {
387
- color: #f00;
388
- }
389
- .customize-control-sortable-repeater-delete .dashicons-no-alt {
390
- text-decoration: none;
391
- margin: 8px 0 0 0;
392
- font-weight: 600;
393
- }
394
- .customize-control-sortable-repeater-delete:active,
395
- .customize-control-sortable-repeater-delete:focus {
396
- outline: none;
397
- -webkit-box-shadow: none;
398
- box-shadow: none;
399
- }
400
- .repeater .dashicons-sort {
401
- margin: 8px 5px 0 5px;
402
- color: #d4d4d4;
403
- }
404
- .repeater .dashicons-sort:hover {
405
- color: #a7a7a7;
406
- }
407
-
408
- /* ==========================================================================
409
- Single Accordion
410
- ========================================================================== */
411
- .single-accordion-toggle {
412
- font-size: 14px;
413
- font-weight: 600;
414
- line-height: 24px;
415
- padding: 10px 5px 5px 0;
416
- cursor: pointer;
417
- }
418
- .accordion-icon-toggle {
419
- font-size: 18px;
420
- margin-left: 5px;
421
- margin-top: 5px;
422
- -webkit-transition: -webkit-transform 0.3s ease-in-out;
423
- -moz-transition: -moz-transform 0.3s ease-in-out;
424
- -o-transition: -o-transform 0.3s ease-in-out;
425
- transition: transform 0.3s ease-in-out;
426
- }
427
- .single-accordion-toggle-rotate .accordion-icon-toggle {
428
- filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=-0.5);
429
- -webkit-transform: rotate(-45deg);
430
- -moz-transform: rotate(-45deg);
431
- -ms-transform: rotate(-45deg);
432
- -o-transform: rotate(-45deg);
433
- transform: rotate(-45deg);
434
- display: inline-block;
435
- }
436
- .single-accordion {
437
- display: none;
438
- }
439
- .single-accordion ul {
440
- margin: 0;
441
- padding: 0;
442
- }
443
- .single-accordion li {
444
- background-color: #e4e4e4;
445
- color: #888;
446
- width: 115px;
447
- display: inline-block;
448
- padding: 5px;
449
- margin: 5px;
450
- text-align: center;
451
- }
452
- .single-accordion li i {
453
- margin-left: 5px;
454
- }
455
-
456
- /* ==========================================================================
457
- Alpha Color Picker
458
- ========================================================================== */
459
- .customize-control-alpha-color .wp-picker-container .iris-picker {
460
- border-bottom:none;
461
- }
462
-
463
- .customize-control-alpha-color .wp-picker-container {
464
- max-width: 257px;
465
- }
466
-
467
- .customize-control-alpha-color .wp-picker-open + .wp-picker-input-wrap {
468
- width: 100%;
469
- }
470
-
471
- .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
472
- float: left;
473
- width: 195px;
474
- }
475
-
476
- .customize-control-alpha-color .wp-picker-input-wrap .button {
477
- margin-left: 0;
478
- float: right;
479
- }
480
-
481
- .wp-picker-container .wp-picker-open ~ .wp-picker-holder .alpha-color-picker-container {
482
- display: block;
483
- }
484
-
485
- .alpha-color-picker-container {
486
- border: 1px solid #dfdfdf;
487
- border-top: none;
488
- display: none;
489
- background: #FFF;
490
- padding: 0 11px 10px;
491
- position: relative;
492
- }
493
-
494
- .alpha-color-picker-container .ui-widget-content,
495
- .alpha-color-picker-container .ui-widget-header,
496
- .alpha-color-picker-wrap .ui-state-focus {
497
- background: transparent;
498
- border: none;
499
- }
500
-
501
- .alpha-color-picker-wrap a.iris-square-value:focus {
502
- -webkit-box-shadow: none;
503
- box-shadow: none;
504
- }
505
-
506
- .alpha-color-picker-container .ui-slider {
507
- position: relative;
508
- z-index: 1;
509
- height: 24px;
510
- text-align: center;
511
- margin: 0 auto;
512
- width: 88%;
513
- width: calc( 100% - 28px );
514
- }
515
-
516
- .alpha-color-picker-container .ui-slider-handle,
517
- .alpha-color-picker-container .ui-widget-content .ui-state-default {
518
- color: #777;
519
- background-color: #FFF;
520
- text-shadow: 0 1px 0 #FFF;
521
- text-decoration: none;
522
- position: absolute;
523
- z-index: 2;
524
- box-shadow: 0 1px 2px rgba(0,0,0,0.2);
525
- border: 1px solid #aaa;
526
- -webkit-border-radius: 4px;
527
- -moz-border-radius: 4px;
528
- border-radius: 4px;
529
- margin-top: -2px;
530
- top: 0;
531
- height: 26px;
532
- width: 26px;
533
- cursor: ew-resize;
534
- font-size: 0;
535
- padding: 0;
536
- line-height: 27px;
537
- margin-left: -14px;
538
- }
539
-
540
- .alpha-color-picker-container .ui-slider-handle.show-opacity {
541
- font-size: 12px;
542
- }
543
-
544
- .alpha-color-picker-container .click-zone {
545
- width: 14px;
546
- height: 24px;
547
- display: block;
548
- position: absolute;
549
- left: 10px;
550
- }
551
-
552
- .alpha-color-picker-container .max-click-zone {
553
- right: 10px;
554
- left: auto;
555
- }
556
-
557
- .alpha-color-picker-container .transparency {
558
- height: 24px;
559
- width: 100%;
560
- background-color: #FFF;
561
- background-image: url(../images/color-picker-transparency-grid.png);
562
- box-shadow: 0 0 5px rgba(0,0,0,0.4) inset;
563
- -webkit-border-radius: 3px;
564
- -moz-border-radius: 3px;
565
- border-radius: 3px;
566
- padding: 0;
567
- margin-top: -24px;
568
- }
569
-
570
- @media only screen and (max-width: 782px) {
571
- .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
572
- width: 184px;
573
- }
574
- }
575
-
576
- @media only screen and (max-width: 640px) {
577
- .customize-control-alpha-color .wp-picker-input-wrap input[type="text"].wp-color-picker.alpha-color-control {
578
- width: 172px;
579
- height: 33px;
580
- }
581
- }
582
-
583
- /* ==========================================================================
584
- Alpha Color Picker & Standard Color Picker
585
- ========================================================================== */
586
- .customize-control-color .wp-color-result,
587
- .customize-control-alpha-color .wp-color-result {
588
- border: none;
589
- box-shadow: none;
590
- }
591
-
592
- .customize-control-color .wp-color-result:after,
593
- .customize-control-alpha-color .wp-color-result:after {
594
- border: none;
595
- }
596
-
597
- .customize-control-color .wp-color-result .wp-color-result-text,
598
- .customize-control-alpha-color .wp-color-result .wp-color-result-text {
599
- line-height: 24px;
600
- border-left: none;
601
- }
602
-
603
- .wp-picker-holder .iris-picker .iris-palette {
604
- box-shadow: none;
605
- }
606
-
607
- .wp-picker-container .iris-picker,
608
- .wp-picker-container .alpha-color-picker-container {
609
- border-radius: 0;
610
- border: none;
611
- }
612
-
613
- .wp-picker-container .alpha-color-picker-container {
614
- width: 233px;
615
- }
616
-
617
- /* ==========================================================================
618
- Google Fonts Select
619
- ========================================================================== */
620
- .google_fonts_select_control .google-fonts,
621
- .google_fonts_select_control .weight-style {
622
- margin-bottom: 10px;
623
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
libs/framework/assets/css/framework.css CHANGED
@@ -1 +1 @@
1
- .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail>img,.attr-thumbnail a>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:normal;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;-o-text-overflow:ellipsis;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-md-1,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-sm-1,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-xs-1,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.attr-checkbox-inline input[type=checkbox],.attr-checkbox input[type=checkbox],.attr-radio-inline input[type=radio],.attr-radio input[type=radio]{position:absolute;margin-top:4px\9;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-checkbox label,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-radio-inline label,.attr-has-success.attr-radio label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-checkbox label,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-radio-inline label,.attr-has-warning.attr-radio label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-checkbox label,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-radio-inline label,.attr-has-error.attr-radio label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:normal;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:normal;color:#337ab7;border-radius:0}.attr-btn-link,.attr-btn-link.attr-active,.attr-btn-link:active,.attr-btn-link[disabled],fieldset[disabled] .attr-btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.attr-btn-link,.attr-btn-link:active,.attr-btn-link:focus,.attr-btn-link:hover{border-color:transparent}.attr-btn-link:focus,.attr-btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.attr-btn-link[disabled]:focus,.attr-btn-link[disabled]:hover,fieldset[disabled] .attr-btn-link:focus,fieldset[disabled] .attr-btn-link:hover{color:#777;text-decoration:none}.attr-btn-group-lg>.attr-btn,.attr-btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-btn-group-sm>.attr-btn,.attr-btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-group-xs>.attr-btn,.attr-btn-xs{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.attr-btn-block{display:block;width:100%}.attr-btn-block+.attr-btn-block{margin-top:5px}input[type=button].attr-btn-block,input[type=reset].attr-btn-block,input[type=submit].attr-btn-block{width:100%}.attr-fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.attr-fade.attr-in{opacity:1}.attr-collapse{display:none}.attr-collapse.attr-in{display:block}tr.attr-collapse.attr-in{display:table-row}tbody.attr-collapse.attr-in{display:table-row-group}.attr-collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height, visibility;-o-transition-property:height, visibility;transition-property:height, visibility}.attr-caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px dashed;border-top:4px solid\9;border-right:4px solid transparent;border-left:4px solid transparent}.attr-dropdown,.attr-dropup{position:relative}.attr-dropdown-toggle:focus{outline:0}.attr-dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:14px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0, 0, 0, 0.175);box-shadow:0 6px 12px rgba(0, 0, 0, 0.175)}.attr-dropdown-menu.attr-pull-right{right:0;left:auto}.attr-dropdown-menu .attr-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.attr-dropdown-menu>li>a:focus,.attr-dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.attr-dropdown-menu>.attr-active>a,.attr-dropdown-menu>.attr-active>a:focus,.attr-dropdown-menu>.attr-active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.attr-dropdown-menu>.attr-disabled>a,.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{color:#777}.attr-dropdown-menu>.attr-disabled>a:focus,.attr-dropdown-menu>.attr-disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}.attr-open>.attr-dropdown-menu{display:block}.attr-open>a{outline:0}.attr-dropdown-menu-right{right:0;left:auto}.attr-dropdown-menu-left{right:auto;left:0}.attr-dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.attr-dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.attr-pull-right>.attr-dropdown-menu{right:0;left:auto}.attr-dropup .attr-caret,.attr-navbar-fixed-bottom .attr-dropdown .attr-caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid\9}.attr-dropup .attr-dropdown-menu,.attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){.attr-navbar-right .attr-dropdown-menu{right:0;left:auto}.attr-navbar-right .attr-dropdown-menu-left{right:auto;left:0}}.attr-btn-group,.attr-btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.attr-btn-group-vertical>.attr-btn,.attr-btn-group>.attr-btn{position:relative;float:left}.attr-btn-group-vertical>.attr-btn.attr-active,.attr-btn-group-vertical>.attr-btn:active,.attr-btn-group-vertical>.attr-btn:focus,.attr-btn-group-vertical>.attr-btn:hover,.attr-btn-group>.attr-btn.attr-active,.attr-btn-group>.attr-btn:active,.attr-btn-group>.attr-btn:focus,.attr-btn-group>.attr-btn:hover{z-index:2}.attr-btn-group .attr-btn+.attr-btn,.attr-btn-group .attr-btn+.attr-btn-group,.attr-btn-group .attr-btn-group+.attr-btn,.attr-btn-group .attr-btn-group+.attr-btn-group{margin-left:-1px}.attr-btn-toolbar{margin-left:-5px}.attr-btn-toolbar .attr-btn,.attr-btn-toolbar .attr-btn-group,.attr-btn-toolbar .attr-input-group{float:left}.attr-btn-toolbar>.attr-btn,.attr-btn-toolbar>.attr-btn-group,.attr-btn-toolbar>.attr-input-group{margin-left:5px}.attr-btn-group>.attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle){border-radius:0}.attr-btn-group>.attr-btn:first-child{margin-left:0}.attr-btn-group>.attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn:last-child:not(:first-child),.attr-btn-group>.attr-dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group>.attr-btn-group{float:left}.attr-btn-group>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.attr-btn-group>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-btn-group .attr-dropdown-toggle:active,.attr-btn-group.attr-open .attr-dropdown-toggle{outline:0}.attr-btn-group>.attr-btn+.attr-dropdown-toggle{padding-right:8px;padding-left:8px}.attr-btn-group>.attr-btn-lg+.attr-dropdown-toggle{padding-right:12px;padding-left:12px}.attr-btn-group.attr-open .attr-dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125);box-shadow:inset 0 3px 5px rgba(0, 0, 0, 0.125)}.attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link{-webkit-box-shadow:none;box-shadow:none}.attr-btn .attr-caret{margin-left:0}.attr-btn-lg .attr-caret{border-width:5px 5px 0;border-bottom-width:0}.attr-dropup .attr-btn-lg .attr-caret{border-width:0 5px 5px}.attr-btn-group-vertical>.attr-btn,.attr-btn-group-vertical>.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group>.attr-btn{display:block;float:none;width:100%;max-width:100%}.attr-btn-group-vertical>.attr-btn-group>.attr-btn{float:none}.attr-btn-group-vertical>.attr-btn+.attr-btn,.attr-btn-group-vertical>.attr-btn+.attr-btn-group,.attr-btn-group-vertical>.attr-btn-group+.attr-btn,.attr-btn-group-vertical>.attr-btn-group+.attr-btn-group{margin-top:-1px;margin-left:0}.attr-btn-group-vertical>.attr-btn:not(:first-child):not(:last-child){border-radius:0}.attr-btn-group-vertical>.attr-btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.attr-btn-group-vertical>.attr-btn-group:not(:first-child):not(:last-child)>.attr-btn{border-radius:0}.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-btn:last-child,.attr-btn-group-vertical>.attr-btn-group:first-child:not(:last-child)>.attr-dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-btn-group-vertical>.attr-btn-group:last-child:not(:first-child)>.attr-btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.attr-btn-group-justified>.attr-btn,.attr-btn-group-justified>.attr-btn-group{display:table-cell;float:none;width:1%}.attr-btn-group-justified>.attr-btn-group .attr-btn{width:100%}.attr-btn-group-justified>.attr-btn-group .attr-dropdown-menu{left:auto}[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn-group>.attr-btn input[type=radio],[data-attr-toggle=buttons]>.attr-btn input[type=checkbox],[data-attr-toggle=buttons]>.attr-btn input[type=radio]{position:absolute;clip:rect(0, 0, 0, 0);pointer-events:none}.attr-input-group{position:relative;display:table;border-collapse:separate}.attr-input-group[class*=attr-col-]{float:none;padding-right:0;padding-left:0}.attr-input-group .attr-form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.attr-input-group .attr-form-control:focus{z-index:3}.attr-input-group-lg>.attr-form-control,.attr-input-group-lg>.attr-input-group-addon,.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-group-lg>.attr-form-control,select.attr-input-group-lg>.attr-input-group-addon,select.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:46px;line-height:46px}select[multiple].attr-input-group-lg>.attr-form-control,select[multiple].attr-input-group-lg>.attr-input-group-addon,select[multiple].attr-input-group-lg>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-lg>.attr-form-control,textarea.attr-input-group-lg>.attr-input-group-addon,textarea.attr-input-group-lg>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-sm>.attr-form-control,.attr-input-group-sm>.attr-input-group-addon,.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-group-sm>.attr-form-control,select.attr-input-group-sm>.attr-input-group-addon,select.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:30px;line-height:30px}select[multiple].attr-input-group-sm>.attr-form-control,select[multiple].attr-input-group-sm>.attr-input-group-addon,select[multiple].attr-input-group-sm>.attr-input-group-btn>.attr-btn,textarea.attr-input-group-sm>.attr-form-control,textarea.attr-input-group-sm>.attr-input-group-addon,textarea.attr-input-group-sm>.attr-input-group-btn>.attr-btn{height:auto}.attr-input-group-addon,.attr-input-group-btn,.attr-input-group .attr-form-control{display:table-cell}.attr-input-group-addon:not(:first-child):not(:last-child),.attr-input-group-btn:not(:first-child):not(:last-child),.attr-input-group .attr-form-control:not(:first-child):not(:last-child){border-radius:0}.attr-input-group-addon,.attr-input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.attr-input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.attr-input-group-addon.attr-input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.attr-input-group-addon.attr-input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.attr-input-group-addon input[type=checkbox],.attr-input-group-addon input[type=radio]{margin-top:0}.attr-input-group-addon:first-child,.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:first-child>.attr-dropdown-toggle,.attr-input-group-btn:last-child>.attr-btn-group:not(:last-child)>.attr-btn,.attr-input-group-btn:last-child>.attr-btn:not(:last-child):not(.attr-dropdown-toggle),.attr-input-group .attr-form-control:first-child{border-top-right-radius:0;border-bottom-right-radius:0}.attr-input-group-addon:first-child{border-right:0}.attr-input-group-addon:last-child,.attr-input-group-btn:first-child>.attr-btn-group:not(:first-child)>.attr-btn,.attr-input-group-btn:first-child>.attr-btn:not(:first-child),.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group>.attr-btn,.attr-input-group-btn:last-child>.attr-dropdown-toggle,.attr-input-group .attr-form-control:last-child{border-top-left-radius:0;border-bottom-left-radius:0}.attr-input-group-addon:last-child{border-left:0}.attr-input-group-btn{position:relative;font-size:0;white-space:nowrap}.attr-input-group-btn>.attr-btn{position:relative}.attr-input-group-btn>.attr-btn+.attr-btn{margin-left:-1px}.attr-input-group-btn>.attr-btn:active,.attr-input-group-btn>.attr-btn:focus,.attr-input-group-btn>.attr-btn:hover{z-index:2}.attr-input-group-btn:first-child>.attr-btn,.attr-input-group-btn:first-child>.attr-btn-group{margin-right:-1px}.attr-input-group-btn:last-child>.attr-btn,.attr-input-group-btn:last-child>.attr-btn-group{z-index:2;margin-left:-1px}.attr-nav{padding-left:0;margin-bottom:0;list-style:none}.attr-nav>li{position:relative;display:block}.attr-nav>li>a{position:relative;display:block;padding:10px 15px}.attr-nav>li>a:focus,.attr-nav>li>a:hover{text-decoration:none;background-color:#eee}.attr-nav>li.attr-disabled>a{color:#777}.attr-nav>li.attr-disabled>a:focus,.attr-nav>li.attr-disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.attr-nav .attr-open>a,.attr-nav .attr-open>a:focus,.attr-nav .attr-open>a:hover{background-color:#eee;border-color:#337ab7}.attr-nav .attr-nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.attr-nav>li>a>img{max-width:none}.attr-nav-tabs{border-bottom:1px solid #ddd}.attr-nav-tabs>li{float:left;margin-bottom:-1px}.attr-nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.attr-nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.attr-nav-tabs.attr-nav-justified{width:100%;border-bottom:0}.attr-nav-tabs.attr-nav-justified>li{float:none}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-tabs.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-tabs.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs.attr-nav-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs.attr-nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs.attr-nav-justified>.attr-active>a,.attr-nav-tabs.attr-nav-justified>.attr-active>a:focus,.attr-nav-tabs.attr-nav-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-nav-pills>li{float:left}.attr-nav-pills>li>a{border-radius:4px}.attr-nav-pills>li+li{margin-left:2px}.attr-nav-pills>li.attr-active>a,.attr-nav-pills>li.attr-active>a:focus,.attr-nav-pills>li.attr-active>a:hover{color:#fff;background-color:#337ab7}.attr-nav-stacked>li{float:none}.attr-nav-stacked>li+li{margin-top:2px;margin-left:0}.attr-nav-justified{width:100%}.attr-nav-justified>li{float:none}.attr-nav-justified>li>a{margin-bottom:5px;text-align:center}.attr-nav-justified>.attr-dropdown .attr-dropdown-menu{top:auto;left:auto}@media (min-width:768px){.attr-nav-justified>li{display:table-cell;width:1%}.attr-nav-justified>li>a{margin-bottom:0}}.attr-nav-tabs-justified{border-bottom:0}.attr-nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border:1px solid #ddd}@media (min-width:768px){.attr-nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.attr-nav-tabs-justified>.attr-active>a,.attr-nav-tabs-justified>.attr-active>a:focus,.attr-nav-tabs-justified>.attr-active>a:hover{border-bottom-color:#fff}}.attr-tab-content>.attr-tab-pane{display:none}.attr-tab-content>.attr-active{display:block}.attr-nav-tabs .attr-dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media (min-width:768px){.attr-navbar{border-radius:4px}}@media (min-width:768px){.attr-navbar-header{float:left}}.attr-navbar-collapse{padding-right:15px;padding-left:15px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1)}.attr-navbar-collapse.attr-in{overflow-y:auto}@media (min-width:768px){.attr-navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-collapse.attr-collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.attr-navbar-collapse.attr-in{overflow-y:visible}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse,.attr-navbar-static-top .attr-navbar-collapse{padding-right:0;padding-left:0}}.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.attr-navbar-fixed-bottom .attr-navbar-collapse,.attr-navbar-fixed-top .attr-navbar-collapse{max-height:200px}}.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-container-fluid>.attr-navbar-collapse,.attr-container-fluid>.attr-navbar-header,.attr-container>.attr-navbar-collapse,.attr-container>.attr-navbar-header{margin-right:0;margin-left:0}}.attr-navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){.attr-navbar-static-top{border-radius:0}}.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.attr-navbar-fixed-bottom,.attr-navbar-fixed-top{border-radius:0}}.attr-navbar-fixed-top{top:0;border-width:0 0 1px}.attr-navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.attr-navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.attr-navbar-brand:focus,.attr-navbar-brand:hover{text-decoration:none}.attr-navbar-brand>img{display:block}@media (min-width:768px){.attr-navbar>.attr-container-fluid .attr-navbar-brand,.attr-navbar>.attr-container .attr-navbar-brand{margin-left:-15px}}.attr-navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:15px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.attr-navbar-toggle:focus{outline:0}.attr-navbar-toggle .attr-icon-bar{display:block;width:22px;height:2px;border-radius:1px}.attr-navbar-toggle .attr-icon-bar+.attr-icon-bar{margin-top:4px}@media (min-width:768px){.attr-navbar-toggle{display:none}}.attr-navbar-nav{margin:7.5px -15px}.attr-navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media (max-width:767px){.attr-navbar-nav .attr-open .attr-dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{padding:5px 15px 5px 25px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{line-height:20px}.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){.attr-navbar-nav{float:left;margin:0}.attr-navbar-nav>li{float:left}.attr-navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.attr-navbar-form{padding:10px 15px;margin-top:8px;margin-right:-15px;margin-bottom:8px;margin-left:-15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);box-shadow:inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1)}@media (min-width:768px){.attr-navbar-form .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-navbar-form .attr-form-control-static{display:inline-block}.attr-navbar-form .attr-input-group{display:inline-table;vertical-align:middle}.attr-navbar-form .attr-input-group .attr-form-control,.attr-navbar-form .attr-input-group .attr-input-group-addon,.attr-navbar-form .attr-input-group .attr-input-group-btn{width:auto}.attr-navbar-form .attr-input-group>.attr-form-control{width:100%}.attr-navbar-form .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox,.attr-navbar-form .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-navbar-form .attr-checkbox label,.attr-navbar-form .attr-radio label{padding-left:0}.attr-navbar-form .attr-checkbox input[type=checkbox],.attr-navbar-form .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-navbar-form .attr-has-feedback .attr-form-control-feedback{top:0}}@media (max-width:767px){.attr-navbar-form .attr-form-group{margin-bottom:5px}.attr-navbar-form .attr-form-group:last-child{margin-bottom:0}}@media (min-width:768px){.attr-navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}.attr-navbar-nav>li>.attr-dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.attr-navbar-fixed-bottom .attr-navbar-nav>li>.attr-dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.attr-navbar-btn{margin-top:8px;margin-bottom:8px}.attr-navbar-btn.attr-btn-sm{margin-top:10px;margin-bottom:10px}.attr-navbar-btn.attr-btn-xs{margin-top:14px;margin-bottom:14px}.attr-navbar-text{margin-top:15px;margin-bottom:15px}@media (min-width:768px){.attr-navbar-text{float:left;margin-right:15px;margin-left:15px}}@media (min-width:768px){.attr-navbar-left{float:left!important}.attr-navbar-right{float:right!important;margin-right:-15px}.attr-navbar-right~.attr-navbar-right{margin-right:0}}.attr-navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.attr-navbar-default .attr-navbar-brand{color:#777}.attr-navbar-default .attr-navbar-brand:focus,.attr-navbar-default .attr-navbar-brand:hover{color:#5e5e5e;background-color:transparent}.attr-navbar-default .attr-navbar-text{color:#777}.attr-navbar-default .attr-navbar-nav>li>a{color:#777}.attr-navbar-default .attr-navbar-nav>li>a:focus,.attr-navbar-default .attr-navbar-nav>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav>.attr-active>a,.attr-navbar-default .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-disabled>a:hover{color:#ccc;background-color:transparent}.attr-navbar-default .attr-navbar-toggle{border-color:#ddd}.attr-navbar-default .attr-navbar-toggle:focus,.attr-navbar-default .attr-navbar-toggle:hover{background-color:#ddd}.attr-navbar-default .attr-navbar-toggle .attr-icon-bar{background-color:#888}.attr-navbar-default .attr-navbar-collapse,.attr-navbar-default .attr-navbar-form{border-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav>.attr-open>a,.attr-navbar-default .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-default .attr-navbar-nav>.attr-open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#777}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#333;background-color:transparent}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#555;background-color:#e7e7e7}.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#ccc;background-color:transparent}}.attr-navbar-default .attr-navbar-link{color:#777}.attr-navbar-default .attr-navbar-link:hover{color:#333}.attr-navbar-default .attr-btn-link{color:#777}.attr-navbar-default .attr-btn-link:focus,.attr-navbar-default .attr-btn-link:hover{color:#333}.attr-navbar-default .attr-btn-link[disabled]:focus,.attr-navbar-default .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-default .attr-btn-link:focus,fieldset[disabled] .attr-navbar-default .attr-btn-link:hover{color:#ccc}.attr-navbar-inverse{background-color:#222;border-color:#080808}.attr-navbar-inverse .attr-navbar-brand{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-brand:focus,.attr-navbar-inverse .attr-navbar-brand:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-text{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav>li>a:focus,.attr-navbar-inverse .attr-navbar-nav>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-disabled>a:hover{color:#444;background-color:transparent}.attr-navbar-inverse .attr-navbar-toggle{border-color:#333}.attr-navbar-inverse .attr-navbar-toggle:focus,.attr-navbar-inverse .attr-navbar-toggle:hover{background-color:#333}.attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar{background-color:#fff}.attr-navbar-inverse .attr-navbar-collapse,.attr-navbar-inverse .attr-navbar-form{border-color:#101010}.attr-navbar-inverse .attr-navbar-nav>.attr-open>a,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:focus,.attr-navbar-inverse .attr-navbar-nav>.attr-open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-dropdown-header{border-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider{background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-active>a:hover{color:#fff;background-color:#080808}.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:focus,.attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu>.attr-disabled>a:hover{color:#444;background-color:transparent}}.attr-navbar-inverse .attr-navbar-link{color:#9d9d9d}.attr-navbar-inverse .attr-navbar-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link{color:#9d9d9d}.attr-navbar-inverse .attr-btn-link:focus,.attr-navbar-inverse .attr-btn-link:hover{color:#fff}.attr-navbar-inverse .attr-btn-link[disabled]:focus,.attr-navbar-inverse .attr-btn-link[disabled]:hover,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:focus,fieldset[disabled] .attr-navbar-inverse .attr-btn-link:hover{color:#444}.attr-breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.attr-breadcrumb>li{display:inline-block}.attr-breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.attr-breadcrumb>.attr-active{color:#777}.attr-pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.attr-pagination>li{display:inline}.attr-pagination>li>a,.attr-pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.42857143;color:#337ab7;text-decoration:none;background-color:#fff;border:1px solid #ddd}.attr-pagination>li:first-child>a,.attr-pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.attr-pagination>li:last-child>a,.attr-pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.attr-pagination>li>a:focus,.attr-pagination>li>a:hover,.attr-pagination>li>span:focus,.attr-pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.attr-pagination>.attr-active>a,.attr-pagination>.attr-active>a:focus,.attr-pagination>.attr-active>a:hover,.attr-pagination>.attr-active>span,.attr-pagination>.attr-active>span:focus,.attr-pagination>.attr-active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.attr-pagination>.attr-disabled>a,.attr-pagination>.attr-disabled>a:focus,.attr-pagination>.attr-disabled>a:hover,.attr-pagination>.attr-disabled>span,.attr-pagination>.attr-disabled>span:focus,.attr-pagination>.attr-disabled>span:hover{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.attr-pagination-lg>li>a,.attr-pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.attr-pagination-lg>li:first-child>a,.attr-pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.attr-pagination-lg>li:last-child>a,.attr-pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.attr-pagination-sm>li>a,.attr-pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.attr-pagination-sm>li:first-child>a,.attr-pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.attr-pagination-sm>li:last-child>a,.attr-pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.attr-pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.attr-pager li{display:inline}.attr-pager li>a,.attr-pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.attr-pager li>a:focus,.attr-pager li>a:hover{text-decoration:none;background-color:#eee}.attr-pager .attr-next>a,.attr-pager .attr-next>span{float:right}.attr-pager .attr-previous>a,.attr-pager .attr-previous>span{float:left}.attr-pager .attr-disabled>a,.attr-pager .attr-disabled>a:focus,.attr-pager .attr-disabled>a:hover,.attr-pager .attr-disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.attr-label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.attr-label:focus,a.attr-label:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-label:empty{display:none}.attr-btn .attr-label{position:relative;top:-1px}.attr-label-default{background-color:#777}.attr-label-default[href]:focus,.attr-label-default[href]:hover{background-color:#5e5e5e}.attr-label-primary{background-color:#337ab7}.attr-label-primary[href]:focus,.attr-label-primary[href]:hover{background-color:#286090}.attr-label-success{background-color:#5cb85c}.attr-label-success[href]:focus,.attr-label-success[href]:hover{background-color:#449d44}.attr-label-info{background-color:#5bc0de}.attr-label-info[href]:focus,.attr-label-info[href]:hover{background-color:#31b0d5}.attr-label-warning{background-color:#f0ad4e}.attr-label-warning[href]:focus,.attr-label-warning[href]:hover{background-color:#ec971f}.attr-label-danger{background-color:#d9534f}.attr-label-danger[href]:focus,.attr-label-danger[href]:hover{background-color:#c9302c}.attr-badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:bold;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.attr-badge:empty{display:none}.attr-btn .attr-badge{position:relative;top:-1px}.attr-btn-group-xs>.attr-btn .attr-badge,.attr-btn-xs .attr-badge{top:0;padding:1px 5px}a.attr-badge:focus,a.attr-badge:hover{color:#fff;text-decoration:none;cursor:pointer}.attr-list-group-item.attr-active>.attr-badge,.attr-nav-pills>.attr-active>a>.attr-badge{color:#337ab7;background-color:#fff}.attr-list-group-item>.attr-badge{float:right}.attr-list-group-item>.attr-badge+.attr-badge{margin-right:5px}.attr-nav-pills>li>a>.attr-badge{margin-left:3px}.attr-jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.attr-jumbotron .attr-h1,.attr-jumbotron h1{color:inherit}.attr-jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.attr-jumbotron>hr{border-top-color:#d5d5d5}.attr-container-fluid .attr-jumbotron,.attr-container .attr-jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.attr-jumbotron .attr-container{max-width:100%}@media screen and (min-width:768px){.attr-jumbotron{padding-top:48px;padding-bottom:48px}.attr-container-fluid .attr-jumbotron,.attr-container .attr-jumbotron{padding-right:60px;padding-left:60px}.attr-jumbotron .attr-h1,.attr-jumbotron h1{font-size:63px}}.attr-thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}.attr-thumbnail>img,.attr-thumbnail a>img{margin-right:auto;margin-left:auto}a.attr-thumbnail.attr-active,a.attr-thumbnail:focus,a.attr-thumbnail:hover{border-color:#337ab7}.attr-thumbnail .attr-caption{padding:9px;color:#333}.attr-alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.attr-alert h4{margin-top:0;color:inherit}.attr-alert .attr-alert-link{font-weight:bold}.attr-alert>p,.attr-alert>ul{margin-bottom:0}.attr-alert>p+p{margin-top:5px}.attr-alert-dismissable,.attr-alert-dismissible{padding-right:35px}.attr-alert-dismissable .attr-close,.attr-alert-dismissible .attr-close{position:relative;top:-2px;right:-21px;color:inherit}.attr-alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-alert-success hr{border-top-color:#c9e2b3}.attr-alert-success .attr-alert-link{color:#2b542c}.attr-alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-alert-info hr{border-top-color:#a6e1ec}.attr-alert-info .attr-alert-link{color:#245269}.attr-alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-alert-warning hr{border-top-color:#f7e1b5}.attr-alert-warning .attr-alert-link{color:#66512c}.attr-alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-alert-danger hr{border-top-color:#e4b9c0}.attr-alert-danger .attr-alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{0%{background-position:40px 0}to{background-position:0 0}}.attr-progress{height:20px;margin-bottom:20px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.1)}.attr-progress-bar{float:left;width:0;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#337ab7;-webkit-box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);box-shadow:inset 0 -1px 0 rgba(0, 0, 0, 0.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}.attr-progress-bar-striped,.attr-progress-striped .attr-progress-bar{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.attr-progress-bar.attr-active,.attr-progress.attr-active .attr-progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.attr-progress-bar-success{background-color:#5cb85c}.attr-progress-striped .attr-progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-info{background-color:#5bc0de}.attr-progress-striped .attr-progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-warning{background-color:#f0ad4e}.attr-progress-striped .attr-progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-progress-bar-danger{background-color:#d9534f}.attr-progress-striped .attr-progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:-o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent)}.attr-media{margin-top:15px}.attr-media:first-child{margin-top:0}.attr-media,.attr-media-body{overflow:hidden;zoom:1}.attr-media-body{width:10000px}.attr-media-object{display:block}.attr-media-object.attr-img-thumbnail{max-width:none}.attr-media-right,.attr-media>.attr-pull-right{padding-left:10px}.attr-media-left,.attr-media>.attr-pull-left{padding-right:10px}.attr-media-body,.attr-media-left,.attr-media-right{display:table-cell;vertical-align:top}.attr-media-middle{vertical-align:middle}.attr-media-bottom{vertical-align:bottom}.attr-media-heading{margin-top:0;margin-bottom:5px}.attr-media-list{padding-left:0;list-style:none}.attr-list-group{padding-left:0;margin-bottom:20px}.attr-list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.attr-list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.attr-list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.attr-list-group-item,button.attr-list-group-item{color:#555}a.attr-list-group-item .attr-list-group-item-heading,button.attr-list-group-item .attr-list-group-item-heading{color:#333}a.attr-list-group-item:focus,a.attr-list-group-item:hover,button.attr-list-group-item:focus,button.attr-list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}button.attr-list-group-item{width:100%;text-align:left}.attr-list-group-item.attr-disabled,.attr-list-group-item.attr-disabled:focus,.attr-list-group-item.attr-disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.attr-list-group-item.attr-disabled .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-heading,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-heading{color:inherit}.attr-list-group-item.attr-disabled .attr-list-group-item-text,.attr-list-group-item.attr-disabled:focus .attr-list-group-item-text,.attr-list-group-item.attr-disabled:hover .attr-list-group-item-text{color:#777}.attr-list-group-item.attr-active,.attr-list-group-item.attr-active:focus,.attr-list-group-item.attr-active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-list-group-item.attr-active .attr-list-group-item-heading,.attr-list-group-item.attr-active .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:focus .attr-list-group-item-heading>small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>.attr-small,.attr-list-group-item.attr-active:hover .attr-list-group-item-heading>small{color:inherit}.attr-list-group-item.attr-active .attr-list-group-item-text,.attr-list-group-item.attr-active:focus .attr-list-group-item-text,.attr-list-group-item.attr-active:hover .attr-list-group-item-text{color:#c7ddef}.attr-list-group-item-success{color:#3c763d;background-color:#dff0d8}a.attr-list-group-item-success,button.attr-list-group-item-success{color:#3c763d}a.attr-list-group-item-success .attr-list-group-item-heading,button.attr-list-group-item-success .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-success:focus,a.attr-list-group-item-success:hover,button.attr-list-group-item-success:focus,button.attr-list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.attr-list-group-item-success.attr-active,a.attr-list-group-item-success.attr-active:focus,a.attr-list-group-item-success.attr-active:hover,button.attr-list-group-item-success.attr-active,button.attr-list-group-item-success.attr-active:focus,button.attr-list-group-item-success.attr-active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}.attr-list-group-item-info{color:#31708f;background-color:#d9edf7}a.attr-list-group-item-info,button.attr-list-group-item-info{color:#31708f}a.attr-list-group-item-info .attr-list-group-item-heading,button.attr-list-group-item-info .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-info:focus,a.attr-list-group-item-info:hover,button.attr-list-group-item-info:focus,button.attr-list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.attr-list-group-item-info.attr-active,a.attr-list-group-item-info.attr-active:focus,a.attr-list-group-item-info.attr-active:hover,button.attr-list-group-item-info.attr-active,button.attr-list-group-item-info.attr-active:focus,button.attr-list-group-item-info.attr-active:hover{color:#fff;background-color:#31708f;border-color:#31708f}.attr-list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.attr-list-group-item-warning,button.attr-list-group-item-warning{color:#8a6d3b}a.attr-list-group-item-warning .attr-list-group-item-heading,button.attr-list-group-item-warning .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-warning:focus,a.attr-list-group-item-warning:hover,button.attr-list-group-item-warning:focus,button.attr-list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.attr-list-group-item-warning.attr-active,a.attr-list-group-item-warning.attr-active:focus,a.attr-list-group-item-warning.attr-active:hover,button.attr-list-group-item-warning.attr-active,button.attr-list-group-item-warning.attr-active:focus,button.attr-list-group-item-warning.attr-active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.attr-list-group-item-danger{color:#a94442;background-color:#f2dede}a.attr-list-group-item-danger,button.attr-list-group-item-danger{color:#a94442}a.attr-list-group-item-danger .attr-list-group-item-heading,button.attr-list-group-item-danger .attr-list-group-item-heading{color:inherit}a.attr-list-group-item-danger:focus,a.attr-list-group-item-danger:hover,button.attr-list-group-item-danger:focus,button.attr-list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.attr-list-group-item-danger.attr-active,a.attr-list-group-item-danger.attr-active:focus,a.attr-list-group-item-danger.attr-active:hover,button.attr-list-group-item-danger.attr-active,button.attr-list-group-item-danger.attr-active:focus,button.attr-list-group-item-danger.attr-active:hover{color:#fff;background-color:#a94442;border-color:#a94442}.attr-list-group-item-heading{margin-top:0;margin-bottom:5px}.attr-list-group-item-text{margin-bottom:0;line-height:1.3}.attr-panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:0 1px 1px rgba(0, 0, 0, 0.05)}.attr-panel-body{padding:15px}.attr-panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel-heading>.attr-dropdown .attr-dropdown-toggle{color:inherit}.attr-panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.attr-panel-title>.attr-small,.attr-panel-title>.attr-small>a,.attr-panel-title>a,.attr-panel-title>small,.attr-panel-title>small>a{color:inherit}.attr-panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-list-group,.attr-panel>.attr-panel-collapse>.attr-list-group{margin-bottom:0}.attr-panel>.attr-list-group .attr-list-group-item,.attr-panel>.attr-panel-collapse>.attr-list-group .attr-list-group-item{border-width:1px 0;border-radius:0}.attr-panel>.attr-list-group:first-child .attr-list-group-item:first-child,.attr-panel>.attr-panel-collapse>.attr-list-group:first-child .attr-list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-list-group:last-child .attr-list-group-item:last-child,.attr-panel>.attr-panel-collapse>.attr-list-group:last-child .attr-list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-panel-heading+.attr-panel-collapse>.attr-list-group .attr-list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.attr-panel-heading+.attr-list-group .attr-list-group-item:first-child{border-top-width:0}.attr-list-group+.attr-panel-footer{border-top-width:0}.attr-panel>.attr-panel-collapse>.attr-table,.attr-panel>.attr-table,.attr-panel>.attr-table-responsive>.attr-table{margin-bottom:0}.attr-panel>.attr-panel-collapse>.attr-table caption,.attr-panel>.attr-table-responsive>.attr-table caption,.attr-panel>.attr-table caption{padding-right:15px;padding-left:15px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child,.attr-panel>.attr-table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:first-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table-responsive:first-child>.attr-table:first-child>thead:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>tbody:first-child>tr:first-child th:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child td:last-child,.attr-panel>.attr-table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child,.attr-panel>.attr-table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:first-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table-responsive:last-child>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tbody:last-child>tr:last-child th:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child td:last-child,.attr-panel>.attr-table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.attr-panel>.attr-panel-body+.attr-table,.attr-panel>.attr-panel-body+.attr-table-responsive,.attr-panel>.attr-table+.attr-panel-body,.attr-panel>.attr-table-responsive+.attr-panel-body{border-top:1px solid #ddd}.attr-panel>.attr-table>tbody:first-child>tr:first-child td,.attr-panel>.attr-table>tbody:first-child>tr:first-child th{border-top:0}.attr-panel>.attr-table-bordered,.attr-panel>.attr-table-responsive>.attr-table-bordered{border:0}.attr-panel>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-bordered>thead>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-panel>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-bordered>thead>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-panel>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-bordered>thead>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:first-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>thead>tr:first-child>th{border-bottom:0}.attr-panel>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-bordered>tfoot>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-panel>.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}.attr-panel>.attr-table-responsive{margin-bottom:0;border:0}.attr-panel-group{margin-bottom:20px}.attr-panel-group .attr-panel{margin-bottom:0;border-radius:4px}.attr-panel-group .attr-panel+.attr-panel{margin-top:5px}.attr-panel-group .attr-panel-heading{border-bottom:0}.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-list-group,.attr-panel-group .attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top:1px solid #ddd}.attr-panel-group .attr-panel-footer{border-top:0}.attr-panel-group .attr-panel-footer+.attr-panel-collapse .attr-panel-body{border-bottom:1px solid #ddd}.attr-panel-default{border-color:#ddd}.attr-panel-default>.attr-panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.attr-panel-default>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ddd}.attr-panel-default>.attr-panel-heading .attr-badge{color:#f5f5f5;background-color:#333}.attr-panel-default>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ddd}.attr-panel-primary{border-color:#337ab7}.attr-panel-primary>.attr-panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.attr-panel-primary>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#337ab7}.attr-panel-primary>.attr-panel-heading .attr-badge{color:#337ab7;background-color:#fff}.attr-panel-primary>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#337ab7}.attr-panel-success{border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.attr-panel-success>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#d6e9c6}.attr-panel-success>.attr-panel-heading .attr-badge{color:#dff0d8;background-color:#3c763d}.attr-panel-success>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#d6e9c6}.attr-panel-info{border-color:#bce8f1}.attr-panel-info>.attr-panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.attr-panel-info>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#bce8f1}.attr-panel-info>.attr-panel-heading .attr-badge{color:#d9edf7;background-color:#31708f}.attr-panel-info>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#bce8f1}.attr-panel-warning{border-color:#faebcc}.attr-panel-warning>.attr-panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.attr-panel-warning>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#faebcc}.attr-panel-warning>.attr-panel-heading .attr-badge{color:#fcf8e3;background-color:#8a6d3b}.attr-panel-warning>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#faebcc}.attr-panel-danger{border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.attr-panel-danger>.attr-panel-heading+.attr-panel-collapse>.attr-panel-body{border-top-color:#ebccd1}.attr-panel-danger>.attr-panel-heading .attr-badge{color:#f2dede;background-color:#a94442}.attr-panel-danger>.attr-panel-footer+.attr-panel-collapse>.attr-panel-body{border-bottom-color:#ebccd1}.attr-embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.attr-embed-responsive .attr-embed-responsive-item,.attr-embed-responsive embed,.attr-embed-responsive iframe,.attr-embed-responsive object,.attr-embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.attr-embed-responsive-16by9{padding-bottom:56.25%}.attr-embed-responsive-4by3{padding-bottom:75%}.attr-well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.05)}.attr-well blockquote{border-color:#ddd;border-color:rgba(0, 0, 0, 0.15)}.attr-well-lg{padding:24px;border-radius:6px}.attr-well-sm{padding:9px;border-radius:3px}.attr-close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}.attr-close:focus,.attr-close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.attr-close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.attr-modal-open{overflow:hidden}.attr-modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.attr-modal.attr-fade .attr-modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:-webkit-transform .3s ease-out;-o-transition:transform .3s ease-out;transition:transform .3s ease-out;transition:transform .3s ease-out, -webkit-transform .3s ease-out;-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);-o-transform:translate(0, -25%);transform:translate(0, -25%)}.attr-modal.attr-in .attr-modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);-o-transform:translate(0, 0);transform:translate(0, 0)}.attr-modal-open .attr-modal{overflow-x:hidden;overflow-y:auto}.attr-modal-dialog{position:relative;width:auto;margin:10px}.attr-modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0, 0, 0, 0.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0, 0, 0, 0.5);box-shadow:0 3px 9px rgba(0, 0, 0, 0.5)}.attr-modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.attr-modal-backdrop.attr-fade{filter:alpha(opacity=0);opacity:0}.attr-modal-backdrop.attr-in{filter:alpha(opacity=50);opacity:.5}.attr-modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.attr-modal-header .attr-close{margin-top:-2px}.attr-modal-title{margin:0;line-height:1.42857143}.attr-modal-body{position:relative;padding:15px}.attr-modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.attr-modal-footer .attr-btn+.attr-btn{margin-bottom:0;margin-left:5px}.attr-modal-footer .attr-btn-group .attr-btn+.attr-btn{margin-left:-1px}.attr-modal-footer .attr-btn-block+.attr-btn-block{margin-left:0}.attr-modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){.attr-modal-dialog{width:600px;margin:30px auto}.attr-modal-content{-webkit-box-shadow:0 5px 15px rgba(0, 0, 0, 0.5);box-shadow:0 5px 15px rgba(0, 0, 0, 0.5)}.attr-modal-sm{width:300px}}@media (min-width:992px){.attr-modal-lg{width:900px}}.attr-tooltip{position:absolute;z-index:1070;display:block;font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;font-size:12px;font-style:normal;font-weight:normal;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;filter:alpha(opacity=0);opacity:0;line-break:auto}.attr-tooltip.attr-in{filter:alpha(opacity=90);opacity:.9}.attr-tooltip.attr-top{padding:5px 0;margin-top:-3px}.attr-tooltip.attr-right{padding:0 5px;margin-left:3px}.attr-tooltip.attr-bottom{padding:5px 0;margin-top:3px}.attr-tooltip.attr-left{padding:0 5px;margin-left:-3px}.attr-tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.attr-tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.attr-tooltip.attr-top .attr-tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-left .attr-tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-top-right .attr-tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.attr-tooltip.attr-right .attr-tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.attr-tooltip.attr-left .attr-tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.attr-tooltip.attr-bottom .attr-tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-left .attr-tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-tooltip.attr-bottom-right .attr-tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.attr-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:normal;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, 0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);line-break:auto}.attr-popover.attr-top{margin-top:-10px}.attr-popover.attr-right{margin-left:10px}.attr-popover.attr-bottom{margin-top:10px}.attr-popover.attr-left{margin-left:-10px}.attr-popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.attr-popover-content{padding:9px 14px}.attr-popover>.attr-arrow,.attr-popover>.attr-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.attr-popover>.attr-arrow{border-width:11px}.attr-popover>.attr-arrow:after{content:"";border-width:10px}.attr-popover.attr-top>.attr-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0, 0, 0, 0.25);border-bottom-width:0}.attr-popover.attr-top>.attr-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.attr-popover.attr-right>.attr-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0, 0, 0, 0.25);border-left-width:0}.attr-popover.attr-right>.attr-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.attr-popover.attr-bottom>.attr-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0, 0, 0, 0.25)}.attr-popover.attr-bottom>.attr-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.attr-popover.attr-left>.attr-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0, 0, 0, 0.25)}.attr-popover.attr-left>.attr-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.attr-carousel{position:relative}.attr-carousel-inner{position:relative;width:100%;overflow:hidden}.attr-carousel-inner>.attr-item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}.attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img{line-height:1}@media (-webkit-transform-3d),(transform-3d){.attr-carousel-inner>.attr-item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:-webkit-transform .6s ease-in-out;-o-transition:transform .6s ease-in-out;transition:transform .6s ease-in-out;transition:transform .6s ease-in-out, -webkit-transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.attr-carousel-inner>.attr-item.attr-active.attr-right,.attr-carousel-inner>.attr-item.attr-next{left:0;-webkit-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0)}.attr-carousel-inner>.attr-item.attr-active.attr-left,.attr-carousel-inner>.attr-item.attr-prev{left:0;-webkit-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}.attr-carousel-inner>.attr-item.attr-active,.attr-carousel-inner>.attr-item.attr-next.attr-left,.attr-carousel-inner>.attr-item.attr-prev.attr-right{left:0;-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}}.attr-carousel-inner>.attr-active,.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{display:block}.attr-carousel-inner>.attr-active{left:0}.attr-carousel-inner>.attr-next,.attr-carousel-inner>.attr-prev{position:absolute;top:0;width:100%}.attr-carousel-inner>.attr-next{left:100%}.attr-carousel-inner>.attr-prev{left:-100%}.attr-carousel-inner>.attr-next.attr-left,.attr-carousel-inner>.attr-prev.attr-right{left:0}.attr-carousel-inner>.attr-active.attr-left{left:-100%}.attr-carousel-inner>.attr-active.attr-right{left:100%}.attr-carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6);background-color:rgba(0, 0, 0, 0);filter:alpha(opacity=50);opacity:.5}.attr-carousel-control.attr-left{background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}.attr-carousel-control.attr-right{right:0;left:auto;background-image:-webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);background-image:-webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));background-image:linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}.attr-carousel-control:focus,.attr-carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{left:50%;margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{right:50%;margin-right:-10px}.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:20px;height:20px;font-family:serif;line-height:1}.attr-carousel-control .attr-icon-prev:before{content:'\2039'}.attr-carousel-control .attr-icon-next:before{content:'\203a'}.attr-carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}.attr-carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000;background-color:rgba(0, 0, 0, 0);border:1px solid #fff;border-radius:10px}.attr-carousel-indicators .attr-active{width:12px;height:12px;margin:0;background-color:#fff}.attr-carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0, 0, 0, 0.6)}.attr-carousel-caption .attr-btn{text-shadow:none}@media screen and (min-width:768px){.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next,.attr-carousel-control .attr-icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}.attr-carousel-control .attr-glyphicon-chevron-left,.attr-carousel-control .attr-icon-prev{margin-left:-10px}.attr-carousel-control .attr-glyphicon-chevron-right,.attr-carousel-control .attr-icon-next{margin-right:-10px}.attr-carousel-caption{right:20%;left:20%;padding-bottom:30px}.attr-carousel-indicators{bottom:20px}}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-group-vertical>.attr-btn-group:before,.attr-btn-toolbar:after,.attr-btn-toolbar:before,.attr-clearfix:after,.attr-clearfix:before,.attr-container-fluid:after,.attr-container-fluid:before,.attr-container:after,.attr-container:before,.attr-dl-horizontal dd:after,.attr-dl-horizontal dd:before,.attr-form-horizontal .attr-form-group:after,.attr-form-horizontal .attr-form-group:before,.attr-modal-footer:after,.attr-modal-footer:before,.attr-modal-header:after,.attr-modal-header:before,.attr-nav:after,.attr-nav:before,.attr-navbar-collapse:after,.attr-navbar-collapse:before,.attr-navbar-header:after,.attr-navbar-header:before,.attr-navbar:after,.attr-navbar:before,.attr-pager:after,.attr-pager:before,.attr-panel-body:after,.attr-panel-body:before,.attr-row:after,.attr-row:before{display:table;content:" "}.attr-btn-group-vertical>.attr-btn-group:after,.attr-btn-toolbar:after,.attr-clearfix:after,.attr-container-fluid:after,.attr-container:after,.attr-dl-horizontal dd:after,.attr-form-horizontal .attr-form-group:after,.attr-modal-footer:after,.attr-modal-header:after,.attr-nav:after,.attr-navbar-collapse:after,.attr-navbar-header:after,.attr-navbar:after,.attr-pager:after,.attr-panel-body:after,.attr-row:after{clear:both}.attr-center-block{display:block;margin-right:auto;margin-left:auto}.attr-pull-right{float:right!important}.attr-pull-left{float:left!important}.attr-hide{display:none!important}.attr-show{display:block!important}.attr-invisible{visibility:hidden}.attr-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.attr-hidden{display:none!important}.attr-affix{position:fixed}@-ms-viewport{width:device-width}.attr-visible-lg,.attr-visible-md,.attr-visible-sm,.attr-visible-xs{display:none!important}.attr-visible-lg-block,.attr-visible-lg-inline,.attr-visible-lg-inline-block,.attr-visible-md-block,.attr-visible-md-inline,.attr-visible-md-inline-block,.attr-visible-sm-block,.attr-visible-sm-inline,.attr-visible-sm-inline-block,.attr-visible-xs-block,.attr-visible-xs-inline,.attr-visible-xs-inline-block{display:none!important}@media (max-width:767px){.attr-visible-xs{display:block!important}table.attr-visible-xs{display:table!important}tr.attr-visible-xs{display:table-row!important}td.attr-visible-xs,th.attr-visible-xs{display:table-cell!important}}@media (max-width:767px){.attr-visible-xs-block{display:block!important}}@media (max-width:767px){.attr-visible-xs-inline{display:inline!important}}@media (max-width:767px){.attr-visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm{display:block!important}table.attr-visible-sm{display:table!important}tr.attr-visible-sm{display:table-row!important}td.attr-visible-sm,th.attr-visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){.attr-visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md{display:block!important}table.attr-visible-md{display:table!important}tr.attr-visible-md{display:table-row!important}td.attr-visible-md,th.attr-visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){.attr-visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){.attr-visible-lg{display:block!important}table.attr-visible-lg{display:table!important}tr.attr-visible-lg{display:table-row!important}td.attr-visible-lg,th.attr-visible-lg{display:table-cell!important}}@media (min-width:1200px){.attr-visible-lg-block{display:block!important}}@media (min-width:1200px){.attr-visible-lg-inline{display:inline!important}}@media (min-width:1200px){.attr-visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){.attr-hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){.attr-hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){.attr-hidden-md{display:none!important}}@media (min-width:1200px){.attr-hidden-lg{display:none!important}}.attr-visible-print{display:none!important}@media print{.attr-visible-print{display:block!important}table.attr-visible-print{display:table!important}tr.attr-visible-print{display:table-row!important}td.attr-visible-print,th.attr-visible-print{display:table-cell!important}}.attr-visible-print-block{display:none!important}@media print{.attr-visible-print-block{display:block!important}}.attr-visible-print-inline{display:none!important}@media print{.attr-visible-print-inline{display:inline!important}}.attr-visible-print-inline-block{display:none!important}@media print{.attr-visible-print-inline-block{display:inline-block!important}}@media print{.attr-hidden-print{display:none!important}}.attr-nav-tabs .ekit-admin-nav-link{display:-webkit-box;display:-ms-flexbox;display:flex;padding:16px 44px 18px 20px;color:#121116;border-top:1px solid #E0E4E9;border-left:2px solid transparent;-webkit-transition:all 100ms ease-out;-o-transition:all 100ms ease-out;transition:all 100ms ease-out;background-color:#f1f1f1;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease;border-radius:0px}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title{font-size:.8125rem;font-weight:bold;color:#121116;display:block;margin-bottom:2px;line-height:1}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-subtitle{color:#72777C;font-size:.8125rem;-webkit-transition:all 150ms ease-out;-o-transition:all 150ms ease-out;transition:all 150ms ease-out}.attr-nav-tabs .ekit-admin-nav-link .ekit-admin-tab-icon{color:#72777C;font-size:1.4375rem;-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease}.attr-nav-tabs .attr-active>a,.attr-nav-tabs>li>a:focus,.attr-nav-tabs>li>a:hover{background-color:#FFFFFF;border-left-color:#f2295b}.attr-nav-tabs .attr-active>a .ekit-admin-tab-icon,.attr-nav-tabs .attr-active>a .ekit-admin-title,.attr-nav-tabs>li>a:focus .ekit-admin-tab-icon,.attr-nav-tabs>li>a:focus .ekit-admin-title,.attr-nav-tabs>li>a:hover .ekit-admin-tab-icon,.attr-nav-tabs>li>a:hover .ekit-admin-title{color:#f2295b}.ekit-admin-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;padding-bottom:9px;border-bottom:1px solid #E0E4E9;margin-bottom:8px}.ekit-admin-header-title{font-size:1rem;font-weight:bold;color:#f2295b;margin-bottom:0}.ekit-admin-help{color:#0073aa;font-weight:bold;font-size:.75rem}.ekit-admin-help>i{padding-right:5px}.ekit-admin-input-switch{position:relative;display:block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1;-ms-flex-item-align:end;align-self:flex-end}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch:after{left:30px;background-color:#f2295b;color:#f2295b}.ekit-admin-input-switch .ekit-admin-control-input:checked~.ekit-admin-control-label .ekit-admin-control-label-switch:before{border-color:#f2295b;text-indent:52px}.ekit-admin-input-switch .ekit-admin-control-label{cursor:pointer;margin-bottom:0px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.ekit-admin-input-switch .ekit-admin-control-label-switch{position:relative;overflow:hidden;width:52px;height:26px;display:inline-block;margin-left:10px}.ekit-admin-input-switch .ekit-admin-control-label-switch:after,.ekit-admin-input-switch .ekit-admin-control-label-switch:before{position:absolute;-webkit-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);-o-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);font-weight:700;font-size:.6875rem;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-sizing:border-box;box-sizing:border-box}.ekit-admin-input-switch .ekit-admin-control-label-switch:before{content:attr(data-inactive);top:0;left:0;width:100%;height:100%;background-color:#FFFFFF;border:#444444 solid 1px;border-radius:26px;text-indent:24px}.ekit-admin-input-switch .ekit-admin-control-label-switch:after{position:absolute;top:4px;left:4px;display:block;content:attr(data-active);width:18px;height:18px;background-color:#444444;border-radius:100%;-webkit-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);-o-transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);transition:all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);text-indent:-22px;display:-webkit-box;display:-ms-flexbox;display:flex}.ekit-admin-input-switch .ekit-admin-control-input{opacity:0;z-index:-1;position:absolute}.ekit-admin-section-header{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative;border-bottom:1px solid #E0E4E9;padding-bottom:24px;margin-bottom:48px}.ekit-admin-section-header:before{content:'';position:absolute;display:block;width:48px;height:2px;bottom:-1px;left:0;background:#f2295b}.ekit-admin-section-heaer-title{position:relative;font-size:1.625rem;font-weight:600;margin-bottom:0;line-height:1}.ekit-admin-section-heaer-title:before{content:"\f15b";font-family:"FontAwesome";display:inline-block;width:48px;height:48px;line-height:48px;margin-right:24px;background-color:#fee9ee;color:#f2295b;text-align:center;border-radius:3px;vertical-align:middle;font-size:20px}.ekit-admin-fields-container{font-size:.875rem;color:#666}.custom-control .custom-control-label{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;color:#121116;font-size:.875rem}.custom-control .custom-control-input:checked~.custom-control-label:before{border-color:#19073B;background-color:#19073B;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input:checked~.custom-control-label:after{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.custom-control .custom-control-input .custom-control-label:after,.custom-control .custom-control-input .custom-control-label:before{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);-webkit-transition:all 0.4s ease;-o-transition:all 0.4s ease;transition:all 0.4s ease}.custom-control .custom-control-input .custom-control-label:after{background-repeat:no-repeat;background-position:center center;background-size:50% 50%}.ekit-admin-fields-container-fieldset{margin-top:16px}.attr-nav-tabs{margin-top:0px}.attr-nav-tabs>li{width:100%}.attr-nav-tabs>li>a{margin-right:0px}@media (max-width:320px){:root{font-size:13px}}@media (max-width:480px){:root{font-size:14px}}@media (max-width:991px){:root{font-size:13px}.section-padding{padding:75px 0}.section-padding-medium{padding:60px 0}.section-padding-medium-bottom{padding-bottom:60px}.section-padding-medium-top{padding-top:60px}}
1
+ .attr-carousel-inner>.attr-item>a>img,.attr-carousel-inner>.attr-item>img,.attr-img-responsive,.attr-thumbnail a>img,.attr-thumbnail>img{display:block;max-width:100%;height:auto}.attr-img-rounded{border-radius:6px}.attr-img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;transition:all .2s ease-in-out}.attr-img-circle{border-radius:50%}.attr-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.attr-sr-only-focusable:active,.attr-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.attr-h1,.attr-h2,.attr-h3,.attr-h4,.attr-h5,.attr-h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h1 .attr-small,h2 .attr-small,h3 .attr-small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-weight:400;line-height:1;color:#777}.attr-h1,.attr-h2,.attr-h3{margin-top:20px;margin-bottom:10px}.attr-h1 .attr-small,.attr-h1 small,.attr-h2 .attr-small,.attr-h2 small,.attr-h3 .attr-small,.attr-h3 small,h1 .attr-small,h2 .attr-small,h3 .attr-small{font-size:65%}.attr-h4,.attr-h5,.attr-h6{margin-top:10px;margin-bottom:10px}.attr-h4 .attr-small,.attr-h4 small,.attr-h5 .attr-small,.attr-h5 small,.attr-h6 .attr-small,.attr-h6 small,h4 .attr-small,h5 .attr-small,h6 .attr-small{font-size:75%}.attr-h1{font-size:36px}.attr-h2{font-size:30px}.attr-h3{font-size:24px}.attr-h4{font-size:18px}.attr-h5{font-size:14px}.attr-h6{font-size:12px}.attr-lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media (min-width:768px){.attr-lead{font-size:21px}}.attr-small{font-size:85%}.attr-mark{padding:.2em;background-color:#fcf8e3}.attr-text-left{text-align:left}.attr-text-right{text-align:right}.attr-text-center{text-align:center}.attr-text-justify{text-align:justify}.attr-text-nowrap{white-space:nowrap}.attr-text-lowercase{text-transform:lowercase}.attr-text-uppercase{text-transform:uppercase}.attr-text-capitalize{text-transform:capitalize}.attr-text-muted{color:#777}.attr-text-primary{color:#337ab7}a.attr-text-primary:focus,a.attr-text-primary:hover{color:#286090}.attr-text-success{color:#3c763d}a.attr-text-success:focus,a.attr-text-success:hover{color:#2b542c}.attr-text-info{color:#31708f}a.attr-text-info:focus,a.attr-text-info:hover{color:#245269}.attr-text-warning{color:#8a6d3b}a.attr-text-warning:focus,a.attr-text-warning:hover{color:#66512c}.attr-text-danger{color:#a94442}a.attr-text-danger:focus,a.attr-text-danger:hover{color:#843534}.attr-bg-primary{color:#fff;background-color:#337ab7}a.attr-bg-primary:focus,a.attr-bg-primary:hover{background-color:#286090}.attr-bg-success{background-color:#dff0d8}a.attr-bg-success:focus,a.attr-bg-success:hover{background-color:#c1e2b3}.attr-bg-info{background-color:#d9edf7}a.attr-bg-info:focus,a.attr-bg-info:hover{background-color:#afd9ee}.attr-bg-warning{background-color:#fcf8e3}a.attr-bg-warning:focus,a.attr-bg-warning:hover{background-color:#f7ecb5}.attr-bg-danger{background-color:#f2dede}a.attr-bg-danger:focus,a.attr-bg-danger:hover{background-color:#e4b9b9}.attr-page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}.attr-list-unstyled{padding-left:0;list-style:none}.attr-list-inline{padding-left:0;margin-left:-5px;list-style:none}.attr-list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}@media (min-width:768px){.attr-dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.attr-dl-horizontal dd{margin-left:180px}}.attr-initialism{font-size:90%;text-transform:uppercase}.attr-pre-scrollable{max-height:340px;overflow-y:scroll}.attr-container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media (min-width:768px){.attr-container{width:750px}}@media (min-width:992px){.attr-container{width:970px}}@media (min-width:1200px){.attr-container{width:1170px}}.attr-container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.attr-row{margin-right:-15px;margin-left:-15px}.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9,.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9,.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9,.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.attr-col-xs-1,.attr-col-xs-10,.attr-col-xs-11,.attr-col-xs-12,.attr-col-xs-2,.attr-col-xs-3,.attr-col-xs-4,.attr-col-xs-5,.attr-col-xs-6,.attr-col-xs-7,.attr-col-xs-8,.attr-col-xs-9{float:left}.attr-col-xs-12{width:100%}.attr-col-xs-11{width:91.66666667%}.attr-col-xs-10{width:83.33333333%}.attr-col-xs-9{width:75%}.attr-col-xs-8{width:66.66666667%}.attr-col-xs-7{width:58.33333333%}.attr-col-xs-6{width:50%}.attr-col-xs-5{width:41.66666667%}.attr-col-xs-4{width:33.33333333%}.attr-col-xs-3{width:25%}.attr-col-xs-2{width:16.66666667%}.attr-col-xs-1{width:8.33333333%}.attr-col-xs-pull-12{right:100%}.attr-col-xs-pull-11{right:91.66666667%}.attr-col-xs-pull-10{right:83.33333333%}.attr-col-xs-pull-9{right:75%}.attr-col-xs-pull-8{right:66.66666667%}.attr-col-xs-pull-7{right:58.33333333%}.attr-col-xs-pull-6{right:50%}.attr-col-xs-pull-5{right:41.66666667%}.attr-col-xs-pull-4{right:33.33333333%}.attr-col-xs-pull-3{right:25%}.attr-col-xs-pull-2{right:16.66666667%}.attr-col-xs-pull-1{right:8.33333333%}.attr-col-xs-pull-0{right:auto}.attr-col-xs-push-12{left:100%}.attr-col-xs-push-11{left:91.66666667%}.attr-col-xs-push-10{left:83.33333333%}.attr-col-xs-push-9{left:75%}.attr-col-xs-push-8{left:66.66666667%}.attr-col-xs-push-7{left:58.33333333%}.attr-col-xs-push-6{left:50%}.attr-col-xs-push-5{left:41.66666667%}.attr-col-xs-push-4{left:33.33333333%}.attr-col-xs-push-3{left:25%}.attr-col-xs-push-2{left:16.66666667%}.attr-col-xs-push-1{left:8.33333333%}.attr-col-xs-push-0{left:auto}.attr-col-xs-offset-12{margin-left:100%}.attr-col-xs-offset-11{margin-left:91.66666667%}.attr-col-xs-offset-10{margin-left:83.33333333%}.attr-col-xs-offset-9{margin-left:75%}.attr-col-xs-offset-8{margin-left:66.66666667%}.attr-col-xs-offset-7{margin-left:58.33333333%}.attr-col-xs-offset-6{margin-left:50%}.attr-col-xs-offset-5{margin-left:41.66666667%}.attr-col-xs-offset-4{margin-left:33.33333333%}.attr-col-xs-offset-3{margin-left:25%}.attr-col-xs-offset-2{margin-left:16.66666667%}.attr-col-xs-offset-1{margin-left:8.33333333%}.attr-col-xs-offset-0{margin-left:0}@media (min-width:768px){.attr-col-sm-1,.attr-col-sm-10,.attr-col-sm-11,.attr-col-sm-12,.attr-col-sm-2,.attr-col-sm-3,.attr-col-sm-4,.attr-col-sm-5,.attr-col-sm-6,.attr-col-sm-7,.attr-col-sm-8,.attr-col-sm-9{float:left}.attr-col-sm-12{width:100%}.attr-col-sm-11{width:91.66666667%}.attr-col-sm-10{width:83.33333333%}.attr-col-sm-9{width:75%}.attr-col-sm-8{width:66.66666667%}.attr-col-sm-7{width:58.33333333%}.attr-col-sm-6{width:50%}.attr-col-sm-5{width:41.66666667%}.attr-col-sm-4{width:33.33333333%}.attr-col-sm-3{width:25%}.attr-col-sm-2{width:16.66666667%}.attr-col-sm-1{width:8.33333333%}.attr-col-sm-pull-12{right:100%}.attr-col-sm-pull-11{right:91.66666667%}.attr-col-sm-pull-10{right:83.33333333%}.attr-col-sm-pull-9{right:75%}.attr-col-sm-pull-8{right:66.66666667%}.attr-col-sm-pull-7{right:58.33333333%}.attr-col-sm-pull-6{right:50%}.attr-col-sm-pull-5{right:41.66666667%}.attr-col-sm-pull-4{right:33.33333333%}.attr-col-sm-pull-3{right:25%}.attr-col-sm-pull-2{right:16.66666667%}.attr-col-sm-pull-1{right:8.33333333%}.attr-col-sm-pull-0{right:auto}.attr-col-sm-push-12{left:100%}.attr-col-sm-push-11{left:91.66666667%}.attr-col-sm-push-10{left:83.33333333%}.attr-col-sm-push-9{left:75%}.attr-col-sm-push-8{left:66.66666667%}.attr-col-sm-push-7{left:58.33333333%}.attr-col-sm-push-6{left:50%}.attr-col-sm-push-5{left:41.66666667%}.attr-col-sm-push-4{left:33.33333333%}.attr-col-sm-push-3{left:25%}.attr-col-sm-push-2{left:16.66666667%}.attr-col-sm-push-1{left:8.33333333%}.attr-col-sm-push-0{left:auto}.attr-col-sm-offset-12{margin-left:100%}.attr-col-sm-offset-11{margin-left:91.66666667%}.attr-col-sm-offset-10{margin-left:83.33333333%}.attr-col-sm-offset-9{margin-left:75%}.attr-col-sm-offset-8{margin-left:66.66666667%}.attr-col-sm-offset-7{margin-left:58.33333333%}.attr-col-sm-offset-6{margin-left:50%}.attr-col-sm-offset-5{margin-left:41.66666667%}.attr-col-sm-offset-4{margin-left:33.33333333%}.attr-col-sm-offset-3{margin-left:25%}.attr-col-sm-offset-2{margin-left:16.66666667%}.attr-col-sm-offset-1{margin-left:8.33333333%}.attr-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.attr-col-md-1,.attr-col-md-10,.attr-col-md-11,.attr-col-md-12,.attr-col-md-2,.attr-col-md-3,.attr-col-md-4,.attr-col-md-5,.attr-col-md-6,.attr-col-md-7,.attr-col-md-8,.attr-col-md-9{float:left}.attr-col-md-12{width:100%}.attr-col-md-11{width:91.66666667%}.attr-col-md-10{width:83.33333333%}.attr-col-md-9{width:75%}.attr-col-md-8{width:66.66666667%}.attr-col-md-7{width:58.33333333%}.attr-col-md-6{width:50%}.attr-col-md-5{width:41.66666667%}.attr-col-md-4{width:33.33333333%}.attr-col-md-3{width:25%}.attr-col-md-2{width:16.66666667%}.attr-col-md-1{width:8.33333333%}.attr-col-md-pull-12{right:100%}.attr-col-md-pull-11{right:91.66666667%}.attr-col-md-pull-10{right:83.33333333%}.attr-col-md-pull-9{right:75%}.attr-col-md-pull-8{right:66.66666667%}.attr-col-md-pull-7{right:58.33333333%}.attr-col-md-pull-6{right:50%}.attr-col-md-pull-5{right:41.66666667%}.attr-col-md-pull-4{right:33.33333333%}.attr-col-md-pull-3{right:25%}.attr-col-md-pull-2{right:16.66666667%}.attr-col-md-pull-1{right:8.33333333%}.attr-col-md-pull-0{right:auto}.attr-col-md-push-12{left:100%}.attr-col-md-push-11{left:91.66666667%}.attr-col-md-push-10{left:83.33333333%}.attr-col-md-push-9{left:75%}.attr-col-md-push-8{left:66.66666667%}.attr-col-md-push-7{left:58.33333333%}.attr-col-md-push-6{left:50%}.attr-col-md-push-5{left:41.66666667%}.attr-col-md-push-4{left:33.33333333%}.attr-col-md-push-3{left:25%}.attr-col-md-push-2{left:16.66666667%}.attr-col-md-push-1{left:8.33333333%}.attr-col-md-push-0{left:auto}.attr-col-md-offset-12{margin-left:100%}.attr-col-md-offset-11{margin-left:91.66666667%}.attr-col-md-offset-10{margin-left:83.33333333%}.attr-col-md-offset-9{margin-left:75%}.attr-col-md-offset-8{margin-left:66.66666667%}.attr-col-md-offset-7{margin-left:58.33333333%}.attr-col-md-offset-6{margin-left:50%}.attr-col-md-offset-5{margin-left:41.66666667%}.attr-col-md-offset-4{margin-left:33.33333333%}.attr-col-md-offset-3{margin-left:25%}.attr-col-md-offset-2{margin-left:16.66666667%}.attr-col-md-offset-1{margin-left:8.33333333%}.attr-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.attr-col-lg-1,.attr-col-lg-10,.attr-col-lg-11,.attr-col-lg-12,.attr-col-lg-2,.attr-col-lg-3,.attr-col-lg-4,.attr-col-lg-5,.attr-col-lg-6,.attr-col-lg-7,.attr-col-lg-8,.attr-col-lg-9{float:left}.attr-col-lg-12{width:100%}.attr-col-lg-11{width:91.66666667%}.attr-col-lg-10{width:83.33333333%}.attr-col-lg-9{width:75%}.attr-col-lg-8{width:66.66666667%}.attr-col-lg-7{width:58.33333333%}.attr-col-lg-6{width:50%}.attr-col-lg-5{width:41.66666667%}.attr-col-lg-4{width:33.33333333%}.attr-col-lg-3{width:25%}.attr-col-lg-2{width:16.66666667%}.attr-col-lg-1{width:8.33333333%}.attr-col-lg-pull-12{right:100%}.attr-col-lg-pull-11{right:91.66666667%}.attr-col-lg-pull-10{right:83.33333333%}.attr-col-lg-pull-9{right:75%}.attr-col-lg-pull-8{right:66.66666667%}.attr-col-lg-pull-7{right:58.33333333%}.attr-col-lg-pull-6{right:50%}.attr-col-lg-pull-5{right:41.66666667%}.attr-col-lg-pull-4{right:33.33333333%}.attr-col-lg-pull-3{right:25%}.attr-col-lg-pull-2{right:16.66666667%}.attr-col-lg-pull-1{right:8.33333333%}.attr-col-lg-pull-0{right:auto}.attr-col-lg-push-12{left:100%}.attr-col-lg-push-11{left:91.66666667%}.attr-col-lg-push-10{left:83.33333333%}.attr-col-lg-push-9{left:75%}.attr-col-lg-push-8{left:66.66666667%}.attr-col-lg-push-7{left:58.33333333%}.attr-col-lg-push-6{left:50%}.attr-col-lg-push-5{left:41.66666667%}.attr-col-lg-push-4{left:33.33333333%}.attr-col-lg-push-3{left:25%}.attr-col-lg-push-2{left:16.66666667%}.attr-col-lg-push-1{left:8.33333333%}.attr-col-lg-push-0{left:auto}.attr-col-lg-offset-12{margin-left:100%}.attr-col-lg-offset-11{margin-left:91.66666667%}.attr-col-lg-offset-10{margin-left:83.33333333%}.attr-col-lg-offset-9{margin-left:75%}.attr-col-lg-offset-8{margin-left:66.66666667%}.attr-col-lg-offset-7{margin-left:58.33333333%}.attr-col-lg-offset-6{margin-left:50%}.attr-col-lg-offset-5{margin-left:41.66666667%}.attr-col-lg-offset-4{margin-left:33.33333333%}.attr-col-lg-offset-3{margin-left:25%}.attr-col-lg-offset-2{margin-left:16.66666667%}.attr-col-lg-offset-1{margin-left:8.33333333%}.attr-col-lg-offset-0{margin-left:0}}.attr-table{width:100%;max-width:100%;margin-bottom:20px}.attr-table>tbody>tr>td,.attr-table>tbody>tr>th,.attr-table>tfoot>tr>td,.attr-table>tfoot>tr>th,.attr-table>thead>tr>td,.attr-table>thead>tr>th{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.attr-table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.attr-table>caption+thead>tr:first-child>td,.attr-table>caption+thead>tr:first-child>th,.attr-table>colgroup+thead>tr:first-child>td,.attr-table>colgroup+thead>tr:first-child>th,.attr-table>thead:first-child>tr:first-child>td,.attr-table>thead:first-child>tr:first-child>th{border-top:0}.attr-table>tbody+tbody{border-top:2px solid #ddd}.attr-table .attr-table{background-color:#fff}.attr-table-condensed>tbody>tr>td,.attr-table-condensed>tbody>tr>th,.attr-table-condensed>tfoot>tr>td,.attr-table-condensed>tfoot>tr>th,.attr-table-condensed>thead>tr>td,.attr-table-condensed>thead>tr>th{padding:5px}.attr-table-bordered{border:1px solid #ddd}.attr-table-bordered>tbody>tr>td,.attr-table-bordered>tbody>tr>th,.attr-table-bordered>tfoot>tr>td,.attr-table-bordered>tfoot>tr>th,.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border:1px solid #ddd}.attr-table-bordered>thead>tr>td,.attr-table-bordered>thead>tr>th{border-bottom-width:2px}.attr-table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.attr-table-hover>tbody>tr:hover{background-color:#f5f5f5}.attr-table>tbody>tr.attr-active>td,.attr-table>tbody>tr.attr-active>th,.attr-table>tbody>tr>td.attr-active,.attr-table>tbody>tr>th.attr-active,.attr-table>tfoot>tr.attr-active>td,.attr-table>tfoot>tr.attr-active>th,.attr-table>tfoot>tr>td.attr-active,.attr-table>tfoot>tr>th.attr-active,.attr-table>thead>tr.attr-active>td,.attr-table>thead>tr.attr-active>th,.attr-table>thead>tr>td.attr-active,.attr-table>thead>tr>th.attr-active{background-color:#f5f5f5}.attr-table-hover>tbody>tr.attr-active:hover>td,.attr-table-hover>tbody>tr.attr-active:hover>th,.attr-table-hover>tbody>tr:hover>.attr-active,.attr-table-hover>tbody>tr>td.attr-active:hover,.attr-table-hover>tbody>tr>th.attr-active:hover{background-color:#e8e8e8}.attr-table>tbody>tr.attr-success>td,.attr-table>tbody>tr.attr-success>th,.attr-table>tbody>tr>td.attr-success,.attr-table>tbody>tr>th.attr-success,.attr-table>tfoot>tr.attr-success>td,.attr-table>tfoot>tr.attr-success>th,.attr-table>tfoot>tr>td.attr-success,.attr-table>tfoot>tr>th.attr-success,.attr-table>thead>tr.attr-success>td,.attr-table>thead>tr.attr-success>th,.attr-table>thead>tr>td.attr-success,.attr-table>thead>tr>th.attr-success{background-color:#dff0d8}.attr-table-hover>tbody>tr.attr-success:hover>td,.attr-table-hover>tbody>tr.attr-success:hover>th,.attr-table-hover>tbody>tr:hover>.attr-success,.attr-table-hover>tbody>tr>td.attr-success:hover,.attr-table-hover>tbody>tr>th.attr-success:hover{background-color:#d0e9c6}.attr-table>tbody>tr.attr-info>td,.attr-table>tbody>tr.attr-info>th,.attr-table>tbody>tr>td.attr-info,.attr-table>tbody>tr>th.attr-info,.attr-table>tfoot>tr.attr-info>td,.attr-table>tfoot>tr.attr-info>th,.attr-table>tfoot>tr>td.attr-info,.attr-table>tfoot>tr>th.attr-info,.attr-table>thead>tr.attr-info>td,.attr-table>thead>tr.attr-info>th,.attr-table>thead>tr>td.attr-info,.attr-table>thead>tr>th.attr-info{background-color:#d9edf7}.attr-table-hover>tbody>tr.attr-info:hover>td,.attr-table-hover>tbody>tr.attr-info:hover>th,.attr-table-hover>tbody>tr:hover>.attr-info,.attr-table-hover>tbody>tr>td.attr-info:hover,.attr-table-hover>tbody>tr>th.attr-info:hover{background-color:#c4e3f3}.attr-table>tbody>tr.attr-warning>td,.attr-table>tbody>tr.attr-warning>th,.attr-table>tbody>tr>td.attr-warning,.attr-table>tbody>tr>th.attr-warning,.attr-table>tfoot>tr.attr-warning>td,.attr-table>tfoot>tr.attr-warning>th,.attr-table>tfoot>tr>td.attr-warning,.attr-table>tfoot>tr>th.attr-warning,.attr-table>thead>tr.attr-warning>td,.attr-table>thead>tr.attr-warning>th,.attr-table>thead>tr>td.attr-warning,.attr-table>thead>tr>th.attr-warning{background-color:#fcf8e3}.attr-table-hover>tbody>tr.attr-warning:hover>td,.attr-table-hover>tbody>tr.attr-warning:hover>th,.attr-table-hover>tbody>tr:hover>.attr-warning,.attr-table-hover>tbody>tr>td.attr-warning:hover,.attr-table-hover>tbody>tr>th.attr-warning:hover{background-color:#faf2cc}.attr-table>tbody>tr.attr-danger>td,.attr-table>tbody>tr.attr-danger>th,.attr-table>tbody>tr>td.attr-danger,.attr-table>tbody>tr>th.attr-danger,.attr-table>tfoot>tr.attr-danger>td,.attr-table>tfoot>tr.attr-danger>th,.attr-table>tfoot>tr>td.attr-danger,.attr-table>tfoot>tr>th.attr-danger,.attr-table>thead>tr.attr-danger>td,.attr-table>thead>tr.attr-danger>th,.attr-table>thead>tr>td.attr-danger,.attr-table>thead>tr>th.attr-danger{background-color:#f2dede}.attr-table-hover>tbody>tr.attr-danger:hover>td,.attr-table-hover>tbody>tr.attr-danger:hover>th,.attr-table-hover>tbody>tr:hover>.attr-danger,.attr-table-hover>tbody>tr>td.attr-danger:hover,.attr-table-hover>tbody>tr>th.attr-danger:hover{background-color:#ebcccc}.attr-table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.attr-table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.attr-table-responsive>.attr-table{margin-bottom:0}.attr-table-responsive>.attr-table>tbody>tr>td,.attr-table-responsive>.attr-table>tbody>tr>th,.attr-table-responsive>.attr-table>tfoot>tr>td,.attr-table-responsive>.attr-table>tfoot>tr>th,.attr-table-responsive>.attr-table>thead>tr>td,.attr-table-responsive>.attr-table>thead>tr>th{white-space:nowrap}.attr-table-responsive>.attr-table-bordered{border:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:first-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:first-child{border-left:0}.attr-table-responsive>.attr-table-bordered>tbody>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tbody>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>tfoot>tr>th:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>td:last-child,.attr-table-responsive>.attr-table-bordered>thead>tr>th:last-child{border-right:0}.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tbody>tr:last-child>th,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>td,.attr-table-responsive>.attr-table-bordered>tfoot>tr:last-child>th{border-bottom:0}}.attr-form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857143;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.attr-form-control:focus{border-color:#66afe9;outline:0;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)}.attr-form-control::-moz-placeholder{color:#999;opacity:1}.attr-form-control:-ms-input-placeholder{color:#999}.attr-form-control::-webkit-input-placeholder{color:#999}.attr-form-control::-ms-expand{background-color:transparent;border:0}.attr-form-control[disabled],.attr-form-control[readonly],fieldset[disabled] .attr-form-control{background-color:#eee;opacity:1}.attr-form-control[disabled],fieldset[disabled] .attr-form-control{cursor:not-allowed}textarea.attr-form-control{height:auto}@media screen and (-webkit-min-device-pixel-ratio:0){input[type=date].attr-form-control,input[type=datetime-local].attr-form-control,input[type=month].attr-form-control,input[type=time].attr-form-control{line-height:34px}.attr-input-group-sm input[type=date],.attr-input-group-sm input[type=datetime-local],.attr-input-group-sm input[type=month],.attr-input-group-sm input[type=time],input[type=date].attr-input-sm,input[type=datetime-local].attr-input-sm,input[type=month].attr-input-sm,input[type=time].attr-input-sm{line-height:30px}.attr-input-group-lg input[type=date],.attr-input-group-lg input[type=datetime-local],.attr-input-group-lg input[type=month],.attr-input-group-lg input[type=time],input[type=date].attr-input-lg,input[type=datetime-local].attr-input-lg,input[type=month].attr-input-lg,input[type=time].attr-input-lg{line-height:46px}}.attr-form-group{margin-bottom:15px}.attr-checkbox,.attr-radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.attr-checkbox label,.attr-radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.attr-checkbox input[type=checkbox],.attr-checkbox-inline input[type=checkbox],.attr-radio input[type=radio],.attr-radio-inline input[type=radio]{position:absolute;margin-left:-20px}.attr-checkbox+.attr-checkbox,.attr-radio+.attr-radio{margin-top:-5px}.attr-checkbox-inline,.attr-radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.attr-checkbox-inline+.attr-checkbox-inline,.attr-radio-inline+.attr-radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].attr-disabled,input[type=checkbox][disabled],input[type=radio].attr-disabled,input[type=radio][disabled]{cursor:not-allowed}.attr-checkbox-inline.attr-disabled,.attr-radio-inline.attr-disabled,fieldset[disabled] .attr-checkbox-inline,fieldset[disabled] .attr-radio-inline{cursor:not-allowed}.attr-checkbox.attr-disabled label,.attr-radio.attr-disabled label,fieldset[disabled] .attr-checkbox label,fieldset[disabled] .attr-radio label{cursor:not-allowed}.attr-form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.attr-form-control-static.attr-input-lg,.attr-form-control-static.attr-input-sm{padding-right:0;padding-left:0}.attr-input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.attr-input-sm{height:30px;line-height:30px}select[multiple].attr-input-sm,textarea.attr-input-sm{height:auto}.attr-form-group-sm .attr-form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.attr-form-group-sm select.attr-form-control{height:30px;line-height:30px}.attr-form-group-sm select[multiple].attr-form-control,.attr-form-group-sm textarea.attr-form-control{height:auto}.attr-form-group-sm .attr-form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.attr-input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.attr-input-lg{height:46px;line-height:46px}select[multiple].attr-input-lg,textarea.attr-input-lg{height:auto}.attr-form-group-lg .attr-form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.attr-form-group-lg select.attr-form-control{height:46px;line-height:46px}.attr-form-group-lg select[multiple].attr-form-control,.attr-form-group-lg textarea.attr-form-control{height:auto}.attr-form-group-lg .attr-form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.attr-has-feedback{position:relative}.attr-has-feedback .attr-form-control{padding-right:42.5px}.attr-form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:34px;height:34px;line-height:34px;text-align:center;pointer-events:none}.attr-form-group-lg .attr-form-control+.attr-form-control-feedback,.attr-input-group-lg+.attr-form-control-feedback,.attr-input-lg+.attr-form-control-feedback{width:46px;height:46px;line-height:46px}.attr-form-group-sm .attr-form-control+.attr-form-control-feedback,.attr-input-group-sm+.attr-form-control-feedback,.attr-input-sm+.attr-form-control-feedback{width:30px;height:30px;line-height:30px}.attr-has-success .attr-checkbox,.attr-has-success .attr-checkbox-inline,.attr-has-success .attr-control-label,.attr-has-success .attr-help-block,.attr-has-success .attr-radio,.attr-has-success .attr-radio-inline,.attr-has-success.attr-checkbox label,.attr-has-success.attr-checkbox-inline label,.attr-has-success.attr-radio label,.attr-has-success.attr-radio-inline label{color:#3c763d}.attr-has-success .attr-form-control{border-color:#3c763d;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-success .attr-form-control:focus{border-color:#2b542c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.attr-has-success .attr-input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.attr-has-success .attr-form-control-feedback{color:#3c763d}.attr-has-warning .attr-checkbox,.attr-has-warning .attr-checkbox-inline,.attr-has-warning .attr-control-label,.attr-has-warning .attr-help-block,.attr-has-warning .attr-radio,.attr-has-warning .attr-radio-inline,.attr-has-warning.attr-checkbox label,.attr-has-warning.attr-checkbox-inline label,.attr-has-warning.attr-radio label,.attr-has-warning.attr-radio-inline label{color:#8a6d3b}.attr-has-warning .attr-form-control{border-color:#8a6d3b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-warning .attr-form-control:focus{border-color:#66512c;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.attr-has-warning .attr-input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.attr-has-warning .attr-form-control-feedback{color:#8a6d3b}.attr-has-error .attr-checkbox,.attr-has-error .attr-checkbox-inline,.attr-has-error .attr-control-label,.attr-has-error .attr-help-block,.attr-has-error .attr-radio,.attr-has-error .attr-radio-inline,.attr-has-error.attr-checkbox label,.attr-has-error.attr-checkbox-inline label,.attr-has-error.attr-radio label,.attr-has-error.attr-radio-inline label{color:#a94442}.attr-has-error .attr-form-control{border-color:#a94442;box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.attr-has-error .attr-form-control:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.attr-has-error .attr-input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.attr-has-error .attr-form-control-feedback{color:#a94442}.attr-has-feedback label~.attr-form-control-feedback{top:25px}.attr-has-feedback label.attr-sr-only~.attr-form-control-feedback{top:0}.attr-help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width:768px){.attr-form-inline .attr-form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-form-control{display:inline-block;width:auto;vertical-align:middle}.attr-form-inline .attr-form-control-static{display:inline-block}.attr-form-inline .attr-input-group{display:inline-table;vertical-align:middle}.attr-form-inline .attr-input-group .attr-form-control,.attr-form-inline .attr-input-group .attr-input-group-addon,.attr-form-inline .attr-input-group .attr-input-group-btn{width:auto}.attr-form-inline .attr-input-group>.attr-form-control{width:100%}.attr-form-inline .attr-control-label{margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox,.attr-form-inline .attr-radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.attr-form-inline .attr-checkbox label,.attr-form-inline .attr-radio label{padding-left:0}.attr-form-inline .attr-checkbox input[type=checkbox],.attr-form-inline .attr-radio input[type=radio]{position:relative;margin-left:0}.attr-form-inline .attr-has-feedback .attr-form-control-feedback{top:0}}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-checkbox-inline,.attr-form-horizontal .attr-radio,.attr-form-horizontal .attr-radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.attr-form-horizontal .attr-checkbox,.attr-form-horizontal .attr-radio{min-height:27px}.attr-form-horizontal .attr-form-group{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.attr-form-horizontal .attr-control-label{padding-top:7px;margin-bottom:0;text-align:right}}.attr-form-horizontal .attr-has-feedback .attr-form-control-feedback{right:15px}@media (min-width:768px){.attr-form-horizontal .attr-form-group-lg .attr-control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){.attr-form-horizontal .attr-form-group-sm .attr-control-label{padding-top:6px;font-size:12px}}.attr-btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:14px;font-weight:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.attr-btn.attr-active.attr-focus,.attr-btn.attr-active:focus,.attr-btn.attr-focus,.attr-btn:active.attr-focus,.attr-btn:active:focus,.attr-btn:focus{outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.attr-btn.attr-focus,.attr-btn:focus,.attr-btn:hover{color:#333;text-decoration:none}.attr-btn.attr-active,.attr-btn:active{background-image:none;outline:0;box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}.attr-btn.attr-disabled,.attr-btn[disabled],fieldset[disabled] .attr-btn{cursor:not-allowed;box-shadow:none;opacity:.65}a.attr-btn.attr-disabled,fieldset[disabled] a.attr-btn{pointer-events:none}.attr-btn-default{color:#333;background-color:#fff;border-color:#ccc}.attr-btn-default.attr-focus,.attr-btn-default:focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.attr-btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.attr-btn-default.attr-active.attr-focus,.attr-btn-default.attr-active:focus,.attr-btn-default.attr-active:hover,.attr-btn-default:active.attr-focus,.attr-btn-default:active:focus,.attr-btn-default:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-default.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:focus,.attr-open>.attr-dropdown-toggle.attr-btn-default:hover{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.attr-btn-default.attr-active,.attr-btn-default:active,.attr-open>.attr-dropdown-toggle.attr-btn-default{background-image:none}.attr-btn-default.attr-disabled.attr-focus,.attr-btn-default.attr-disabled:focus,.attr-btn-default.attr-disabled:hover,.attr-btn-default[disabled].attr-focus,.attr-btn-default[disabled]:focus,.attr-btn-default[disabled]:hover,fieldset[disabled] .attr-btn-default.attr-focus,fieldset[disabled] .attr-btn-default:focus,fieldset[disabled] .attr-btn-default:hover{background-color:#fff;border-color:#ccc}.attr-btn-default .attr-badge{color:#fff;background-color:#333}.attr-btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary.attr-focus,.attr-btn-primary:focus{color:#fff;background-color:#286090;border-color:#122b40}.attr-btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.attr-btn-primary.attr-active.attr-focus,.attr-btn-primary.attr-active:focus,.attr-btn-primary.attr-active:hover,.attr-btn-primary:active.attr-focus,.attr-btn-primary:active:focus,.attr-btn-primary:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-primary.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:focus,.attr-open>.attr-dropdown-toggle.attr-btn-primary:hover{color:#fff;background-color:#204d74;border-color:#122b40}.attr-btn-primary.attr-active,.attr-btn-primary:active,.attr-open>.attr-dropdown-toggle.attr-btn-primary{background-image:none}.attr-btn-primary.attr-disabled.attr-focus,.attr-btn-primary.attr-disabled:focus,.attr-btn-primary.attr-disabled:hover,.attr-btn-primary[disabled].attr-focus,.attr-btn-primary[disabled]:focus,.attr-btn-primary[disabled]:hover,fieldset[disabled] .attr-btn-primary.attr-focus,fieldset[disabled] .attr-btn-primary:focus,fieldset[disabled] .attr-btn-primary:hover{background-color:#337ab7;border-color:#2e6da4}.attr-btn-primary .attr-badge{color:#337ab7;background-color:#fff}.attr-btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success.attr-focus,.attr-btn-success:focus{color:#fff;background-color:#449d44;border-color:#255625}.attr-btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{color:#fff;background-color:#449d44;border-color:#398439}.attr-btn-success.attr-active.attr-focus,.attr-btn-success.attr-active:focus,.attr-btn-success.attr-active:hover,.attr-btn-success:active.attr-focus,.attr-btn-success:active:focus,.attr-btn-success:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-success.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:focus,.attr-open>.attr-dropdown-toggle.attr-btn-success:hover{color:#fff;background-color:#398439;border-color:#255625}.attr-btn-success.attr-active,.attr-btn-success:active,.attr-open>.attr-dropdown-toggle.attr-btn-success{background-image:none}.attr-btn-success.attr-disabled.attr-focus,.attr-btn-success.attr-disabled:focus,.attr-btn-success.attr-disabled:hover,.attr-btn-success[disabled].attr-focus,.attr-btn-success[disabled]:focus,.attr-btn-success[disabled]:hover,fieldset[disabled] .attr-btn-success.attr-focus,fieldset[disabled] .attr-btn-success:focus,fieldset[disabled] .attr-btn-success:hover{background-color:#5cb85c;border-color:#4cae4c}.attr-btn-success .attr-badge{color:#5cb85c;background-color:#fff}.attr-btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.attr-btn-info.attr-focus,.attr-btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.attr-btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.attr-btn-info.attr-active.attr-focus,.attr-btn-info.attr-active:focus,.attr-btn-info.attr-active:hover,.attr-btn-info:active.attr-focus,.attr-btn-info:active:focus,.attr-btn-info:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-info.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:focus,.attr-open>.attr-dropdown-toggle.attr-btn-info:hover{color:#fff;background-color:#269abc;border-color:#1b6d85}.attr-btn-info.attr-active,.attr-btn-info:active,.attr-open>.attr-dropdown-toggle.attr-btn-info{background-image:none}.attr-btn-info.attr-disabled.attr-focus,.attr-btn-info.attr-disabled:focus,.attr-btn-info.attr-disabled:hover,.attr-btn-info[disabled].attr-focus,.attr-btn-info[disabled]:focus,.attr-btn-info[disabled]:hover,fieldset[disabled] .attr-btn-info.attr-focus,fieldset[disabled] .attr-btn-info:focus,fieldset[disabled] .attr-btn-info:hover{background-color:#5bc0de;border-color:#46b8da}.attr-btn-info .attr-badge{color:#5bc0de;background-color:#fff}.attr-btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning.attr-focus,.attr-btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.attr-btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.attr-btn-warning.attr-active.attr-focus,.attr-btn-warning.attr-active:focus,.attr-btn-warning.attr-active:hover,.attr-btn-warning:active.attr-focus,.attr-btn-warning:active:focus,.attr-btn-warning:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-warning.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:focus,.attr-open>.attr-dropdown-toggle.attr-btn-warning:hover{color:#fff;background-color:#d58512;border-color:#985f0d}.attr-btn-warning.attr-active,.attr-btn-warning:active,.attr-open>.attr-dropdown-toggle.attr-btn-warning{background-image:none}.attr-btn-warning.attr-disabled.attr-focus,.attr-btn-warning.attr-disabled:focus,.attr-btn-warning.attr-disabled:hover,.attr-btn-warning[disabled].attr-focus,.attr-btn-warning[disabled]:focus,.attr-btn-warning[disabled]:hover,fieldset[disabled] .attr-btn-warning.attr-focus,fieldset[disabled] .attr-btn-warning:focus,fieldset[disabled] .attr-btn-warning:hover{background-color:#f0ad4e;border-color:#eea236}.attr-btn-warning .attr-badge{color:#f0ad4e;background-color:#fff}.attr-btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger.attr-focus,.attr-btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#761c19}.attr-btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.attr-btn-danger.attr-active.attr-focus,.attr-btn-danger.attr-active:focus,.attr-btn-danger.attr-active:hover,.attr-btn-danger:active.attr-focus,.attr-btn-danger:active:focus,.attr-btn-danger:active:hover,.attr-open>.attr-dropdown-toggle.attr-btn-danger.attr-focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:focus,.attr-open>.attr-dropdown-toggle.attr-btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#761c19}.attr-btn-danger.attr-active,.attr-btn-danger:active,.attr-open>.attr-dropdown-toggle.attr-btn-danger{background-image:none}.attr-btn-danger.attr-disabled.attr-focus,.attr-btn-danger.attr-disabled:focus,.attr-btn-danger.attr-disabled:hover,.attr-btn-danger[disabled].attr-focus,.attr-btn-danger[disabled]:focus,.attr-btn-danger[disabled]:hover,fieldset[disabled] .attr-btn-danger.attr-focus,fieldset[disabled] .attr-btn-danger:focus,fieldset[disabled] .attr-btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.attr-btn-danger .attr-badge{color:#d9534f;background-color:#fff}.attr-btn-link{font-weight:400;color:#337ab7;bor