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

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.9
Comparing to
See all releases

Code changes from version 1.5.10 to 2.0.9

Files changed (50) hide show
  1. autoloader.php +43 -47
  2. compatibility/conflicts/init.php +2 -2
  3. compatibility/conflicts/scripts.php +2 -2
  4. compatibility/data-migration/translate-file.php +88 -0
  5. compatibility/wpml/init.php +85 -85
  6. compatibility/wpml/widgets/accordion.php +3 -3
  7. compatibility/wpml/widgets/advanced-accordion.php +2 -2
  8. compatibility/wpml/widgets/advanced-tab.php +3 -3
  9. compatibility/wpml/widgets/business-hours.php +3 -3
  10. compatibility/wpml/widgets/cat-list.php +2 -2
  11. compatibility/wpml/widgets/chart.php +2 -2
  12. compatibility/wpml/widgets/faq.php +3 -3
  13. compatibility/wpml/widgets/gallery.php +2 -2
  14. compatibility/wpml/widgets/header-info.php +2 -2
  15. compatibility/wpml/widgets/hotspot.php +3 -3
  16. compatibility/wpml/widgets/image-accordion.php +3 -3
  17. compatibility/wpml/widgets/page-list.php +3 -3
  18. compatibility/wpml/widgets/post-list.php +2 -2
  19. compatibility/wpml/widgets/pricing.php +2 -2
  20. compatibility/wpml/widgets/social-share.php +2 -2
  21. compatibility/wpml/widgets/social.php +2 -2
  22. compatibility/wpml/widgets/tab.php +3 -3
  23. compatibility/wpml/widgets/table.php +2 -2
  24. compatibility/wpml/widgets/testimonial.php +4 -4
  25. compatibility/wpml/widgets/timeline.php +6 -6
  26. core.php +0 -393
  27. core/build-inline-scripts.php +3 -38
  28. core/build-modules.php +24 -60
  29. core/build-widgets.php +52 -80
  30. core/handler-api.php +6 -4
  31. core/handler-widget.php +4 -1
  32. core/hook-activation.php +0 -30
  33. elementskit-lite.php +365 -18
  34. helpers/module-list.php +119 -0
  35. helpers/notice.php +9 -9
  36. helpers/utils-backward-compablity.php +14 -0
  37. helpers/utils.php +16 -33
  38. helpers/widget-list.php +442 -0
  39. languages/elementskit.pot +10469 -0
  40. libs/banner/init.php +2 -2
  41. libs/framework/assets/css/admin-global.css +1 -84
  42. libs/framework/assets/css/admin-lib.css +1 -0
  43. libs/framework/assets/css/admin-style-ems-dev.css +1 -172
  44. libs/framework/assets/css/admin-style.css +1253 -75
  45. libs/framework/assets/css/bootstrap/bootstrap.css +0 -4216
  46. libs/framework/assets/css/bootstrap/utilities/_align.css +0 -17
  47. libs/framework/assets/css/bootstrap/utilities/_visibility.css +0 -5
  48. libs/framework/assets/css/customizer.css +0 -623
  49. libs/framework/assets/css/framework.css +5961 -1
  50. libs/framework/assets/css/frontend-style.min.css +0 -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/conflicts/init.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\Conflicts;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
@@ -34,7 +34,7 @@ class Init {
34
  public static function instance() {
35
  if ( is_null( self::$instance ) ) {
36
 
37
- // Fire when ElementsKit instance.
38
  self::$instance = new self();
39
  }
40
 
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
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
 
compatibility/conflicts/scripts.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\Conflicts;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
@@ -34,7 +34,7 @@ class Scripts {
34
  public static function instance() {
35
  if ( is_null( self::$instance ) ) {
36
 
37
- // Fire when ElementsKit instance.
38
  self::$instance = new self();
39
  }
40
 
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\Conflicts;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
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
 
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,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\Wpml;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
@@ -34,7 +34,7 @@ class Init {
34
  public static function instance() {
35
  if ( is_null( self::$instance ) ) {
36
 
37
- // Fire when ElementsKit instance.
38
  self::$instance = new self();
39
  }
40
 
@@ -123,12 +123,12 @@ class Init {
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'] = [
@@ -136,7 +136,7 @@ class Init {
136
  'fields' => [
137
  [
138
  'field' => 'ekit_btn_text',
139
- 'type' => esc_html__( 'Label (Button)', 'elementskit' ),
140
  'editor_type' => 'LINE',
141
  ],
142
  ],
@@ -147,17 +147,17 @@ class Init {
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
  ],
@@ -168,22 +168,22 @@ class Init {
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
  ],
@@ -194,17 +194,17 @@ class Init {
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
  ],
@@ -215,37 +215,37 @@ class Init {
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
  ],
@@ -253,7 +253,7 @@ class Init {
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'] = [
@@ -261,17 +261,17 @@ class Init {
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
  ],
@@ -282,12 +282,12 @@ class Init {
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
  ],
@@ -295,7 +295,7 @@ class Init {
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'] = [
@@ -303,41 +303,41 @@ class Init {
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'] = [
@@ -345,32 +345,32 @@ class Init {
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
  ],
@@ -378,7 +378,7 @@ class Init {
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'] = [
@@ -386,7 +386,7 @@ class Init {
386
  'fields' => [
387
  [
388
  'field' => 'ekit_progressbar_title',
389
- 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit' ),
390
  'editor_type' => 'LINE',
391
  ],
392
  ],
@@ -397,52 +397,52 @@ class Init {
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
  ],
@@ -453,12 +453,12 @@ class Init {
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
  ],
@@ -466,7 +466,7 @@ class Init {
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'] = [
@@ -474,7 +474,7 @@ class Init {
474
  'fields' => [
475
  [
476
  'field' => 'ekit_video_popup_button_title',
477
- 'type' => esc_html__( 'Button Title (Video)', 'elementskit' ),
478
  'editor_type' => 'LINE',
479
  ],
480
  ],
@@ -482,7 +482,7 @@ class Init {
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'] = [
@@ -490,7 +490,7 @@ class Init {
490
  'fields' => [
491
  [
492
  'field' => 'ekit_dropcaps_text',
493
- 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit' ),
494
  'editor_type' => 'AREA',
495
  ],
496
  ],
@@ -498,22 +498,22 @@ class Init {
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'] = [
@@ -521,7 +521,7 @@ class Init {
521
  'fields' => [
522
  [
523
  'field' => 'ekit_motion_text_content_text',
524
- 'type' => esc_html__( 'Title (Motion Text)', 'elementskit' ),
525
  'editor_type' => 'AREA',
526
  ],
527
  ],
@@ -532,7 +532,7 @@ class Init {
532
  'fields' => [
533
  [
534
  'field' => 'ekit_twitter_follow_btn_text',
535
- 'type' => esc_html__( 'Label (Twitter)', 'elementskit' ),
536
  'editor_type' => 'LINE',
537
  ],
538
  ],
@@ -543,7 +543,7 @@ class Init {
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
  ],
@@ -554,11 +554,11 @@ class Init {
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'] = [
@@ -566,11 +566,11 @@ class Init {
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'] = [
@@ -578,21 +578,21 @@ class Init {
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'] = [
@@ -600,17 +600,17 @@ class Init {
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
  ],
@@ -621,7 +621,7 @@ class Init {
621
  'fields' => [
622
  [
623
  'field' => 'ekit_btn_text',
624
- 'type' => esc_html__( 'Label (Creative Button)', 'elementskit' ),
625
  'editor_type' => 'LINE',
626
  ],
627
  ],
@@ -629,22 +629,22 @@ class Init {
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'] = [
@@ -652,7 +652,7 @@ class Init {
652
  'fields' => [
653
  [
654
  'field' => 'ekit_search_placeholder_text',
655
- 'type' => esc_html__( 'Placeholder Text (Header Search)', 'elementskit' ),
656
  'editor_type' => 'LINE',
657
  ],
658
  ],
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\Wpml;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
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
 
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'] = [
136
  'fields' => [
137
  [
138
  'field' => 'ekit_btn_text',
139
+ 'type' => esc_html__( 'Label (Button)', 'elementskit-lite' ),
140
  'editor_type' => 'LINE',
141
  ],
142
  ],
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
  ],
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
  ],
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
  ],
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
  ],
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'] = [
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
  ],
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
  ],
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'] = [
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'] = [
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
  ],
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'] = [
386
  'fields' => [
387
  [
388
  'field' => 'ekit_progressbar_title',
389
+ 'type' => esc_html__( 'Title (Progress Bar)', 'elementskit-lite' ),
390
  'editor_type' => 'LINE',
391
  ],
392
  ],
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
  ],
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
  ],
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'] = [
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
  ],
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'] = [
490
  'fields' => [
491
  [
492
  'field' => 'ekit_dropcaps_text',
493
+ 'type' => esc_html__( 'Content (Drop Caps)', 'elementskit-lite' ),
494
  'editor_type' => 'AREA',
495
  ],
496
  ],
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'] = [
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
  ],
532
  'fields' => [
533
  [
534
  'field' => 'ekit_twitter_follow_btn_text',
535
+ 'type' => esc_html__( 'Label (Twitter)', 'elementskit-lite' ),
536
  'editor_type' => 'LINE',
537
  ],
538
  ],
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
  ],
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'] = [
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'] = [
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'] = [
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
  ],
621
  'fields' => [
622
  [
623
  'field' => 'ekit_btn_text',
624
+ 'type' => esc_html__( 'Label (Creative Button)', 'elementskit-lite' ),
625
  'editor_type' => 'LINE',
626
  ],
627
  ],
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'] = [
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
  ],
compatibility/wpml/widgets/accordion.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Accordion extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/advanced-accordion.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Advanced_Accordion extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'acc_title':
51
- return esc_html__( 'Title (Advanced Accordion)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'acc_title':
51
+ return esc_html__( 'Title (Advanced Accordion)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/advanced-tab.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Advanced_Tab extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/business-hours.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Business_Hours extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/cat-list.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Cat_List extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'text':
51
- return esc_html__( 'Test (Category List)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'text':
51
+ return esc_html__( 'Test (Category List)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/chart.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Chart extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_chart_label':
51
- return esc_html__( 'Name (Chart)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_chart_label':
51
+ return esc_html__( 'Name (Chart)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/faq.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Faq extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/gallery.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Gallery extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_gallery_filter_label':
51
- return esc_html__( 'Filter Label (Gallery)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_gallery_filter_label':
51
+ return esc_html__( 'Filter Label (Gallery)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/header-info.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Header_Info extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_headerinfo_text':
51
- return esc_html__( 'Text (Header Info)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_headerinfo_text':
51
+ return esc_html__( 'Text (Header Info)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/hotspot.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Hotspot extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/image-accordion.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Image_Accordion extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/page-list.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Page_List extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/post-list.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Post_List extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'text':
51
- return esc_html__( 'Title (Post List)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'text':
51
+ return esc_html__( 'Title (Post List)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/pricing.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Pricing extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_pricing_list':
51
- return esc_html__( 'List text (Pricing Table)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_pricing_list':
51
+ return esc_html__( 'List text (Pricing Table)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/social-share.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Social_Share extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_socialshare_label':
51
- return esc_html__( 'Label (Social Share)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_socialshare_label':
51
+ return esc_html__( 'Label (Social Share)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/social.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Social extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'ekit_socialmedia_label':
51
- return esc_html__( 'Label (Social Media)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'ekit_socialmedia_label':
51
+ return esc_html__( 'Label (Social Media)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/tab.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -49,11 +49,11 @@ class Ekit_Tab extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/table.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -48,7 +48,7 @@ class Ekit_Table extends WPML_Elementor_Module_With_Items {
48
 
49
  switch ( $field ) {
50
  case 'table_header_content':
51
- return esc_html__( 'Text (Table)', 'elementskit' );
52
  break;
53
 
54
  default:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
48
 
49
  switch ( $field ) {
50
  case 'table_header_content':
51
+ return esc_html__( 'Text (Table)', 'elementskit-lite' );
52
  break;
53
 
54
  default:
compatibility/wpml/widgets/testimonial.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -50,15 +50,15 @@ class Ekit_Testimonial extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
compatibility/wpml/widgets/timeline.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
@@ -52,23 +52,23 @@ class Ekit_Timeline extends WPML_Elementor_Module_With_Items {
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:
1
  <?php
2
+ namespace ElementsKit_Lite\Compatibility\WPML\Widgets;
3
 
4
  use WPML_Elementor_Module_With_Items;
5
 
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:
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,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Core;
3
 
4
  defined( 'ABSPATH' ) || exit;
5
 
@@ -13,16 +13,7 @@ defined( 'ABSPATH' ) || exit;
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']);
@@ -34,13 +25,10 @@ class Build_Inline_Scripts{
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();
@@ -59,30 +47,7 @@ class Build_Inline_Scripts{
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
 
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']);
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();
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,6 +1,6 @@
1
  <?php
2
- namespace ElementsKit\Core;
3
- use ElementsKit\Libs\Framework\Attr;
4
 
5
  defined( 'ABSPATH' ) || exit;
6
 
@@ -14,7 +14,11 @@ defined( 'ABSPATH' ) || exit;
14
  */
15
  class Build_Modules{
16
 
17
- private $module_dir;
 
 
 
 
18
 
19
  /**
20
  * Hold the module list.
@@ -24,75 +28,35 @@ class Build_Modules{
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
 
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.
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\Helpers\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,6 +1,7 @@
1
  <?php
2
- namespace ElementsKit\Core;
3
- use ElementsKit\Libs\Framework\Attr;
 
4
 
5
  defined( 'ABSPATH' ) || exit;
6
 
@@ -13,117 +14,88 @@ class Build_Widgets{
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
 
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\Helpers\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,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Core;
3
 
4
  class Handler_Api{
5
 
@@ -20,14 +20,16 @@ class Handler_Api{
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}();
1
  <?php
2
+ namespace ElementsKit_Lite\Core;
3
 
4
  class Handler_Api{
5
 
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}();
core/handler-widget.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- namespace ElementsKit\Core;
3
 
4
  class Handler_Widget{
5
 
@@ -50,4 +50,7 @@ class Handler_Widget{
50
  public function scripts(){
51
  return false;
52
  }
 
 
 
53
  }
1
  <?php
2
+ namespace ElementsKit_Lite\Core;
3
 
4
  class Handler_Widget{
5
 
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,379 @@
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.9
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.9';
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 translation
213
+ add_action( 'init', array( $this, 'i18n' ) );
214
+ // Init Plugin
215
+ add_action( 'plugins_loaded', array( $this, 'init' ), 100 );
216
+ }
217
+
218
+ /**
219
+ * Load Textdomain
220
+ *
221
+ * Load plugin localization files.
222
+ * Fired by `init` action hook.
223
+ *
224
+ * @since 1.0.0
225
+ * @access public
226
+ */
227
+ public function i18n() {
228
+ load_plugin_textdomain( 'elementskit-lite', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
229
+ }
230
+
231
+ /**
232
+ * Initialize the plugin
233
+ *
234
+ * Checks for basic plugin requirements, if one check fail don't continue,
235
+ * if all check have passed include the plugin class.
236
+ *
237
+ * Fired by `plugins_loaded` action hook.
238
+ *
239
+ * @since 1.0.0
240
+ * @access public
241
+ */
242
+ public function init() {
243
+ // Load the main static helper class.
244
+ require_once self::plugin_dir() . 'helpers/notice.php';
245
+ require_once self::plugin_dir() . 'helpers/utils.php';
246
+
247
+
248
+
249
+
250
+ // Check if Elementor installed and activated.
251
+ if ( ! did_action( 'elementor/loaded' ) ) {
252
+ add_action( 'admin_notices', array( $this, 'missing_elementor' ) );
253
+ return;
254
+ }
255
+
256
+ // Check for required PHP version.
257
+ if ( version_compare( PHP_VERSION, self::min_php_version(), '<' ) ) {
258
+ add_action( 'admin_notices', array( $this, 'failed_php_version' ) );
259
+ return;
260
+ }
261
+ // Once we get here, We have passed all validation checks so we can safely include our plugin.
262
+
263
+ // Register ElementsKit_Lite widget category
264
+ add_action('elementor/init', [$this, 'elementor_widget_category']);
265
+
266
+ add_action( 'elementor/init', function(){
267
+ if(class_exists('ElementsKit') && !class_exists('ElementsKit_Comp')){
268
+ return;
269
+ }
270
+
271
+ // adding backward classes and mathods for older 14 number themes.
272
+ require_once self::plugin_dir() . 'plugin-class-backward-compatibility.php';
273
+ require_once self::plugin_dir() . 'helpers/utils-backward-compablity.php';
274
+
275
+ // Load the Plugin class, it's the core class of ElementsKit_Lite.
276
+ require_once self::plugin_dir() . 'plugin.php';
277
+ });
278
+
279
+ }
280
+
281
+
282
+
283
+ /**
284
+ * Admin notice
285
+ *
286
+ * Warning when the site doesn't have required Elementor.
287
+ *
288
+ * @since 1.0.0
289
+ * @access public
290
+ */
291
+ public function missing_elementor() {
292
+ if ( isset( $_GET['activate'] ) ) {
293
+ unset( $_GET['activate'] );
294
+ }
295
+
296
+ if ( file_exists( WP_PLUGIN_DIR . '/elementor/elementor.php' ) ) {
297
+ $btn['label'] = esc_html__('Activate Elementor', 'elementskit-lite');
298
+ $btn['url'] = wp_nonce_url( 'plugins.php?action=activate&plugin=elementor/elementor.php&plugin_status=all&paged=1', 'activate-plugin_elementor/elementor.php' );
299
+ } else {
300
+ $btn['label'] = esc_html__('Install Elementor', 'elementskit-lite');
301
+ $btn['url'] = wp_nonce_url( self_admin_url( 'update.php?action=install-plugin&plugin=elementor' ), 'install-plugin_elementor' );
302
+ }
303
+
304
+ \ElementsKit_Lite\Notice::push(
305
+ [
306
+ 'id' => 'unsupported-elementor-version',
307
+ 'type' => 'error',
308
+ 'dismissible' => true,
309
+ 'btn' => $btn,
310
+ 'message' => sprintf( esc_html__( 'ElementsKit requires Elementor version %1$s+, which is currently NOT RUNNING.', 'elementskit-lite' ), self::min_el_version() ),
311
+ ]
312
+ );
313
+ }
314
+
315
+
316
+ /**
317
+ * Admin notice
318
+ *
319
+ * Warning when the site doesn't have a minimum required PHP version.
320
+ *
321
+ * @since 1.0.0
322
+ * @access public
323
+ */
324
+ public function failed_php_version() {
325
+ \ElementsKit_Lite\Notice::push(
326
+ [
327
+ 'id' => 'unsupported-php-version',
328
+ 'type' => 'error',
329
+ 'dismissible' => true,
330
+ 'message' => sprintf( esc_html__( 'ElementsKit requires PHP version %1$s+, which is currently NOT RUNNING on this server.', 'elementskit-lite' ), self::min_php_version() ),
331
+ ]
332
+ );
333
+ }
334
+
335
+ /**
336
+ * Rewrite flush.
337
+ *
338
+ * @since 1.0.7
339
+ * @access public
340
+ */
341
+ public static function flush_rewrites(){
342
+
343
+ require_once self::module_dir() . 'dynamic-content/cpt.php';
344
+
345
+ new ElementsKit_Lite\Modules\Dynamic_Content\Cpt();
346
+
347
+ flush_rewrite_rules();
348
+ }
349
+ /**
350
+ * Add category.
351
+ *
352
+ * Register custom widget category in Elementor's editor
353
+ *
354
+ * @since 1.0.0
355
+ * @access public
356
+ */
357
+ public function elementor_widget_category($widgets_manager){
358
+ \Elementor\Plugin::$instance->elements_manager->add_category(
359
+ 'elementskit',
360
+ [
361
+ 'title' =>esc_html__( 'ElementsKit', 'elementskit-lite' ),
362
+ 'icon' => 'fa fa-plug',
363
+ ],
364
+ 1
365
+ );
366
+ \Elementor\Plugin::$instance->elements_manager->add_category(
367
+ 'elementskit_headerfooter',
368
+ [
369
+ 'title' =>esc_html__( 'ElementsKit Header Footer', 'elementskit-lite' ),
370
+ 'icon' => 'fa fa-plug',
371
+ ],
372
+ 1
373
+ );
374
+ }
375
+ }
376
+
377
+ new ElementsKit_Lite();
378
 
379
+ register_activation_hook( __FILE__, 'ElementsKit_Lite::flush_rewrites' );
 
 
helpers/module-list.php ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ namespace ElementsKit_Lite\Helpers;
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\Helpers\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' => 'Megamenu'
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
+ ];
118
+
119
+ }
helpers/notice.php CHANGED
@@ -1,9 +1,9 @@
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
@@ -32,9 +32,9 @@ class Notice {
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 ) ) {
@@ -63,7 +63,7 @@ class Notice {
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' ) || '';
@@ -99,7 +99,7 @@ class Notice {
99
  'type' => 'info',
100
  'show_if' => true,
101
  'message' => '',
102
- 'class' => 'elementskit-notice',
103
  'dismissible' => false,
104
  'btn' => [],
105
  'dismissible-meta' => 'user',
@@ -167,9 +167,9 @@ class Notice {
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'])):?>
1
  <?php
2
+ namespace ElementsKit_Lite;
3
 
4
  if ( ! defined( 'ABSPATH' ) ) die( 'Forbidden' );
5
  /**
6
+ * ElementsKit_Lite notice class.
7
  * Handles dynamically notices for lazy developers.
8
  *
9
  * @author XpeedStudo team: alpha omega sigma
32
  */
33
  public function dismiss() {
34
 
35
+ $id = ( isset( $_POST['id'] ) ) ? $_POST['id'] : '';
36
+ $time = ( isset( $_POST['time'] ) ) ? $_POST['time'] : '';
37
+ $meta = ( isset( $_POST['meta'] ) ) ? $_POST['meta'] : '';
38
 
39
  // Valid inputs?
40
  if ( ! empty( $id ) ) {
63
  jQuery(document).ready(function ($) {
64
  $( '.elementskit-notice.is-dismissible' ).on( 'click', '.notice-dismiss', function() {
65
  //console.log('test');
66
+ _this = $( this ).parents( '.elementskit-active-notice' );
67
  var id = _this.attr( 'id' ) || '';
68
  var time = _this.attr( 'dismissible-time' ) || '';
69
  var meta = _this.attr( 'dismissible-meta' ) || '';
99
  'type' => 'info',
100
  'show_if' => true,
101
  'message' => '',
102
+ 'class' => 'elementskit-active-notice',
103
  'dismissible' => false,
104
  'btn' => [],
105
  'dismissible-meta' => 'user',
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_Lite\Utils::render($notice['data']); ?>>
171
  <p>
172
+ <?php echo \ElementsKit_Lite\Utils::kses($notice['message']); ?>
173
  </p>
174
 
175
  <?php if(!empty($notice['btn'])):?>
helpers/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
+ }
helpers/utils.php CHANGED
@@ -1,35 +1,15 @@
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.
@@ -197,14 +177,14 @@ class Utils{
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;
@@ -228,7 +208,7 @@ class Utils{
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;
@@ -251,23 +231,26 @@ class Utils{
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
  }
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.
177
 
178
  if (!empty($contact_forms) && !is_wp_error($contact_forms)) {
179
 
180
+ $options[0] = esc_html__('Select Ninja Form', 'elementskit-lite');
181
 
182
  foreach ($contact_forms as $form) {
183
  $options[$form->get_id()] = $form->get_setting('title');
184
  }
185
  }
186
  } else {
187
+ $options[0] = esc_html__('Create a Form First', 'elementskit-lite');
188
  }
189
 
190
  return $options;
208
  $table_options[$table['id']] = $table['name'];
209
  }
210
  } else {
211
+ $table_options[0] = esc_html__('Create a Table First', 'elementskit-lite');
212
  }
213
 
214
  return $table_options;
231
  return $array;
232
  }
233
 
 
 
 
 
 
 
 
234
  public static function render_elementor_content_css($content_id){
235
  if ( class_exists( '\Elementor\Core\Files\CSS\Post' ) ) {
236
  $css_file = new \Elementor\Core\Files\CSS\Post( $content_id );
237
  $css_file->enqueue();
238
  }
239
  }
240
+
241
  public static function render_elementor_content($content_id){
242
  $elementor_instance = \Elementor\Plugin::instance();
243
  return $elementor_instance->frontend->get_builder_content_for_display( $content_id , true);
244
  }
245
+
246
+ public static function render($content){
247
+ if (stripos($content, "elementskit-has-lisence") !== false) {
248
+ return null;
249
+ }
250
+
251
+ return $content;
252
+ }
253
+
254
  public static function render_tab_content($content, $id){
255
  return str_replace('.elementor-'.$id.' ', '#elementor .elementor-'.$id.' ', $content);
256
  }
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' => '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
+ }
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/banner/init.php CHANGED
@@ -18,7 +18,7 @@ if(!class_exists('WpMet_Banner')){
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
 
@@ -73,7 +73,7 @@ if(!class_exists('WpMet_Banner')){
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',
18
  }
19
 
20
  $this->key = 'wpmet_banner';
21
+ $this->api = \ElementsKit_Lite::api_url() . 'banner/?package_type=' . \ElementsKit_Lite::package_type();
22
  $this->check_interval = (3600 * 24); // 1day
23
  $this->get_banner();
24
 
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_Lite\Notice::push(
77
  [
78
  'id' => 'wpmet-banner-' . $banner->slug,
79
  'type' => 'banner',
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,50 +1,193 @@
 
 
 
 
 
 
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;
@@ -55,86 +198,1121 @@
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
+ @charset "UTF-8";
2
+
3
+ body.toplevel_page_elementskit {
4
+ overflow-y: scroll;
5
+ }
6
+
7
  #ekit-admin-settings-form {
8
+ margin-top: 30px;
9
+ }
10
 
11
  .ekit_tab_wraper_group {
12
  margin-right: 0;
13
+ margin-left: 0;
14
+ }
15
+
16
+ .ekit_tab_wraper_group>div:first-of-type {
17
+ padding-right: 0;
18
+ }
19
+
20
+ .ekit_tab_wraper_group>div:last-of-type {
21
+ padding-left: 0;
22
+ }
23
+
24
+ .ekit_tab_wraper_group .attr-tab-pane {
25
+ min-height: 500px;
26
+ }
27
 
28
  .attr-tab-content {
29
  background-color: #FFFFFF;
30
+ padding: 30px;
31
+ border-radius: 20px;
32
+ }
33
 
34
  .ekit-admin-section-heaer-title {
35
+ margin-top: 0px;
36
+ color: #F2295B;
37
+ font-size: 24px;
38
+ line-height: 28px;
39
+ font-weight: bold;
40
+ vertical-align: middle;
41
+ display: -webkit-box;
42
+ display: -ms-flexbox;
43
+ display: flex;
44
+ -webkit-box-pack: center;
45
+ -ms-flex-pack: center;
46
+ justify-content: center;
47
+ -webkit-box-align: center;
48
+ -ms-flex-align: center;
49
+ align-items: center;
50
+ }
51
+
52
+ .ekit-admin-section-heaer-title i {
53
+ font-size: 18px;
54
+ line-height: 18px !important;
55
+ color: #F2295B;
56
+ width: 40px;
57
+ height: 40px;
58
+ background-color: #FDE9EE;
59
+ border-radius: 5px;
60
+ display: -webkit-inline-box;
61
+ display: -ms-inline-flexbox;
62
+ display: inline-flex;
63
+ vertical-align: middle;
64
+ text-align: center;
65
+ -webkit-box-align: center;
66
+ -ms-flex-align: center;
67
+ align-items: center;
68
+ -webkit-box-pack: center;
69
+ -ms-flex-pack: center;
70
+ justify-content: center;
71
+ margin-right: 13px;
72
+ }
73
+
74
+ .ekit-admin-nav .attr-nav-tabs {
75
+ border: none;
76
+ }
77
+
78
+ .ekit-admin-nav li {
79
+ background-color: #fff;
80
+ }
81
+
82
+ .ekit-admin-nav li.attr-active {
83
+ border-top-left-radius: 10px;
84
+ border-bottom-left-radius: 10px;
85
+ }
86
+
87
+ .ekit-admin-nav li.attr-active .ekit-admin-nav-link {
88
+ border-radius: 10px;
89
+ }
90
+
91
+ .ekit-admin-nav li.attr-active .ekit-admin-nav-link:before {
92
+ content: "";
93
+ background-color: #F2295B;
94
+ height: 10px;
95
+ width: 10px;
96
+ position: absolute;
97
+ left: 17px;
98
+ border-radius: 100px;
99
+ top: 50%;
100
+ -webkit-transform: translateY(-50%);
101
+ -ms-transform: translateY(-50%);
102
+ transform: translateY(-50%);
103
+ }
104
+
105
+ .ekit-admin-nav li.attr-active .ekit-admin-nav-link:hover {
106
+ background-color: #fff;
107
+ }
108
 
109
  .ekit-admin-nav .ekit-admin-nav-link {
110
+ text-decoration: none;
111
+ border: none;
112
+ padding: 23px 40px;
113
+ }
114
+
115
+ .ekit-admin-nav .ekit-admin-nav-link .ekit-admin-tab-icon {
116
+ color: #121116;
117
+ }
118
+
119
+ .ekit-admin-nav .ekit-admin-nav-link.top {
120
+ border-bottom-right-radius: 30px;
121
+ }
122
+
123
+ .ekit-admin-nav .ekit-admin-nav-link.bottom {
124
+ border-top-right-radius: 30px;
125
+ }
126
+
127
+ .ekit-admin-nav .ekit-admin-nav-link.ekit-admin-nav-hidden {
128
+ background-color: #F1F1F1;
129
+ cursor: default;
130
+ padding: 15px;
131
+ }
132
+
133
+ .ekit-admin-nav .ekit-admin-nav-link:hover {
134
+ background-color: #F1F1F1;
135
+ }
136
+
137
+ .ekit-admin-nav .ekit-admin-nav-link:focus {
138
+ outline: none;
139
+ -webkit-box-shadow: none;
140
+ box-shadow: none;
141
+ }
142
 
143
  .ekit-admin-nav .ekit-admin-title {
144
+ text-transform: uppercase;
145
+ color: #F2295B;
146
+ font-size: 14px;
147
+ line-height: 16px;
148
+ font-weight: bold;
149
+ }
150
 
151
  .attr-btn {
152
+ cursor: pointer;
153
+ }
154
 
155
  .ekit_container {
156
+ width: 100%;
157
+ }
158
 
159
  .ekit-admin-card-shadow {
160
  border-radius: 3px;
161
  border: 1px solid rgba(0, 0, 0, 0.05);
162
  -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
163
+ box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
164
+ }
165
+
166
+ #ekit-admin-settings-form .ekit-admin-card {
167
+ margin-bottom: 50px;
168
+ border-radius: 20px;
169
+ }
170
 
171
  .attr-input-switch {
172
+ margin-bottom: 10px;
173
+ position: relative;
174
+ }
175
 
176
  .ekit-admin-input-switch .ekit-admin-control-label {
177
  -webkit-box-pack: justify;
178
  -ms-flex-pack: justify;
179
  justify-content: space-between;
180
+ font-weight: 600;
181
+ font-size: 14px;
182
+ line-height: 16px;
183
+ color: #121116;
184
+ padding: 23px 26px;
185
+ }
186
 
187
+ #adminmenu .toplevel_page_elementskit:hover .wp-menu-image img,
188
+ #adminmenu .toplevel_page_elementskit.current .wp-menu-image img {
189
+ opacity: 1;
190
+ }
191
 
192
  #adminmenu .toplevel_page_elementskit .wp-menu-image {
193
  display: -webkit-box;
198
  align-items: center;
199
  -webkit-box-pack: center;
200
  -ms-flex-pack: center;
201
+ justify-content: center;
202
+ }
203
+
204
+ #adminmenu .toplevel_page_elementskit .wp-menu-image img {
205
+ opacity: 0.6;
206
+ padding: 0px;
207
+ width: 18px;
208
+ -webkit-transition: all 0.4s ease;
209
+ -o-transition: all 0.4s ease;
210
+ transition: all 0.4s ease;
211
+ }
212
 
213
  .ekit-admin-input-text {
214
  margin-bottom: 0px;
215
+ margin-top: 0 !important;
216
+ }
217
+
218
+ .ekit-admin-input-text:not(:last-child) {
219
+ margin-bottom: 0;
220
+ }
221
+
222
+ .ekit-admin-input-text>label {
223
+ font-weight: 700;
224
+ margin-bottom: 7px;
225
+ display: inline-block;
226
+ color: #121116;
227
+ font-size: 14px;
228
+ line-height: 16px;
229
+ }
230
+
231
+ .ekit-admin-input-text .attr-form-control {
232
+ border-radius: 5px;
233
+ padding: 8px 30px;
234
+ height: 54px;
235
+ -webkit-box-sizing: border-box;
236
+ box-sizing: border-box;
237
+ font-size: 14px;
238
+ line-height: 28px;
239
+ display: inline-block;
240
+ color: rgba(18, 17, 22, 0.4);
241
+ border: none;
242
+ -webkit-box-shadow: none;
243
+ box-shadow: none;
244
+ color: #121116;
245
+ }
246
+
247
+ .ekit-admin-input-text .attr-form-control:focus {
248
+ border: 1px solid #F2295B;
249
+ -webkit-box-shadow: none;
250
+ box-shadow: none;
251
+ outline: none;
252
+ }
253
+
254
+ #ekit-admin-license-form .attr-form-control {
255
+ border-radius: 3px;
256
+ border: 1px solid rgba(0, 0, 0, 0.05);
257
+ -webkit-box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
258
+ box-shadow: 0px 6px 20px 0px rgba(194, 204, 222, 0.3);
259
+ }
260
+
261
+ .ekit-admin-license-form-submit {
262
+ border-radius: 5px;
263
+ padding: 8px 30px;
264
+ height: 54px;
265
+ -webkit-box-sizing: border-box;
266
+ box-sizing: border-box;
267
+ }
268
 
269
  .ekit_logo {
270
+ padding-top: 35px;
271
+ }
272
 
273
  .ekit-admin-input-text .attr-form-control::-moz-placeholder {
274
+ color: rgba(0, 0, 0, 0.3);
275
+ }
276
 
277
  .ekit-admin-input-text .attr-form-control:-moz-placeholder {
278
+ color: rgba(0, 0, 0, 0.3);
279
+ }
280
 
281
  .ekit-admin-input-text .attr-form-control:-ms-input-placeholder {
282
+ color: rgba(0, 0, 0, 0.3);
283
+ }
284
 
285
  .ekit-admin-input-text .attr-form-control::-webkit-input-placeholder {
286
+ color: rgba(0, 0, 0, 0.3);
287
+ }
288
 
289
  .ekit_accordion_card {
290
+ background-color: #f5f5f5;
291
+ border-radius: 20px;
292
+ }
293
+
294
+ .ekit_accordion_card:not(:last-child) {
295
+ margin-bottom: 30px;
296
+ }
297
+
298
+ .ekit_accordion_card .ekit-admin-input-text:not(:last-child) {
299
+ margin-bottom: 30px;
300
+ }
301
+
302
+ .ekit_accordion_card .attr-panel-body {
303
+ padding: 30px;
304
+ padding-top: 0;
305
+ }
306
+
307
+ .ekit_accordion_card .card-header {
308
+ padding: 0px;
309
+ border-bottom: 0px solid #000;
310
+ }
311
+
312
+ .ekit_accordion_card .attr-btn {
313
+ display: block;
314
+ text-decoration: none;
315
+ width: 100%;
316
+ text-align: left;
317
+ padding: 29px 30px;
318
+ color: #333;
319
+ font-weight: 700;
320
+ cursor: pointer;
321
+ font-size: 14px;
322
+ line-height: 16px;
323
+ text-transform: uppercase;
324
+ position: relative;
325
+ -webkit-transition: all 0.4s;
326
+ -o-transition: all 0.4s;
327
+ transition: all 0.4s;
328
+ }
329
+
330
+ .ekit_accordion_card .attr-btn:before {
331
+ content: "";
332
+ color: #121116;
333
+ font-size: 16px;
334
+ font-family: "fontawesome";
335
+ position: absolute;
336
+ right: 30px;
337
+ top: 50%;
338
+ -webkit-transform: translateY(-50%);
339
+ -ms-transform: translateY(-50%);
340
+ transform: translateY(-50%);
341
+ }
342
+
343
+ .ekit_accordion_card .attr-btn[aria-expanded=true] {
344
+ color: #f2295b;
345
+ }
346
+
347
+ .ekit_accordion_card .attr-btn[aria-expanded=true]:before {
348
+ content: "";
349
+ color: #f2295b;
350
+ }
351
+
352
+ .ekit_accordion_card .attr-btn:focus {
353
+ -webkit-box-shadow: none;
354
+ box-shadow: none;
355
+ }
356
+
357
+ .ekit_accordion_card .attr-panel-heading {
358
+ padding: 0px;
359
+ border-radius: 0px;
360
+ }
361
+
362
+ [class^=attr] {
363
  -webkit-box-sizing: border-box;
364
+ box-sizing: border-box;
365
+ }
366
 
367
  .attr-btn-primary {
368
  color: #fff;
369
  background-color: #f2295b;
370
  border-color: #f2295b;
371
+ text-decoration: none;
372
+ }
373
+
374
+ .attr-btn-primary:hover,
375
+ .attr-btn-primary:focus {
376
+ background-color: #f2295b;
377
+ border-color: #f2295b;
378
+ outline: none;
379
+ }
380
 
381
  .attr-card-body {
382
+ padding: 1.25rem;
383
+ }
384
+
385
+ .attr-card-body .attr-card-title {
386
+ margin-top: 0px;
387
+ margin-bottom: 0.75rem;
388
+ }
389
 
390
  .ekit-admin-dashboard-banner {
391
+ display: block;
392
+ }
393
+
394
+ .ekit-admin-save-icon {
395
+ color: #fff;
396
+ font-size: 14px;
397
+ margin-right: 6px;
398
+ height: 14px;
399
+ width: 14px;
400
+ }
401
+
402
+ .ekit-admin-input-switch .ekit-admin-settings-form-submit {
403
+ background-color: #F2295B;
404
+ border-radius: 27px;
405
+ -webkit-box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
406
+ box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
407
+ font-size: 14px;
408
+ line-height: 16px;
409
+ text-transform: uppercase;
410
+ color: #fff;
411
+ font-weight: bold;
412
+ border: none;
413
+ padding: 12px 23px;
414
+ -webkit-transition: all 0.4s;
415
+ -o-transition: all 0.4s;
416
+ transition: all 0.4s;
417
+ display: -webkit-box;
418
+ display: -ms-flexbox;
419
+ display: flex;
420
+ -webkit-box-align: center;
421
+ -ms-flex-align: center;
422
+ align-items: center;
423
+ }
424
+
425
+ .ekit-admin-input-switch .ekit-admin-settings-form-submit:hover,
426
+ .ekit-admin-input-switch .ekit-admin-settings-form-submit:focus {
427
+ background-color: #ad0730;
428
+ outline: none;
429
+ }
430
+
431
+ .ekit-admin-section-header {
432
+ padding-bottom: 17px;
433
+ margin-bottom: 30px;
434
+ }
435
+
436
+ .ekit-admin-section-header.fixed {
437
+ position: fixed;
438
+ top: 0px;
439
+ padding-top: 30px;
440
+ background-color: #fff;
441
+ z-index: 1;
442
+ }
443
+
444
+ .ekit-admin-section-header.fixed+div {
445
+ margin-top: 90px;
446
+ }
447
+
448
+ .ekit-admin-dual-layout {
449
+ display: -webkit-box;
450
+ display: -ms-flexbox;
451
+ display: flex;
452
+ -webkit-box-align: center;
453
+ -ms-flex-align: center;
454
+ align-items: center;
455
+ }
456
+
457
+ .ekit-admin-dual-layout .ekit-admin-right-content {
458
+ margin: 0;
459
+ }
460
+
461
+ .ekit-admin-dual-layout .ekit-admin-right-content--heading__sub-title {
462
+ left: 0;
463
+ -webkit-transform: inherit;
464
+ -ms-transform: inherit;
465
+ transform: inherit;
466
+ }
467
+
468
+ .ekit-admin-section {
469
+ padding: 50px 30px;
470
+ }
471
+
472
+ .ekit-admin-section:last-of-type {
473
+ padding-bottom: 0;
474
+ }
475
+
476
+ .ekit-admin-right-content {
477
+ padding: 0 50px;
478
+ width: 50%;
479
+ -webkit-box-sizing: border-box;
480
+ box-sizing: border-box;
481
+ margin: 0 auto;
482
+ }
483
+
484
+ .ekit-admin-right-content p {
485
+ color: #121116;
486
+ font-size: 18px;
487
+ line-height: 28px;
488
+ }
489
+
490
+ .ekit-admin-right-content p:last-of-type {
491
+ margin-bottom: 0;
492
+ }
493
+
494
+ .ekit-admin-right-content--form {
495
+ position: relative;
496
+ max-width: 300px;
497
+ }
498
+
499
+ .ekit-admin-right-content--form input {
500
+ height: 54px;
501
+ background-color: #2D3CFE;
502
+ border: none;
503
+ -webkit-box-shadow: none;
504
+ box-shadow: none;
505
+ border-radius: 27px;
506
+ padding: 0 30px;
507
+ color: #fff;
508
+ font-size: 14px;
509
+ -webkit-box-shadow: 0 7px 15px rgba(45, 60, 254, 0.3);
510
+ box-shadow: 0 7px 15px rgba(45, 60, 254, 0.3);
511
+ padding-right: 70px;
512
+ }
513
+
514
+ .ekit-admin-right-content--form input::-webkit-input-placeholder {
515
+ color: #fff;
516
+ opacity: 0.5;
517
+ }
518
+
519
+ .ekit-admin-right-content--form input::-moz-placeholder {
520
+ color: #fff;
521
+ opacity: 0.5;
522
+ }
523
+
524
+ .ekit-admin-right-content--form input:-ms-input-placeholder {
525
+ color: #fff;
526
+ opacity: 0.5;
527
+ }
528
+
529
+ .ekit-admin-right-content--form input::-ms-input-placeholder {
530
+ color: #fff;
531
+ opacity: 0.5;
532
+ }
533
+
534
+ .ekit-admin-right-content--form input::placeholder {
535
+ color: #fff;
536
+ opacity: 0.5;
537
+ }
538
+
539
+ .ekit-admin-right-content--form input:focus {
540
+ outline: none;
541
+ border: none;
542
+ -webkit-box-shadow: 0 7px 15px rgba(45, 60, 254, 0.3);
543
+ box-shadow: 0 7px 15px rgba(45, 60, 254, 0.3);
544
+ }
545
+
546
+ .ekit-admin-right-content--form button {
547
+ width: 48px;
548
+ height: 48px;
549
+ background-color: #fff;
550
+ border-radius: 100px;
551
+ color: #2D3CFE;
552
+ position: absolute;
553
+ right: 2px;
554
+ top: 50%;
555
+ border-color: transparent;
556
+ -webkit-transition: all 0.4s;
557
+ -o-transition: all 0.4s;
558
+ transition: all 0.4s;
559
+ -webkit-transform: translateY(-50%);
560
+ -ms-transform: translateY(-50%);
561
+ transform: translateY(-50%);
562
+ }
563
+
564
+ .ekit-admin-right-content--form button:hover,
565
+ .ekit-admin-right-content--form button:focus {
566
+ outline: none;
567
+ -webkit-box-shadow: none;
568
+ box-shadow: none;
569
+ background-color: inherit;
570
+ border: 1px solid #fff;
571
+ }
572
+
573
+ .ekit-admin-right-content--form button i {
574
+ font-size: 18px;
575
+ line-height: 16px;
576
+ }
577
+
578
+ .ekit-admin-right-content--heading {
579
+ position: relative;
580
+ }
581
+
582
+ .ekit-admin-right-content--heading h2 {
583
+ color: #F2295B;
584
+ font-size: 24px;
585
+ line-height: 28px;
586
+ font-weight: bold;
587
+ letter-spacing: -1px;
588
+ }
589
+
590
+ .ekit-admin-right-content--heading__sub-title {
591
+ font-size: 60px;
592
+ line-height: 69px;
593
+ color: #000000;
594
+ opacity: 0.05;
595
+ letter-spacing: -1px;
596
+ font-weight: bold;
597
+ position: absolute;
598
+ bottom: 0;
599
+ left: 50%;
600
+ -webkit-transform: translateX(-50%);
601
+ -ms-transform: translateX(-50%);
602
+ transform: translateX(-50%);
603
+ }
604
+
605
+ .ekit-admin-right-content--button,
606
+ .ekit-admin-right-content--form {
607
+ margin-top: 45px;
608
+ }
609
+
610
+ .ekit-admin-right-content--link {
611
+ display: inline-block;
612
+ border-radius: 27px;
613
+ background-color: #F2295B;
614
+ -webkit-box-shadow: 0px 7px 15px rgba(242, 41, 91, 0.3);
615
+ box-shadow: 0px 7px 15px rgba(242, 41, 91, 0.3);
616
+ border: none;
617
+ font-size: 14px;
618
+ line-height: 16px;
619
+ font-weight: bold;
620
+ text-transform: uppercase;
621
+ padding: 19px 34px;
622
+ -webkit-transition: all 0.4s;
623
+ -o-transition: all 0.4s;
624
+ transition: all 0.4s;
625
+ }
626
+
627
+ .ekit-admin-right-content--link i {
628
+ margin-right: 7px;
629
+ }
630
+
631
+ .ekit-admin-right-content--link:hover,
632
+ .ekit-admin-right-content--link:focus {
633
+ background-color: #ad0730;
634
+ }
635
+
636
+ .ekit-admin-subscribed-section .ekit-admin-right-content--heading h2 {
637
+ color: #2D3CFE;
638
+ }
639
+
640
+ .ekit-admin-support-section .ekit-admin-right-content--heading h2 {
641
+ color: #00BE75;
642
+ }
643
+
644
+ .ekit-admin-support-section .ekit-admin-right-content--link {
645
+ background-color: #00BE75;
646
+ -webkit-box-shadow: 0px 7px 15px rgba(0, 190, 117, 0.3);
647
+ box-shadow: 0px 7px 15px rgba(0, 190, 117, 0.3);
648
+ }
649
+
650
+ .ekit-admin-support-section .ekit-admin-right-content--link:hover,
651
+ .ekit-admin-support-section .ekit-admin-right-content--link:focus {
652
+ background-color: #108458;
653
+ }
654
+
655
+ .ekit-admin-subscribed-section,
656
+ .ekit-admin-support-section {
657
+ -webkit-box-pack: justify;
658
+ -ms-flex-pack: justify;
659
+ justify-content: space-between;
660
+ }
661
+
662
+ .ekit-admin-rate-now-section {
663
+ -webkit-box-pack: justify;
664
+ -ms-flex-pack: justify;
665
+ justify-content: space-between;
666
+ }
667
+
668
+ .ekit-admin-rate-now-section .ekit-admin-right-content p span {
669
+ color: #FEC42D;
670
+ }
671
+
672
+ .ekit-admin-rate-now-section .ekit-admin-right-content--heading h2 {
673
+ color: #FEC42D;
674
+ }
675
+
676
+ .ekit-admin-rate-now-section .ekit-admin-right-content--link {
677
+ background-color: #FEC42D;
678
+ -webkit-box-shadow: 0px 7px 15px rgba(254, 196, 45, 0.3);
679
+ box-shadow: 0px 7px 15px rgba(254, 196, 45, 0.3);
680
+ }
681
+
682
+ .ekit-admin-rate-now-section .ekit-admin-right-content--link:hover,
683
+ .ekit-admin-rate-now-section .ekit-admin-right-content--link:focus {
684
+ background-color: #dea203;
685
+ }
686
+
687
+ .ekit-admin-except-title p {
688
+ font-size: 24px;
689
+ line-height: 25px;
690
+ }
691
+
692
+ .ekit-admin-except-title p span {
693
+ display: block;
694
+ font-weight: bold;
695
+ }
696
+
697
+ .ekit-admin-left-thumb img {
698
+ max-width: 100%;
699
+ }
700
+
701
+ .ekit-admin-faq-section .ekit-admin-accordion {
702
+ max-width: 700px;
703
+ margin: 0 auto;
704
+ margin-top: 30px;
705
+ }
706
+
707
+ .ekit-admin-single-accordion {
708
+ background-color: #FFFFFF;
709
+ -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.07);
710
+ box-shadow: 0 7px 15px rgba(0, 0, 0, 0.07);
711
+ margin: 10px 0;
712
+ }
713
+
714
+ .ekit-admin-single-accordion.active .ekit-admin-single-accordion--heading:after {
715
+ content: "";
716
+ color: #F2295B;
717
+ }
718
+
719
+ .ekit-admin-single-accordion--heading {
720
+ cursor: pointer;
721
+ margin: 0;
722
+ color: #121116;
723
+ font-size: 14px;
724
+ line-height: 20px;
725
+ padding: 18px 20px;
726
+ position: relative;
727
+ }
728
+
729
+ .ekit-admin-single-accordion--heading:after {
730
+ content: "";
731
+ font-family: "fontawesome";
732
+ position: absolute;
733
+ right: 30px;
734
+ top: 50%;
735
+ -webkit-transform: translateY(-50%);
736
+ -ms-transform: translateY(-50%);
737
+ transform: translateY(-50%);
738
+ font-size: 12px;
739
+ }
740
+
741
+ .ekit-admin-single-accordion--body {
742
+ padding: 0;
743
+ display: none;
744
+ }
745
+
746
+ .ekit-admin-single-accordion--body__content {
747
+ padding: 30px;
748
+ padding-top: 0;
749
+ }
750
+
751
+ .ekit-admin-single-accordion--body p {
752
+ margin: 0;
753
+ }
754
+
755
+ .ekit-admin-video-tutorial-list {
756
+ display: -webkit-box;
757
+ display: -ms-flexbox;
758
+ display: flex;
759
+ -webkit-box-pack: justify;
760
+ -ms-flex-pack: justify;
761
+ justify-content: space-between;
762
+ -webkit-box-align: center;
763
+ -ms-flex-align: center;
764
+ align-items: center;
765
+ margin-top: 30px;
766
+ }
767
+
768
+ .ekit-admin-video-tutorial-list a {
769
+ text-decoration: none;
770
+ }
771
+
772
+ .ekit-admin-video-tutorial-list a h2 {
773
+ font-size: 18px;
774
+ line-height: 20px;
775
+ text-align: center;
776
+ display: block;
777
+ }
778
+
779
+ .ekit-admin-video-tutorial-list .tutorial-thumb {
780
+ position: relative;
781
+ }
782
+
783
+ .ekit-admin-video-tutorial-list .tutorial-thumb:before {
784
+ content: "";
785
+ background-image: url(../images/video-icon.png);
786
+ display: inline-block;
787
+ height: 30px;
788
+ width: 30px;
789
+ background-color: #fff;
790
+ padding: 20px;
791
+ background-repeat: no-repeat;
792
+ border-radius: 100px;
793
+ -webkit-box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
794
+ box-shadow: 0 7px 15px rgba(0, 0, 0, 0.1);
795
+ background-position: center;
796
+ position: absolute;
797
+ left: 50%;
798
+ top: 50%;
799
+ -webkit-transform: translate(-50%, -50%);
800
+ -ms-transform: translate(-50%, -50%);
801
+ transform: translate(-50%, -50%);
802
+ }
803
+
804
+ .ekit-admin-video-tutorial-list .tutorial-thumb img {
805
+ max-width: 100%;
806
+ display: block;
807
+ }
808
+
809
+ .ekti-admin-video-tutorial-popup {
810
+ position: fixed;
811
+ background-color: rgba(0, 0, 0, 0.5);
812
+ width: 100%;
813
+ height: 100%;
814
+ left: 0;
815
+ top: 0;
816
+ overflow-y: auto;
817
+ z-index: 10000;
818
+ opacity: 0;
819
+ visibility: hidden;
820
+ -webkit-transition: all 0.4s;
821
+ -o-transition: all 0.4s;
822
+ transition: all 0.4s;
823
+ }
824
+
825
+ .ekti-admin-video-tutorial-popup.show {
826
+ opacity: 1;
827
+ visibility: visible;
828
+ }
829
+
830
+ .ekti-admin-video-tutorial-popup.show .ekti-admin-video-tutorial-popup-content {
831
+ -webkit-transform: translate(-50%, -50%) scale(1);
832
+ -ms-transform: translate(-50%, -50%) scale(1);
833
+ transform: translate(-50%, -50%) scale(1);
834
+ }
835
+
836
+ .ekti-admin-video-tutorial-popup .ekti-admin-video-tutorial-popup-content {
837
+ position: absolute;
838
+ top: 50%;
839
+ left: 50%;
840
+ -webkit-transition: all 0.7s;
841
+ -o-transition: all 0.7s;
842
+ transition: all 0.7s;
843
+ -webkit-transform: translate(-50%, -50%) scale(0);
844
+ -ms-transform: translate(-50%, -50%) scale(0);
845
+ transform: translate(-50%, -50%) scale(0);
846
+ }
847
+
848
+ .ekti-admin-video-tutorial-close {
849
+ position: absolute;
850
+ top: -10px;
851
+ right: -6px;
852
+ cursor: pointer;
853
+ background-color: #ce1b04;
854
+ border-radius: 100px;
855
+ width: 30px;
856
+ height: 30px;
857
+ -webkit-box-sizing: border-box;
858
+ box-sizing: border-box;
859
+ text-align: center;
860
+ line-height: 33px;
861
+ }
862
+
863
+ .ekti-admin-video-tutorial-close i {
864
+ color: #fff;
865
+ font-size: 20px;
866
+ }
867
+
868
+ .ekit-admin-access-token {
869
+ text-decoration: none;
870
+ color: #F2295B;
871
+ text-align: right;
872
+ display: block;
873
+ font-size: 16px;
874
+ font-weight: 600;
875
+ }
876
+
877
+ .ekit-admin-access-token:focus,
878
+ .ekit-admin-access-token:hover {
879
+ color: #cd1c48;
880
+ outline: none;
881
+ }
882
+
883
+ #v-elementskit-userdata {
884
+ padding-bottom: 150px;
885
+ position: relative;
886
+ z-index: 1;
887
+ }
888
+
889
+ #v-elementskit-userdata .ekit-admin-fields-container {
890
+ max-width: 80%;
891
+ }
892
+
893
+ #v-elementskit-userdata:before {
894
+ content: "";
895
+ background-image: url(../images/user-data-thumb.png);
896
+ position: absolute;
897
+ display: block;
898
+ bottom: 0;
899
+ right: 0;
900
+ z-index: 9999;
901
+ height: 281px;
902
+ width: 444px;
903
+ display: block;
904
+ background-repeat: no-repeat;
905
+ background-position: right bottom;
906
+ z-index: -1;
907
+ }
908
+
909
+ .ekit-admin-fields-container-description {
910
+ font-size: 18px;
911
+ line-height: 28px;
912
+ color: #121116;
913
+ width: 55%;
914
+ display: block;
915
+ }
916
+
917
+ #v-elementskit-elements .ekit-admin-fields-container-fieldset,
918
+ #v-elementskit-modules .ekit-admin-fields-container-fieldset {
919
+ margin-top: 20px;
920
+ }
921
+
922
+ #v-elementskit-elements .ekit-admin-section-header,
923
+ #v-elementskit-modules .ekit-admin-section-header {
924
+ margin-bottom: 20px;
925
+ }
926
+
927
+ .ekit-admin-fields-container-fieldset .attr-row {
928
+ margin-left: -10px;
929
+ margin-right: -10px;
930
+ }
931
+
932
+ .ekit-admin-fields-container-fieldset .attr-row>div {
933
+ padding: 0 10px;
934
+ }
935
+
936
+ .ekit-admin-fields-container-fieldset .ekit-admin-card-shadow {
937
+ background-color: #fff;
938
+ border-radius: 10px;
939
+ -webkit-box-shadow: none;
940
+ box-shadow: none;
941
+ border: 1px solid #EDEDED;
942
+ padding: 0;
943
+ margin: 0;
944
+ margin-bottom: 20px;
945
+ }
946
+
947
+ .ekit-admin-fields-container-fieldset .ekit-admin-card-shadow:hover {
948
+ border-color: #F2295B;
949
+ }
950
+
951
+ .ekit-admin-fields-container-fieldset .attr-input-switch:hover .ekit-admin-demo-tooltip {
952
+ visibility: visible;
953
+ opacity: 1;
954
+ top: -10px;
955
+ }
956
+
957
+ .ekit-admin-user-data-separator {
958
+ display: block;
959
+ border: 2px solid #fff;
960
+ margin-bottom: 30px;
961
+ position: relative;
962
+ }
963
+
964
+ .ekit-admin-user-data-separator:before {
965
+ content: "";
966
+ width: 40px;
967
+ height: 4px;
968
+ background-color: #F2295B;
969
+ display: block;
970
+ position: absolute;
971
+ top: -2px;
972
+ left: -2px;
973
+ }
974
+
975
+ .ekit-admin-demo-tooltip {
976
+ background-color: #121116;
977
+ color: #fff;
978
+ font-size: 10px;
979
+ line-height: 13px;
980
+ text-decoration: none;
981
+ text-transform: uppercase;
982
+ padding: 2px 9px;
983
+ border-radius: 3px;
984
+ display: inline-block;
985
+ position: absolute;
986
+ right: 20px;
987
+ top: 0px;
988
+ opacity: 0;
989
+ visibility: hidden;
990
+ -webkit-transition: all 0.4s;
991
+ -o-transition: all 0.4s;
992
+ transition: all 0.4s;
993
+ }
994
+
995
+ .ekit-admin-demo-tooltip:hover,
996
+ .ekit-admin-demo-tooltip:focus {
997
+ color: #fff;
998
+ border: none;
999
+ -webkit-box-shadow: none;
1000
+ box-shadow: none;
1001
+ }
1002
+
1003
+ .ekit-admin-demo-tooltip:before {
1004
+ content: "";
1005
+ border-left: 8px solid transparent;
1006
+ border-right: 8px solid transparent;
1007
+ border-top: 8px solid #121116;
1008
+ position: absolute;
1009
+ bottom: -8px;
1010
+ left: 50%;
1011
+ -webkit-transform: translateX(-50%);
1012
+ -ms-transform: translateX(-50%);
1013
+ transform: translateX(-50%);
1014
+ }
1015
+
1016
+ .ekit-admin-demo-tooltip i {
1017
+ margin-right: 5px;
1018
+ }
1019
+
1020
+ .admin-bar .ekit-admin-section-header.fixed {
1021
+ top: 30px;
1022
+ }
1023
+
1024
+ .ekit-go-pro-con {
1025
+ -webkit-box-pack: center;
1026
+ -ms-flex-pack: center;
1027
+ justify-content: center;
1028
+ }
1029
+
1030
+ .ekit-go-pro-close {
1031
+ float: right;
1032
+ font-size: 21px;
1033
+ font-weight: bold;
1034
+ line-height: 1;
1035
+ color: #000;
1036
+ text-shadow: 0 1px 0 #fff;
1037
+ filter: alpha(opacity=20);
1038
+ opacity: 0.2;
1039
+ border: none;
1040
+ background-color: transparent;
1041
+ position: relative;
1042
+ z-index: 9;
1043
+ cursor: pointer;
1044
+ }
1045
+
1046
+ .ekit-go-pro-close:focus {
1047
+ outline: none;
1048
+ border: none;
1049
+ -webkit-box-shadow: none;
1050
+ box-shadow: none;
1051
+ }
1052
+
1053
+ .attr-modal-dialog-centered {
1054
+ display: -webkit-box;
1055
+ display: -ms-flexbox;
1056
+ display: flex;
1057
+ -webkit-box-align: center;
1058
+ -ms-flex-align: center;
1059
+ align-items: center;
1060
+ height: 100vh;
1061
+ }
1062
+
1063
+ .modal-backdrop {
1064
+ position: fixed;
1065
+ top: 0;
1066
+ left: 0;
1067
+ width: 100vw;
1068
+ height: 100vh;
1069
+ background-color: rgba(0, 0, 0, 0.5);
1070
+ }
1071
+
1072
+ .ekit-admin-input-text--elementskit-license-key {
1073
+ display: block;
1074
+ }
1075
+
1076
+ .ekit-admin-license-form-submit.btn-license-activate {
1077
+ background-color: #F2295B;
1078
+ border-radius: 27px !important;
1079
+ -webkit-box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
1080
+ box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
1081
+ font-size: 14px;
1082
+ line-height: 16px;
1083
+ text-transform: uppercase;
1084
+ color: #fff;
1085
+ font-weight: bold;
1086
+ border: none;
1087
+ padding: 12px 23px;
1088
+ -webkit-transition: all 0.4s;
1089
+ -o-transition: all 0.4s;
1090
+ transition: all 0.4s;
1091
+ margin-left: 0 !important;
1092
+ height: auto;
1093
+ display: -webkit-box;
1094
+ display: -ms-flexbox;
1095
+ display: flex;
1096
+ -webkit-box-align: center;
1097
+ -ms-flex-align: center;
1098
+ align-items: center;
1099
+ }
1100
+
1101
+ .ekit-admin-license-form-submit.btn-license-activate:hover,
1102
+ .ekit-admin-license-form-submit.btn-license-activate:focus {
1103
+ background-color: #ad0730;
1104
+ outline: none;
1105
+ }
1106
+
1107
+ .attr-input-group-btn {
1108
+ text-align: left;
1109
+ margin-top: 0;
1110
+ }
1111
+
1112
+ .ekit-spinner {
1113
+ width: 13px !important;
1114
+ height: 13px !important;
1115
+ top: 0 !important;
1116
+ }
1117
+
1118
+ .attr-modal-content {
1119
+ -webkit-box-shadow: none;
1120
+ box-shadow: none;
1121
+ }
1122
+
1123
+ .ekit-go-pro-con .attr-modal-body {
1124
+ padding: 30px;
1125
+ }
1126
+
1127
+ .ekit-go-pro-con .attr-modal-body a {
1128
+ color: #f2295b;
1129
+ }
1130
+
1131
+ .elementskit-template-save-btn-editor {
1132
+ background-color: #ccc;
1133
+ border: none;
1134
+ display: -webkit-inline-box;
1135
+ display: -ms-inline-flexbox;
1136
+ display: inline-flex;
1137
+ -webkit-box-align: center;
1138
+ -ms-flex-align: center;
1139
+ align-items: center;
1140
+ color: #fff;
1141
+ border-radius: 27px;
1142
+ -webkit-box-shadow: 0 7px 15px rgba(204, 204, 204, 0.3);
1143
+ box-shadow: 0 7px 15px rgba(204, 204, 204, 0.3);
1144
+ font-size: 14px;
1145
+ line-height: 16px;
1146
+ text-transform: uppercase;
1147
+ color: #fff;
1148
+ font-weight: bold;
1149
+ border: none;
1150
+ padding: 12px 23px;
1151
+ -webkit-transition: all 0.4s;
1152
+ -o-transition: all 0.4s;
1153
+ transition: all 0.4s;
1154
+ }
1155
+
1156
+ .elementskit-template-save-btn-editor:hover,
1157
+ .elementskit-template-save-btn-editor:focus,
1158
+ .elementskit-template-save-btn-editor:active {
1159
+ color: #fff !important;
1160
+ background-color: #adadad !important;
1161
+ outline: none;
1162
+ border: none;
1163
+ -webkit-box-shadow: 0 7px 15px rgba(204, 204, 204, 0.3) !important;
1164
+ box-shadow: 0 7px 15px rgba(204, 204, 204, 0.3) !important;
1165
+ }
1166
+
1167
+ .elementskit-template-save-btn-editor img {
1168
+ max-width: 14px;
1169
+ margin-right: 5px;
1170
+ }
1171
+
1172
+ .elementskit-template-save-btn {
1173
+ background-color: #F2295B;
1174
+ border-radius: 27px;
1175
+ -webkit-box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
1176
+ box-shadow: 0 7px 15px rgba(242, 41, 91, 0.3);
1177
+ font-size: 14px;
1178
+ line-height: 16px;
1179
+ text-transform: uppercase;
1180
+ color: #fff;
1181
+ font-weight: bold;
1182
+ border: none;
1183
+ padding: 12px 23px;
1184
+ -webkit-transition: all 0.4s;
1185
+ -o-transition: all 0.4s;
1186
+ transition: all 0.4s;
1187
+ }
1188
+
1189
+ .elementskit-template-save-btn:hover,
1190
+ .elementskit-template-save-btn:focus {
1191
+ background-color: #ad0730;
1192
+ outline: none;
1193
+ }
1194
+
1195
+
1196
+ /* pro labal etc */
1197
+
1198
+ .ekit-content-type-pro .ekit-admin-input-switch:before,
1199
+ .ekit-content-type-pro-disabled .ekit-admin-input-switch:before {
1200
+ background-color: #F2295B;
1201
+ background-image:none;
1202
+ box-shadow:rgba(0, 5, 41, 0.1) 0px 3px 7px 0px;
1203
+ color:#fff;
1204
+ content:"PRO";
1205
+ display:block;
1206
+ font-size:10px;
1207
+ font-weight:600;
1208
+ height:25px;
1209
+ left:-41px;
1210
+ line-height:28px;
1211
+ padding-bottom:1px;
1212
+ padding-left:3px;
1213
+ padding-right:0px;
1214
+ padding-top:1px;
1215
+ position:absolute;
1216
+ text-align:center;
1217
+ text-transform:uppercase;
1218
+ top:0px;
1219
+ transform:matrix(0.707107, -0.707107, 0.707107, 0.707107, 0, 0);
1220
+ width: 100px;
1221
+ }
1222
+
1223
+ .attr-panel-heading.pro-disabled {
1224
+ position: relative;
1225
+ overflow: hidden;
1226
+ border-radius: 20px!important;
1227
+ }
1228
+
1229
+ .attr-panel-heading.pro-disabled .attr-btn:before {
1230
+ display: none;
1231
+ }
1232
+ .attr-panel-heading.pro-disabled:after {
1233
+ background-color: #F2295B;
1234
+ background-image: none;
1235
+ box-shadow: rgba(0, 5, 41, 0.1) 0px 3px 7px 0px;
1236
+ color: #fff;
1237
+ content: "PRO";
1238
+ display: block;
1239
+ font-size: 10px;
1240
+ font-weight: 600;
1241
+ height: 25px;
1242
+ left: -41px;
1243
+ line-height: 28px;
1244
+ padding-bottom: 1px;
1245
+ padding-left: 3px;
1246
+ padding-right: 0px;
1247
+ padding-top: 6px;
1248
+ position: absolute;
1249
+ text-align: center;
1250
+ text-transform: uppercase;
1251
+ top: -4px;
1252
+ transform: matrix(0.707107, -0.707107, 0.707107, 0.707107, 0, 0);
1253
+ width: 100px;
1254
+ }
1255
+
1256
+ .ekit-content-type-pro-disabled .ekit-admin-input-switch:after {
1257
+ position: absolute;
1258
+ content: "";
1259
+ top: 0;
1260
+ left: 0;
1261
+ height: 100%;
1262
+ width: 100%;
1263
+ /* background-color: #fff; */
1264
+ opacity: .4
1265
+ }
1266
+ .modal-backdrop.attr-fade {
1267
+ position: fixed;
1268
+ top: 0;
1269
+ left: 0;
1270
+ width: 100vw;
1271
+ height: 100vh;
1272
+ background-color: rgba(0, 0, 0, 0.5);
1273
+ z-index: 1;
1274
+ }
1275
+ .ekit-go-pro-con{
1276
+ margin-top: 50px;
1277
+ }
1278
+
1279
+ .ekit-go-pro-con .icon {
1280
+ font-size: 90px;
1281
+ /* color: #339417; */
1282
+ color: #f2295b;
1283
+ opacity: 0.3;
1284
+ }
1285
+ .ekit-go-pro-con h2 {
1286
+ font-size: 44px;
1287
+ margin: 56px 0 34px 0;
1288
+ }
1289
+ .ekit-go-pro-con p {
1290
+ font-size: 20px;
1291
+ font-weight: 300;
1292
+ line-height: 1.2;
1293
+ }
1294
+ .ekit-go-pro-con .attr-modal-body {
1295
+ padding: 30px 15px;
1296
+ }
1297
+ #v-elementskit-ekit-go-pro-nav-tab .ekit-admin-tab-icon{
1298
+ height: 40px;
1299
+ overflow: visible;
1300
+ }
1301
+ .ekit-go-pro-gif{
1302
+ height: 58px;
1303
+ position: absolute;
1304
+ top: 9px;
1305
+ right: 25px;
1306
+ transform: rotate(32deg);
1307
+ opacity: .55;
1308
+ }
1309
+ .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:focus, .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab:hover {
1310
+ /* background-color: #eaeaea; */
1311
+ border-left-color: #79b679;
1312
+ }
1313
+ .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 {
1314
+ filter: invert(1) brightness(50%) sepia(100%) saturate(10000%) hue-rotate(126deg);
1315
+ }
1316
+ .attr-nav-tabs>li>#v-elementskit-ekit-go-pro-nav-tab .ekit-admin-title {
1317
+ color: #79b679;
1318
+ }
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,5961 @@
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
+ @charset "UTF-8";
2
+ .attr-img-responsive, .attr-thumbnail > img, .attr-thumbnail a > img, .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
3
+ display: block;
4
+ max-width: 100%;
5
+ height: auto;
6
+ }
7
+
8
+ .attr-img-rounded {
9
+ border-radius: 6px;
10
+ }
11
+
12
+ .attr-img-thumbnail {
13
+ display: inline-block;
14
+ max-width: 100%;
15
+ height: auto;
16
+ padding: 4px;
17
+ line-height: 1.42857143;
18
+ background-color: #fff;
19
+ border: 1px solid #ddd;
20
+ border-radius: 4px;
21
+ -webkit-transition: all 0.2s ease-in-out;
22
+ -o-transition: all 0.2s ease-in-out;
23
+ transition: all 0.2s ease-in-out;
24
+ }
25
+
26
+ .attr-img-circle {
27
+ border-radius: 50%;
28
+ }
29
+
30
+ .attr-sr-only {
31
+ position: absolute;
32
+ width: 1px;
33
+ height: 1px;
34
+ padding: 0;
35
+ margin: -1px;
36
+ overflow: hidden;
37
+ clip: rect(0, 0, 0, 0);
38
+ border: 0;
39
+ }
40
+
41
+ .attr-sr-only-focusable:active, .attr-sr-only-focusable:focus {
42
+ position: static;
43
+ width: auto;
44
+ height: auto;
45
+ margin: 0;
46
+ overflow: visible;
47
+ clip: auto;
48
+ }
49
+
50
+ .attr-h1, .attr-h2, .attr-h3, .attr-h4, .attr-h5, .attr-h6 {
51
+ font-family: inherit;
52
+ font-weight: 500;
53
+ line-height: 1.1;
54
+ color: inherit;
55
+ }
56
+
57
+ .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 {
58
+ font-weight: normal;
59
+ line-height: 1;
60
+ color: #777;
61
+ }
62
+
63
+ .attr-h1, .attr-h2, .attr-h3 {
64
+ margin-top: 20px;
65
+ margin-bottom: 10px;
66
+ }
67
+
68
+ .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 {
69
+ font-size: 65%;
70
+ }
71
+
72
+ .attr-h4, .attr-h5, .attr-h6 {
73
+ margin-top: 10px;
74
+ margin-bottom: 10px;
75
+ }
76
+
77
+ .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 {
78
+ font-size: 75%;
79
+ }
80
+
81
+ .attr-h1 {
82
+ font-size: 36px;
83
+ }
84
+
85
+ .attr-h2 {
86
+ font-size: 30px;
87
+ }
88
+
89
+ .attr-h3 {
90
+ font-size: 24px;
91
+ }
92
+
93
+ .attr-h4 {
94
+ font-size: 18px;
95
+ }
96
+
97
+ .attr-h5 {
98
+ font-size: 14px;
99
+ }
100
+
101
+ .attr-h6 {
102
+ font-size: 12px;
103
+ }
104
+
105
+ .attr-lead {
106
+ margin-bottom: 20px;
107
+ font-size: 16px;
108
+ font-weight: 300;
109
+ line-height: 1.4;
110
+ }
111
+
112
+ @media (min-width: 768px) {
113
+ .attr-lead {
114
+ font-size: 21px;
115
+ }
116
+ }
117
+ .attr-small {
118
+ font-size: 85%;
119
+ }
120
+
121
+ .attr-mark {
122
+ padding: 0.2em;
123
+ background-color: #fcf8e3;
124
+ }
125
+
126
+ .attr-text-left {
127
+ text-align: left;
128
+ }
129
+
130
+ .attr-text-right {
131
+ text-align: right;
132
+ }
133
+
134
+ .attr-text-center {
135
+ text-align: center;
136
+ }
137
+
138
+ .attr-text-justify {
139
+ text-align: justify;
140
+ }
141
+
142
+ .attr-text-nowrap {
143
+ white-space: nowrap;
144
+ }
145
+
146
+ .attr-text-lowercase {
147
+ text-transform: lowercase;
148
+ }
149
+
150
+ .attr-text-uppercase {
151
+ text-transform: uppercase;
152
+ }
153
+
154
+ .attr-text-capitalize {
155
+ text-transform: capitalize;
156
+ }
157
+
158
+ .attr-text-muted {
159
+ color: #777;
160
+ }
161
+
162
+ .attr-text-primary {
163
+ color: #337ab7;
164
+ }
165
+
166
+ a.attr-text-primary:hover, a.attr-text-primary:focus {
167
+ color: #286090;
168
+ }
169
+
170
+ .attr-text-success {
171
+ color: #3c763d;
172
+ }
173
+
174
+ a.attr-text-success:hover, a.attr-text-success:focus {
175
+ color: #2b542c;
176
+ }
177
+
178
+ .attr-text-info {
179
+ color: #31708f;
180
+ }
181
+
182
+ a.attr-text-info:hover, a.attr-text-info:focus {
183
+ color: #245269;
184
+ }
185
+
186
+ .attr-text-warning {
187
+ color: #8a6d3b;
188
+ }
189
+
190
+ a.attr-text-warning:hover, a.attr-text-warning:focus {
191
+ color: #66512c;
192
+ }
193
+
194
+ .attr-text-danger {
195
+ color: #a94442;
196
+ }
197
+
198
+ a.attr-text-danger:hover, a.attr-text-danger:focus {
199
+ color: #843534;
200
+ }
201
+
202
+ .attr-bg-primary {
203
+ color: #fff;
204
+ background-color: #337ab7;
205
+ }
206
+
207
+ a.attr-bg-primary:hover, a.attr-bg-primary:focus {
208
+ background-color: #286090;
209
+ }
210
+
211
+ .attr-bg-success {
212
+ background-color: #dff0d8;
213
+ }
214
+
215
+ a.attr-bg-success:hover, a.attr-bg-success:focus {
216
+ background-color: #c1e2b3;
217
+ }
218
+
219
+ .attr-bg-info {
220
+ background-color: #d9edf7;
221
+ }
222
+
223
+ a.attr-bg-info:hover, a.attr-bg-info:focus {
224
+ background-color: #afd9ee;
225
+ }
226
+
227
+ .attr-bg-warning {
228
+ background-color: #fcf8e3;
229
+ }
230
+
231
+ a.attr-bg-warning:hover, a.attr-bg-warning:focus {
232
+ background-color: #f7ecb5;
233
+ }
234
+
235
+ .attr-bg-danger {
236
+ background-color: #f2dede;
237
+ }
238
+
239
+ a.attr-bg-danger:hover, a.attr-bg-danger:focus {
240
+ background-color: #e4b9b9;
241
+ }
242
+
243
+ .attr-page-header {
244
+ padding-bottom: 9px;
245
+ margin: 40px 0 20px;
246
+ border-bottom: 1px solid #eee;
247
+ }
248
+
249
+ .attr-list-unstyled {
250
+ padding-left: 0;
251
+ list-style: none;
252
+ }
253
+
254
+ .attr-list-inline {
255
+ padding-left: 0;
256
+ margin-left: -5px;
257
+ list-style: none;
258
+ }
259
+
260
+ .attr-list-inline > li {
261
+ display: inline-block;
262
+ padding-right: 5px;
263
+ padding-left: 5px;
264
+ }
265
+
266
+ @media (min-width: 768px) {
267
+ .attr-dl-horizontal dt {
268
+ float: left;
269
+ width: 160px;
270
+ overflow: hidden;
271
+ clear: left;
272
+ text-align: right;
273
+ -o-text-overflow: ellipsis;
274
+ text-overflow: ellipsis;
275
+ white-space: nowrap;
276
+ }
277
+
278
+ .attr-dl-horizontal dd {
279
+ margin-left: 180px;
280
+ }
281
+ }
282
+ .attr-initialism {
283
+ font-size: 90%;
284
+ text-transform: uppercase;
285
+ }
286
+
287
+ .attr-pre-scrollable {
288
+ max-height: 340px;
289
+ overflow-y: scroll;
290
+ }
291
+
292
+ .attr-container {
293
+ padding-right: 15px;
294
+ padding-left: 15px;
295
+ margin-right: auto;
296
+ margin-left: auto;
297
+ }
298
+
299
+ @media (min-width: 768px) {
300
+ .attr-container {
301
+ width: 750px;
302
+ }
303
+ }
304
+ @media (min-width: 992px) {
305
+ .attr-container {
306
+ width: 970px;
307
+ }
308
+ }
309
+ @media (min-width: 1200px) {
310
+ .attr-container {
311
+ width: 1170px;
312
+ }
313
+ }
314
+ .attr-container-fluid {
315
+ padding-right: 15px;
316
+ padding-left: 15px;
317
+ margin-right: auto;
318
+ margin-left: auto;
319
+ }
320
+
321
+ .attr-row {
322
+ margin-right: -15px;
323
+ margin-left: -15px;
324
+ }
325
+
326
+ .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 {
327
+ position: relative;
328
+ min-height: 1px;
329
+ padding-right: 15px;
330
+ padding-left: 15px;
331
+ }
332
+
333
+ .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 {
334
+ float: left;
335
+ }
336
+
337
+ .attr-col-xs-12 {
338
+ width: 100%;
339
+ }
340
+
341
+ .attr-col-xs-11 {
342
+ width: 91.66666667%;
343
+ }
344
+
345
+ .attr-col-xs-10 {
346
+ width: 83.33333333%;
347
+ }
348
+
349
+ .attr-col-xs-9 {
350
+ width: 75%;
351
+ }
352
+
353
+ .attr-col-xs-8 {
354
+ width: 66.66666667%;
355
+ }
356
+
357
+ .attr-col-xs-7 {
358
+ width: 58.33333333%;
359
+ }
360
+
361
+ .attr-col-xs-6 {
362
+ width: 50%;
363
+ }
364
+
365
+ .attr-col-xs-5 {
366
+ width: 41.66666667%;
367
+ }
368
+
369
+ .attr-col-xs-4 {
370
+ width: 33.33333333%;
371
+ }
372
+
373
+ .attr-col-xs-3 {
374
+ width: 25%;
375
+ }
376
+
377
+ .attr-col-xs-2 {
378
+ width: 16.66666667%;
379
+ }
380
+
381
+ .attr-col-xs-1 {
382
+ width: 8.33333333%;
383
+ }
384
+
385
+ .attr-col-xs-pull-12 {
386
+ right: 100%;
387
+ }
388
+
389
+ .attr-col-xs-pull-11 {
390
+ right: 91.66666667%;
391
+ }
392
+
393
+ .attr-col-xs-pull-10 {
394
+ right: 83.33333333%;
395
+ }
396
+
397
+ .attr-col-xs-pull-9 {
398
+ right: 75%;
399
+ }
400
+
401
+ .attr-col-xs-pull-8 {
402
+ right: 66.66666667%;
403
+ }
404
+
405
+ .attr-col-xs-pull-7 {
406
+ right: 58.33333333%;
407
+ }
408
+
409
+ .attr-col-xs-pull-6 {
410
+ right: 50%;
411
+ }
412
+
413
+ .attr-col-xs-pull-5 {
414
+ right: 41.66666667%;
415
+ }
416
+
417
+ .attr-col-xs-pull-4 {
418
+ right: 33.33333333%;
419
+ }
420
+
421
+ .attr-col-xs-pull-3 {
422
+ right: 25%;
423
+ }
424
+
425
+ .attr-col-xs-pull-2 {
426
+ right: 16.66666667%;
427
+ }
428
+
429
+ .attr-col-xs-pull-1 {
430
+ right: 8.33333333%;
431
+ }
432
+
433
+ .attr-col-xs-pull-0 {
434
+ right: auto;
435
+ }
436
+
437
+ .attr-col-xs-push-12 {
438
+ left: 100%;
439
+ }
440
+
441
+ .attr-col-xs-push-11 {
442
+ left: 91.66666667%;
443
+ }
444
+
445
+ .attr-col-xs-push-10 {
446
+ left: 83.33333333%;
447
+ }
448
+
449
+ .attr-col-xs-push-9 {
450
+ left: 75%;
451
+ }
452
+
453
+ .attr-col-xs-push-8 {
454
+ left: 66.66666667%;
455
+ }
456
+
457
+ .attr-col-xs-push-7 {
458
+ left: 58.33333333%;
459
+ }
460
+
461
+ .attr-col-xs-push-6 {
462
+ left: 50%;
463
+ }
464
+
465
+ .attr-col-xs-push-5 {
466
+ left: 41.66666667%;
467
+ }
468
+
469
+ .attr-col-xs-push-4 {
470
+ left: 33.33333333%;
471
+ }
472
+
473
+ .attr-col-xs-push-3 {
474
+ left: 25%;
475
+ }
476
+
477
+ .attr-col-xs-push-2 {
478
+ left: 16.66666667%;
479
+ }
480
+
481
+ .attr-col-xs-push-1 {
482
+ left: 8.33333333%;
483
+ }
484
+
485
+ .attr-col-xs-push-0 {
486
+ left: auto;
487
+ }
488
+
489
+ .attr-col-xs-offset-12 {
490
+ margin-left: 100%;
491
+ }
492
+
493
+ .attr-col-xs-offset-11 {
494
+ margin-left: 91.66666667%;
495
+ }
496
+
497
+ .attr-col-xs-offset-10 {
498
+ margin-left: 83.33333333%;
499
+ }
500
+
501
+ .attr-col-xs-offset-9 {
502
+ margin-left: 75%;
503
+ }
504
+
505
+ .attr-col-xs-offset-8 {
506
+ margin-left: 66.66666667%;
507
+ }
508
+
509
+ .attr-col-xs-offset-7 {
510
+ margin-left: 58.33333333%;
511
+ }
512
+
513
+ .attr-col-xs-offset-6 {
514
+ margin-left: 50%;
515
+ }
516
+
517
+ .attr-col-xs-offset-5 {
518
+ margin-left: 41.66666667%;
519
+ }
520
+
521
+ .attr-col-xs-offset-4 {
522
+ margin-left: 33.33333333%;
523
+ }
524
+
525
+ .attr-col-xs-offset-3 {
526
+ margin-left: 25%;
527
+ }
528
+
529
+ .attr-col-xs-offset-2 {
530
+ margin-left: 16.66666667%;
531
+ }
532
+
533
+ .attr-col-xs-offset-1 {
534
+ margin-left: 8.33333333%;
535
+ }
536
+
537
+ .attr-col-xs-offset-0 {
538
+ margin-left: 0;
539
+ }
540
+
541
+ @media (min-width: 768px) {
542
+ .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 {
543
+ float: left;
544
+ }
545
+
546
+ .attr-col-sm-12 {
547
+ width: 100%;
548
+ }
549
+
550
+ .attr-col-sm-11 {
551
+ width: 91.66666667%;
552
+ }
553
+
554
+ .attr-col-sm-10 {
555
+ width: 83.33333333%;
556
+ }
557
+
558
+ .attr-col-sm-9 {
559
+ width: 75%;
560
+ }
561
+
562
+ .attr-col-sm-8 {
563
+ width: 66.66666667%;
564
+ }
565
+
566
+ .attr-col-sm-7 {
567
+ width: 58.33333333%;
568
+ }
569
+
570
+ .attr-col-sm-6 {
571
+ width: 50%;
572
+ }
573
+
574
+ .attr-col-sm-5 {
575
+ width: 41.66666667%;
576
+ }
577
+
578
+ .attr-col-sm-4 {
579
+ width: 33.33333333%;
580
+ }
581
+
582
+ .attr-col-sm-3 {
583
+ width: 25%;
584
+ }
585
+
586
+ .attr-col-sm-2 {
587
+ width: 16.66666667%;
588
+ }
589
+
590
+ .attr-col-sm-1 {
591
+ width: 8.33333333%;
592
+ }
593
+
594
+ .attr-col-sm-pull-12 {
595
+ right: 100%;
596
+ }
597
+
598
+ .attr-col-sm-pull-11 {
599
+ right: 91.66666667%;
600
+ }
601
+
602
+ .attr-col-sm-pull-10 {
603
+ right: 83.33333333%;
604
+ }
605
+
606
+ .attr-col-sm-pull-9 {
607
+ right: 75%;
608
+ }
609
+
610
+ .attr-col-sm-pull-8 {
611
+ right: 66.66666667%;
612
+ }
613
+
614
+ .attr-col-sm-pull-7 {
615
+ right: 58.33333333%;
616
+ }
617
+
618
+ .attr-col-sm-pull-6 {
619
+ right: 50%;
620
+ }
621
+
622
+ .attr-col-sm-pull-5 {
623
+ right: 41.66666667%;
624
+ }
625
+
626
+ .attr-col-sm-pull-4 {
627
+ right: 33.33333333%;
628
+ }
629
+
630
+ .attr-col-sm-pull-3 {
631
+ right: 25%;
632
+ }
633
+
634
+ .attr-col-sm-pull-2 {
635
+ right: 16.66666667%;
636
+ }
637
+
638
+ .attr-col-sm-pull-1 {
639
+ right: 8.33333333%;
640
+ }
641
+
642
+ .attr-col-sm-pull-0 {
643
+ right: auto;
644
+ }
645
+
646
+ .attr-col-sm-push-12 {
647
+ left: 100%;
648
+ }
649
+
650
+ .attr-col-sm-push-11 {
651
+ left: 91.66666667%;
652
+ }
653
+
654
+ .attr-col-sm-push-10 {
655
+ left: 83.33333333%;
656
+ }
657
+
658
+ .attr-col-sm-push-9 {
659
+ left: 75%;
660
+ }
661
+
662
+ .attr-col-sm-push-8 {
663
+ left: 66.66666667%;
664
+ }
665
+
666
+ .attr-col-sm-push-7 {
667
+ left: 58.33333333%;
668
+ }
669
+
670
+ .attr-col-sm-push-6 {
671
+ left: 50%;
672
+ }
673
+
674
+ .attr-col-sm-push-5 {
675
+ left: 41.66666667%;
676
+ }
677
+
678
+ .attr-col-sm-push-4 {
679
+ left: 33.33333333%;
680
+ }
681
+
682
+ .attr-col-sm-push-3 {
683
+ left: 25%;
684
+ }
685
+
686
+ .attr-col-sm-push-2 {
687
+ left: 16.66666667%;
688
+ }
689
+
690
+ .attr-col-sm-push-1 {
691
+ left: 8.33333333%;
692
+ }
693
+
694
+ .attr-col-sm-push-0 {
695
+ left: auto;
696
+ }
697
+
698
+ .attr-col-sm-offset-12 {
699
+ margin-left: 100%;
700
+ }
701
+
702
+ .attr-col-sm-offset-11 {
703
+ margin-left: 91.66666667%;
704
+ }
705
+
706
+ .attr-col-sm-offset-10 {
707
+ margin-left: 83.33333333%;
708
+ }
709
+
710
+ .attr-col-sm-offset-9 {
711
+ margin-left: 75%;
712
+ }
713
+
714
+ .attr-col-sm-offset-8 {
715
+ margin-left: 66.66666667%;
716
+ }
717
+
718
+ .attr-col-sm-offset-7 {
719
+ margin-left: 58.33333333%;
720
+ }
721
+
722
+ .attr-col-sm-offset-6 {
723
+ margin-left: 50%;
724
+ }
725
+
726
+ .attr-col-sm-offset-5 {
727
+ margin-left: 41.66666667%;
728
+ }
729
+
730
+ .attr-col-sm-offset-4 {
731
+ margin-left: 33.33333333%;
732
+ }
733
+
734
+ .attr-col-sm-offset-3 {
735
+ margin-left: 25%;
736
+ }
737
+
738
+ .attr-col-sm-offset-2 {
739
+ margin-left: 16.66666667%;
740
+ }
741
+
742
+ .attr-col-sm-offset-1 {
743
+ margin-left: 8.33333333%;
744
+ }
745
+
746
+ .attr-col-sm-offset-0 {
747
+ margin-left: 0;
748
+ }
749
+ }
750
+ @media (min-width: 992px) {
751
+ .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 {
752
+ float: left;
753
+ }
754
+
755
+ .attr-col-md-12 {
756
+ width: 100%;
757
+ }
758
+
759
+ .attr-col-md-11 {
760
+ width: 91.66666667%;
761
+ }
762
+
763
+ .attr-col-md-10 {
764
+ width: 83.33333333%;
765
+ }
766
+
767
+ .attr-col-md-9 {
768
+ width: 75%;
769
+ }
770
+
771
+ .attr-col-md-8 {
772
+ width: 66.66666667%;
773
+ }
774
+
775
+ .attr-col-md-7 {
776
+ width: 58.33333333%;
777
+ }
778
+
779
+ .attr-col-md-6 {
780
+ width: 50%;
781
+ }
782
+
783
+ .attr-col-md-5 {
784
+ width: 41.66666667%;
785
+ }
786
+
787
+ .attr-col-md-4 {
788
+ width: 33.33333333%;
789
+ }
790
+
791
+ .attr-col-md-3 {
792
+ width: 25%;
793
+ }
794
+
795
+ .attr-col-md-2 {
796
+ width: 16.66666667%;
797
+ }
798
+
799
+ .attr-col-md-1 {
800
+ width: 8.33333333%;
801
+ }
802
+
803
+ .attr-col-md-pull-12 {
804
+ right: 100%;
805
+ }
806
+
807
+ .attr-col-md-pull-11 {
808
+ right: 91.66666667%;
809
+ }
810
+
811
+ .attr-col-md-pull-10 {
812
+ right: 83.33333333%;
813
+ }
814
+
815
+ .attr-col-md-pull-9 {
816
+ right: 75%;
817
+ }
818
+
819
+ .attr-col-md-pull-8 {
820
+ right: 66.66666667%;
821
+ }
822
+
823
+ .attr-col-md-pull-7 {
824
+ right: 58.33333333%;
825
+ }
826
+
827
+ .attr-col-md-pull-6 {
828
+ right: 50%;
829
+ }
830
+
831
+ .attr-col-md-pull-5 {
832
+ right: 41.66666667%;
833
+ }
834
+
835
+ .attr-col-md-pull-4 {
836
+ right: 33.33333333%;
837
+ }
838
+
839
+ .attr-col-md-pull-3 {
840
+ right: 25%;
841
+ }
842
+
843
+ .attr-col-md-pull-2 {
844
+ right: 16.66666667%;
845
+ }
846
+
847
+ .attr-col-md-pull-1 {
848
+ right: 8.33333333%;
849
+ }
850
+
851
+ .attr-col-md-pull-0 {
852
+ right: auto;
853
+ }
854
+
855
+ .attr-col-md-push-12 {
856
+ left: 100%;
857
+ }
858
+
859
+ .attr-col-md-push-11 {
860
+ left: 91.66666667%;
861
+ }
862
+
863
+ .attr-col-md-push-10 {
864
+ left: 83.33333333%;
865
+ }
866
+
867
+ .attr-col-md-push-9 {
868
+ left: 75%;
869
+ }
870
+
871
+ .attr-col-md-push-8 {
872
+ left: 66.66666667%;
873
+ }
874
+
875
+ .attr-col-md-push-7 {
876
+ left: 58.33333333%;
877
+ }
878
+
879
+ .attr-col-md-push-6 {
880
+ left: 50%;
881
+ }
882
+
883
+ .attr-col-md-push-5 {
884
+ left: 41.66666667%;
885
+ }
886
+
887
+ .attr-col-md-push-4 {
888
+ left: 33.33333333%;
889
+ }
890
+
891
+ .attr-col-md-push-3 {
892
+ left: 25%;
893
+ }
894
+
895
+ .attr-col-md-push-2 {
896
+ left: 16.66666667%;
897
+ }
898
+
899
+ .attr-col-md-push-1 {
900
+ left: 8.33333333%;
901
+ }
902
+
903
+ .attr-col-md-push-0 {
904
+ left: auto;
905
+ }
906
+
907
+ .attr-col-md-offset-12 {
908
+ margin-left: 100%;
909
+ }
910
+
911
+ .attr-col-md-offset-11 {
912
+ margin-left: 91.66666667%;
913
+ }
914
+
915
+ .attr-col-md-offset-10 {
916
+ margin-left: 83.33333333%;
917
+ }
918
+
919
+ .attr-col-md-offset-9 {
920
+ margin-left: 75%;
921
+ }
922
+
923
+ .attr-col-md-offset-8 {
924
+ margin-left: 66.66666667%;
925
+ }
926
+
927
+ .attr-col-md-offset-7 {
928
+ margin-left: 58.33333333%;
929
+ }
930
+
931
+ .attr-col-md-offset-6 {
932
+ margin-left: 50%;
933
+ }
934
+
935
+ .attr-col-md-offset-5 {
936
+ margin-left: 41.66666667%;
937
+ }
938
+
939
+ .attr-col-md-offset-4 {
940
+ margin-left: 33.33333333%;
941
+ }
942
+
943
+ .attr-col-md-offset-3 {
944
+ margin-left: 25%;
945
+ }
946
+
947
+ .attr-col-md-offset-2 {
948
+ margin-left: 16.66666667%;
949
+ }
950
+
951
+ .attr-col-md-offset-1 {
952
+ margin-left: 8.33333333%;
953
+ }
954
+
955
+ .attr-col-md-offset-0 {
956
+ margin-left: 0;
957
+ }
958
+ }
959
+ @media (min-width: 1200px) {
960
+ .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 {
961
+ float: left;
962
+ }
963
+
964
+ .attr-col-lg-12 {
965
+ width: 100%;
966
+ }
967
+
968
+ .attr-col-lg-11 {
969
+ width: 91.66666667%;
970
+ }
971
+
972
+ .attr-col-lg-10 {
973
+ width: 83.33333333%;
974
+ }
975
+
976
+ .attr-col-lg-9 {
977
+ width: 75%;
978
+ }
979
+
980
+ .attr-col-lg-8 {
981
+ width: 66.66666667%;
982
+ }
983
+
984
+ .attr-col-lg-7 {
985
+ width: 58.33333333%;
986
+ }
987
+
988
+ .attr-col-lg-6 {
989
+ width: 50%;
990
+ }
991
+
992
+ .attr-col-lg-5 {
993
+ width: 41.66666667%;
994
+ }
995
+
996
+ .attr-col-lg-4 {
997
+ width: 33.33333333%;
998
+ }
999
+
1000
+ .attr-col-lg-3 {
1001
+ width: 25%;
1002
+ }
1003
+
1004
+ .attr-col-lg-2 {
1005
+ width: 16.66666667%;
1006
+ }
1007
+
1008
+ .attr-col-lg-1 {
1009
+ width: 8.33333333%;
1010
+ }
1011
+
1012
+ .attr-col-lg-pull-12 {
1013
+ right: 100%;
1014
+ }
1015
+
1016
+ .attr-col-lg-pull-11 {
1017
+ right: 91.66666667%;
1018
+ }
1019
+
1020
+ .attr-col-lg-pull-10 {
1021
+ right: 83.33333333%;
1022
+ }
1023
+
1024
+ .attr-col-lg-pull-9 {
1025
+ right: 75%;
1026
+ }
1027
+
1028
+ .attr-col-lg-pull-8 {
1029
+ right: 66.66666667%;
1030
+ }
1031
+
1032
+ .attr-col-lg-pull-7 {
1033
+ right: 58.33333333%;
1034
+ }
1035
+
1036
+ .attr-col-lg-pull-6 {
1037
+ right: 50%;
1038
+ }
1039
+
1040
+ .attr-col-lg-pull-5 {
1041
+ right: 41.66666667%;
1042
+ }
1043
+
1044
+ .attr-col-lg-pull-4 {
1045
+ right: 33.33333333%;
1046
+ }
1047
+
1048
+ .attr-col-lg-pull-3 {
1049
+ right: 25%;
1050
+ }
1051
+
1052
+ .attr-col-lg-pull-2 {
1053
+ right: 16.66666667%;
1054
+ }
1055
+
1056
+ .attr-col-lg-pull-1 {
1057
+ right: 8.33333333%;
1058
+ }
1059
+
1060
+ .attr-col-lg-pull-0 {
1061
+ right: auto;
1062
+ }
1063
+
1064
+ .attr-col-lg-push-12 {
1065
+ left: 100%;
1066
+ }
1067
+
1068
+ .attr-col-lg-push-11 {
1069
+ left: 91.66666667%;
1070
+ }
1071
+
1072
+ .attr-col-lg-push-10 {
1073
+ left: 83.33333333%;
1074
+ }
1075
+
1076
+ .attr-col-lg-push-9 {
1077
+ left: 75%;
1078
+ }
1079
+
1080
+ .attr-col-lg-push-8 {
1081
+ left: 66.66666667%;
1082
+ }
1083
+
1084
+ .attr-col-lg-push-7 {
1085
+ left: 58.33333333%;
1086
+ }
1087
+
1088
+ .attr-col-lg-push-6 {
1089
+ left: 50%;
1090
+ }
1091
+
1092
+ .attr-col-lg-push-5 {
1093
+ left: 41.66666667%;
1094
+ }
1095
+
1096
+ .attr-col-lg-push-4 {
1097
+ left: 33.33333333%;
1098
+ }
1099
+
1100
+ .attr-col-lg-push-3 {
1101
+ left: 25%;
1102
+ }
1103
+
1104
+ .attr-col-lg-push-2 {
1105
+ left: 16.66666667%;
1106
+ }
1107
+
1108
+ .attr-col-lg-push-1 {
1109
+ left: 8.33333333%;
1110
+ }
1111
+
1112
+ .attr-col-lg-push-0 {
1113
+ left: auto;
1114
+ }
1115
+
1116
+ .attr-col-lg-offset-12 {
1117
+ margin-left: 100%;
1118
+ }
1119
+
1120
+ .attr-col-lg-offset-11 {
1121
+ margin-left: 91.66666667%;
1122
+ }
1123
+
1124
+ .attr-col-lg-offset-10 {
1125
+ margin-left: 83.33333333%;
1126
+ }
1127
+
1128
+ .attr-col-lg-offset-9 {
1129
+ margin-left: 75%;
1130
+ }
1131
+
1132
+ .attr-col-lg-offset-8 {
1133
+ margin-left: 66.66666667%;
1134
+ }
1135
+
1136
+ .attr-col-lg-offset-7 {
1137
+ margin-left: 58.33333333%;
1138
+ }
1139
+
1140
+ .attr-col-lg-offset-6 {
1141
+ margin-left: 50%;
1142
+ }
1143
+
1144
+ .attr-col-lg-offset-5 {
1145
+ margin-left: 41.66666667%;
1146
+ }
1147
+
1148
+ .attr-col-lg-offset-4 {
1149
+ margin-left: 33.33333333%;
1150
+ }
1151
+
1152
+ .attr-col-lg-offset-3 {
1153
+ margin-left: 25%;
1154
+ }
1155
+
1156
+ .attr-col-lg-offset-2 {
1157
+ margin-left: 16.66666667%;
1158
+ }
1159
+
1160
+ .attr-col-lg-offset-1 {
1161
+ margin-left: 8.33333333%;
1162
+ }
1163
+
1164
+ .attr-col-lg-offset-0 {
1165
+ margin-left: 0;
1166
+ }
1167
+ }
1168
+ .attr-table {
1169
+ width: 100%;
1170
+ max-width: 100%;
1171
+ margin-bottom: 20px;
1172
+ }
1173
+
1174
+ .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 {
1175
+ padding: 8px;
1176
+ line-height: 1.42857143;
1177
+ vertical-align: top;
1178
+ border-top: 1px solid #ddd;
1179
+ }
1180
+
1181
+ .attr-table > thead > tr > th {
1182
+ vertical-align: bottom;
1183
+ border-bottom: 2px solid #ddd;
1184
+ }
1185
+
1186
+ .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 {
1187
+ border-top: 0;
1188
+ }
1189
+
1190
+ .attr-table > tbody + tbody {
1191
+ border-top: 2px solid #ddd;
1192
+ }
1193
+
1194
+ .attr-table .attr-table {
1195
+ background-color: #fff;
1196
+ }
1197
+
1198
+ .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 {
1199
+ padding: 5px;
1200
+ }
1201
+
1202
+ .attr-table-bordered {
1203
+ border: 1px solid #ddd;
1204
+ }
1205
+
1206
+ .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 {
1207
+ border: 1px solid #ddd;
1208
+ }
1209
+
1210
+ .attr-table-bordered > thead > tr > th, .attr-table-bordered > thead > tr > td {
1211
+ border-bottom-width: 2px;
1212
+ }
1213
+
1214
+ .attr-table-striped > tbody > tr:nth-of-type(odd) {
1215
+ background-color: #f9f9f9;
1216
+ }
1217
+
1218
+ .attr-table-hover > tbody > tr:hover {
1219
+ background-color: #f5f5f5;
1220
+ }
1221
+
1222
+ .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 {
1223
+ background-color: #f5f5f5;
1224
+ }
1225
+
1226
+ .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 {
1227
+ background-color: #e8e8e8;
1228
+ }
1229
+
1230
+ .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 {
1231
+ background-color: #dff0d8;
1232
+ }
1233
+
1234
+ .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 {
1235
+ background-color: #d0e9c6;
1236
+ }
1237
+
1238
+ .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 {
1239
+ background-color: #d9edf7;
1240
+ }
1241
+
1242
+ .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 {
1243
+ background-color: #c4e3f3;
1244
+ }
1245
+
1246
+ .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 {
1247
+ background-color: #fcf8e3;
1248
+ }
1249
+
1250
+ .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 {
1251
+ background-color: #faf2cc;
1252
+ }
1253
+
1254
+ .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 {
1255
+ background-color: #f2dede;
1256
+ }
1257
+
1258
+ .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 {
1259
+ background-color: #ebcccc;
1260
+ }
1261
+
1262
+ .attr-table-responsive {
1263
+ min-height: 0.01%;
1264
+ overflow-x: auto;
1265
+ }
1266
+
1267
+ @media screen and (max-width: 767px) {
1268
+ .attr-table-responsive {
1269
+ width: 100%;
1270
+ margin-bottom: 15px;
1271
+ overflow-y: hidden;
1272
+ -ms-overflow-style: -ms-autohiding-scrollbar;
1273
+ border: 1px solid #ddd;
1274
+ }
1275
+
1276
+ .attr-table-responsive > .attr-table {
1277
+ margin-bottom: 0;
1278
+ }
1279
+
1280
+ .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 {
1281
+ white-space: nowrap;
1282
+ }
1283
+
1284
+ .attr-table-responsive > .attr-table-bordered {
1285
+ border: 0;
1286
+ }
1287
+
1288
+ .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 {
1289
+ border-left: 0;
1290
+ }
1291
+
1292
+ .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 {
1293
+ border-right: 0;
1294
+ }
1295
+
1296
+ .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 {
1297
+ border-bottom: 0;
1298
+ }
1299
+ }
1300
+ .attr-form-control {
1301
+ display: block;
1302
+ width: 100%;
1303
+ height: 34px;
1304
+ padding: 6px 12px;
1305
+ font-size: 14px;
1306
+ line-height: 1.42857143;
1307
+ color: #555;
1308
+ background-color: #fff;
1309
+ background-image: none;
1310
+ border: 1px solid #ccc;
1311
+ border-radius: 4px;
1312
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1313
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1314
+ -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
1315
+ -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1316
+ transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
1317
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
1318
+ transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
1319
+ }
1320
+
1321
+ .attr-form-control:focus {
1322
+ border-color: #66afe9;
1323
+ outline: 0;
1324
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1325
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
1326
+ }
1327
+
1328
+ .attr-form-control::-moz-placeholder {
1329
+ color: #999;
1330
+ opacity: 1;
1331
+ }
1332
+
1333
+ .attr-form-control:-ms-input-placeholder {
1334
+ color: #999;
1335
+ }
1336
+
1337
+ .attr-form-control::-webkit-input-placeholder {
1338
+ color: #999;
1339
+ }
1340
+
1341
+ .attr-form-control::-ms-expand {
1342
+ background-color: transparent;
1343
+ border: 0;
1344
+ }
1345
+
1346
+ .attr-form-control[disabled], .attr-form-control[readonly], fieldset[disabled] .attr-form-control {
1347
+ background-color: #eee;
1348
+ opacity: 1;
1349
+ }
1350
+
1351
+ .attr-form-control[disabled], fieldset[disabled] .attr-form-control {
1352
+ cursor: not-allowed;
1353
+ }
1354
+
1355
+ textarea.attr-form-control {
1356
+ height: auto;
1357
+ }
1358
+
1359
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
1360
+ 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 {
1361
+ line-height: 34px;
1362
+ }
1363
+
1364
+ 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] {
1365
+ line-height: 30px;
1366
+ }
1367
+
1368
+ 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] {
1369
+ line-height: 46px;
1370
+ }
1371
+ }
1372
+ .attr-form-group {
1373
+ margin-bottom: 15px;
1374
+ }
1375
+
1376
+ .attr-radio, .attr-checkbox {
1377
+ position: relative;
1378
+ display: block;
1379
+ margin-top: 10px;
1380
+ margin-bottom: 10px;
1381
+ }
1382
+
1383
+ .attr-radio label, .attr-checkbox label {
1384
+ min-height: 20px;
1385
+ padding-left: 20px;
1386
+ margin-bottom: 0;
1387
+ font-weight: normal;
1388
+ cursor: pointer;
1389
+ }
1390
+
1391
+ .attr-radio input[type=radio], .attr-radio-inline input[type=radio], .attr-checkbox input[type=checkbox], .attr-checkbox-inline input[type=checkbox] {
1392
+ position: absolute;
1393
+ margin-top: 4px \9 ;
1394
+ margin-left: -20px;
1395
+ }
1396
+
1397
+ .attr-radio + .attr-radio, .attr-checkbox + .attr-checkbox {
1398
+ margin-top: -5px;
1399
+ }
1400
+
1401
+ .attr-radio-inline, .attr-checkbox-inline {
1402
+ position: relative;
1403
+ display: inline-block;
1404
+ padding-left: 20px;
1405
+ margin-bottom: 0;
1406
+ font-weight: normal;
1407
+ vertical-align: middle;
1408
+ cursor: pointer;
1409
+ }
1410
+
1411
+ .attr-radio-inline + .attr-radio-inline, .attr-checkbox-inline + .attr-checkbox-inline {
1412
+ margin-top: 0;
1413
+ margin-left: 10px;
1414
+ }
1415
+
1416
+ 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] {
1417
+ cursor: not-allowed;
1418
+ }
1419
+
1420
+ .attr-radio-inline.attr-disabled, .attr-checkbox-inline.attr-disabled, fieldset[disabled] .attr-radio-inline, fieldset[disabled] .attr-checkbox-inline {
1421
+ cursor: not-allowed;
1422
+ }
1423
+
1424
+ .attr-radio.attr-disabled label, .attr-checkbox.attr-disabled label, fieldset[disabled] .attr-radio label, fieldset[disabled] .attr-checkbox label {
1425
+ cursor: not-allowed;
1426
+ }
1427
+
1428
+ .attr-form-control-static {
1429
+ min-height: 34px;
1430
+ padding-top: 7px;
1431
+ padding-bottom: 7px;
1432
+ margin-bottom: 0;
1433
+ }
1434
+
1435
+ .attr-form-control-static.attr-input-lg, .attr-form-control-static.attr-input-sm {
1436
+ padding-right: 0;
1437
+ padding-left: 0;
1438
+ }
1439
+
1440
+ .attr-input-sm {
1441
+ height: 30px;
1442
+ padding: 5px 10px;
1443
+ font-size: 12px;
1444
+ line-height: 1.5;
1445
+ border-radius: 3px;
1446
+ }
1447
+
1448
+ select.attr-input-sm {
1449
+ height: 30px;
1450
+ line-height: 30px;
1451
+ }
1452
+
1453
+ textarea.attr-input-sm, select[multiple].attr-input-sm {
1454
+ height: auto;
1455
+ }
1456
+
1457
+ .attr-form-group-sm .attr-form-control {
1458
+ height: 30px;
1459
+ padding: 5px 10px;
1460
+ font-size: 12px;
1461
+ line-height: 1.5;
1462
+ border-radius: 3px;
1463
+ }
1464
+
1465
+ .attr-form-group-sm select.attr-form-control {
1466
+ height: 30px;
1467
+ line-height: 30px;
1468
+ }
1469
+
1470
+ .attr-form-group-sm textarea.attr-form-control, .attr-form-group-sm select[multiple].attr-form-control {
1471
+ height: auto;
1472
+ }
1473
+
1474
+ .attr-form-group-sm .attr-form-control-static {
1475
+ height: 30px;
1476
+ min-height: 32px;
1477
+ padding: 6px 10px;
1478
+ font-size: 12px;
1479
+ line-height: 1.5;
1480
+ }
1481
+
1482
+ .attr-input-lg {
1483
+ height: 46px;
1484
+ padding: 10px 16px;
1485
+ font-size: 18px;
1486
+ line-height: 1.3333333;
1487
+ border-radius: 6px;
1488
+ }
1489
+
1490
+ select.attr-input-lg {
1491
+ height: 46px;
1492
+ line-height: 46px;
1493
+ }
1494
+
1495
+ textarea.attr-input-lg, select[multiple].attr-input-lg {
1496
+ height: auto;
1497
+ }
1498
+
1499
+ .attr-form-group-lg .attr-form-control {
1500
+ height: 46px;
1501
+ padding: 10px 16px;
1502
+ font-size: 18px;
1503
+ line-height: 1.3333333;
1504
+ border-radius: 6px;
1505
+ }
1506
+
1507
+ .attr-form-group-lg select.attr-form-control {
1508
+ height: 46px;
1509
+ line-height: 46px;
1510
+ }
1511
+
1512
+ .attr-form-group-lg textarea.attr-form-control, .attr-form-group-lg select[multiple].attr-form-control {
1513
+ height: auto;
1514
+ }
1515
+
1516
+ .attr-form-group-lg .attr-form-control-static {
1517
+ height: 46px;
1518
+ min-height: 38px;
1519
+ padding: 11px 16px;
1520
+ font-size: 18px;
1521
+ line-height: 1.3333333;
1522
+ }
1523
+
1524
+ .attr-has-feedback {
1525
+ position: relative;
1526
+ }
1527
+
1528
+ .attr-has-feedback .attr-form-control {
1529
+ padding-right: 42.5px;
1530
+ }
1531
+
1532
+ .attr-form-control-feedback {
1533
+ position: absolute;
1534
+ top: 0;
1535
+ right: 0;
1536
+ z-index: 2;
1537
+ display: block;
1538
+ width: 34px;
1539
+ height: 34px;
1540
+ line-height: 34px;
1541
+ text-align: center;
1542
+ pointer-events: none;
1543
+ }
1544
+
1545
+ .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 {
1546
+ width: 46px;
1547
+ height: 46px;
1548
+ line-height: 46px;
1549
+ }
1550
+
1551
+ .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 {
1552
+ width: 30px;
1553
+ height: 30px;
1554
+ line-height: 30px;
1555
+ }
1556
+
1557
+ .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 {
1558
+ color: #3c763d;
1559
+ }
1560
+
1561
+ .attr-has-success .attr-form-control {
1562
+ border-color: #3c763d;
1563
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1564
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1565
+ }
1566
+
1567
+ .attr-has-success .attr-form-control:focus {
1568
+ border-color: #2b542c;
1569
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1570
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
1571
+ }
1572
+
1573
+ .attr-has-success .attr-input-group-addon {
1574
+ color: #3c763d;
1575
+ background-color: #dff0d8;
1576
+ border-color: #3c763d;
1577
+ }
1578
+
1579
+ .attr-has-success .attr-form-control-feedback {
1580
+ color: #3c763d;
1581
+ }
1582
+
1583
+ .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 {
1584
+ color: #8a6d3b;
1585
+ }
1586
+
1587
+ .attr-has-warning .attr-form-control {
1588
+ border-color: #8a6d3b;
1589
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1590
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1591
+ }
1592
+
1593
+ .attr-has-warning .attr-form-control:focus {
1594
+ border-color: #66512c;
1595
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1596
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
1597
+ }
1598
+
1599
+ .attr-has-warning .attr-input-group-addon {
1600
+ color: #8a6d3b;
1601
+ background-color: #fcf8e3;
1602
+ border-color: #8a6d3b;
1603
+ }
1604
+
1605
+ .attr-has-warning .attr-form-control-feedback {
1606
+ color: #8a6d3b;
1607
+ }
1608
+
1609
+ .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 {
1610
+ color: #a94442;
1611
+ }
1612
+
1613
+ .attr-has-error .attr-form-control {
1614
+ border-color: #a94442;
1615
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1616
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
1617
+ }
1618
+
1619
+ .attr-has-error .attr-form-control:focus {
1620
+ border-color: #843534;
1621
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1622
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
1623
+ }
1624
+
1625
+ .attr-has-error .attr-input-group-addon {
1626
+ color: #a94442;
1627
+ background-color: #f2dede;
1628
+ border-color: #a94442;
1629
+ }
1630
+
1631
+ .attr-has-error .attr-form-control-feedback {
1632
+ color: #a94442;
1633
+ }
1634
+
1635
+ .attr-has-feedback label ~ .attr-form-control-feedback {
1636
+ top: 25px;
1637
+ }
1638
+
1639
+ .attr-has-feedback label.attr-sr-only ~ .attr-form-control-feedback {
1640
+ top: 0;
1641
+ }
1642
+
1643
+ .attr-help-block {
1644
+ display: block;
1645
+ margin-top: 5px;
1646
+ margin-bottom: 10px;
1647
+ color: #737373;
1648
+ }
1649
+
1650
+ @media (min-width: 768px) {
1651
+ .attr-form-inline .attr-form-group {
1652
+ display: inline-block;
1653
+ margin-bottom: 0;
1654
+ vertical-align: middle;
1655
+ }
1656
+
1657
+ .attr-form-inline .attr-form-control {
1658
+ display: inline-block;
1659
+ width: auto;
1660
+ vertical-align: middle;
1661
+ }
1662
+
1663
+ .attr-form-inline .attr-form-control-static {
1664
+ display: inline-block;
1665
+ }
1666
+
1667
+ .attr-form-inline .attr-input-group {
1668
+ display: inline-table;
1669
+ vertical-align: middle;
1670
+ }
1671
+
1672
+ .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 {
1673
+ width: auto;
1674
+ }
1675
+
1676
+ .attr-form-inline .attr-input-group > .attr-form-control {
1677
+ width: 100%;
1678
+ }
1679
+
1680
+ .attr-form-inline .attr-control-label {
1681
+ margin-bottom: 0;
1682
+ vertical-align: middle;
1683
+ }
1684
+
1685
+ .attr-form-inline .attr-radio, .attr-form-inline .attr-checkbox {
1686
+ display: inline-block;
1687
+ margin-top: 0;
1688
+ margin-bottom: 0;
1689
+ vertical-align: middle;
1690
+ }
1691
+
1692
+ .attr-form-inline .attr-radio label, .attr-form-inline .attr-checkbox label {
1693
+ padding-left: 0;
1694
+ }
1695
+
1696
+ .attr-form-inline .attr-radio input[type=radio], .attr-form-inline .attr-checkbox input[type=checkbox] {
1697
+ position: relative;
1698
+ margin-left: 0;
1699
+ }
1700
+
1701
+ .attr-form-inline .attr-has-feedback .attr-form-control-feedback {
1702
+ top: 0;
1703
+ }
1704
+ }
1705
+ .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox, .attr-form-horizontal .attr-radio-inline, .attr-form-horizontal .attr-checkbox-inline {
1706
+ padding-top: 7px;
1707
+ margin-top: 0;
1708
+ margin-bottom: 0;
1709
+ }
1710
+
1711
+ .attr-form-horizontal .attr-radio, .attr-form-horizontal .attr-checkbox {
1712
+ min-height: 27px;
1713
+ }
1714
+
1715
+ .attr-form-horizontal .attr-form-group {
1716
+ margin-right: -15px;
1717
+ margin-left: -15px;
1718
+ }
1719
+
1720
+ @media (min-width: 768px) {
1721
+ .attr-form-horizontal .attr-control-label {
1722
+ padding-top: 7px;
1723
+ margin-bottom: 0;
1724
+ text-align: right;
1725
+ }
1726
+ }
1727
+ .attr-form-horizontal .attr-has-feedback .attr-form-control-feedback {
1728
+ right: 15px;
1729
+ }
1730
+
1731
+ @media (min-width: 768px) {
1732
+ .attr-form-horizontal .attr-form-group-lg .attr-control-label {
1733
+ padding-top: 11px;
1734
+ font-size: 18px;
1735
+ }
1736
+ }
1737
+ @media (min-width: 768px) {
1738
+ .attr-form-horizontal .attr-form-group-sm .attr-control-label {
1739
+ padding-top: 6px;
1740
+ font-size: 12px;
1741
+ }
1742
+ }
1743
+ .attr-btn {
1744
+ display: inline-block;
1745
+ padding: 6px 12px;
1746
+ margin-bottom: 0;
1747
+ font-size: 14px;
1748
+ font-weight: normal;
1749
+ line-height: 1.42857143;
1750
+ text-align: center;
1751
+ white-space: nowrap;
1752
+ vertical-align: middle;
1753
+ -ms-touch-action: manipulation;
1754
+ touch-action: manipulation;
1755
+ cursor: pointer;
1756
+ -webkit-user-select: none;
1757
+ -moz-user-select: none;
1758
+ -ms-user-select: none;
1759
+ user-select: none;
1760
+ background-image: none;
1761
+ border: 1px solid transparent;
1762
+ border-radius: 4px;
1763
+ }
1764
+
1765
+ .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 {
1766
+ outline: 5px auto -webkit-focus-ring-color;
1767
+ outline-offset: -2px;
1768
+ }
1769
+
1770
+ .attr-btn:hover, .attr-btn:focus, .attr-btn.attr-focus {
1771
+ color: #333;
1772
+ text-decoration: none;
1773
+ }
1774
+
1775
+ .attr-btn:active, .attr-btn.attr-active {
1776
+ background-image: none;
1777
+ outline: 0;
1778
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1779
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
1780
+ }
1781
+
1782
+ .attr-btn.attr-disabled, .attr-btn[disabled], fieldset[disabled] .attr-btn {
1783
+ cursor: not-allowed;
1784
+ filter: alpha(opacity=65);
1785
+ -webkit-box-shadow: none;
1786
+ box-shadow: none;
1787
+ opacity: 0.65;
1788
+ }
1789
+
1790
+ a.attr-btn.attr-disabled, fieldset[disabled] a.attr-btn {
1791
+ pointer-events: none;
1792
+ }
1793
+
1794
+ .attr-btn-default {
1795
+ color: #333;
1796
+ background-color: #fff;
1797
+ border-color: #ccc;
1798
+ }
1799
+
1800
+ .attr-btn-default:focus, .attr-btn-default.attr-focus {
1801
+ color: #333;
1802
+ background-color: #e6e6e6;
1803
+ border-color: #8c8c8c;
1804
+ }
1805
+
1806
+ .attr-btn-default:hover {
1807
+ color: #333;
1808
+ background-color: #e6e6e6;
1809
+ border-color: #adadad;
1810
+ }
1811
+
1812
+ .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1813
+ color: #333;
1814
+ background-color: #e6e6e6;
1815
+ border-color: #adadad;
1816
+ }
1817
+
1818
+ .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 {
1819
+ color: #333;
1820
+ background-color: #d4d4d4;
1821
+ border-color: #8c8c8c;
1822
+ }
1823
+
1824
+ .attr-btn-default:active, .attr-btn-default.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-default {
1825
+ background-image: none;
1826
+ }
1827
+
1828
+ .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 {
1829
+ background-color: #fff;
1830
+ border-color: #ccc;
1831
+ }
1832
+
1833
+ .attr-btn-default .attr-badge {
1834
+ color: #fff;
1835
+ background-color: #333;
1836
+ }
1837
+
1838
+ .attr-btn-primary {
1839
+ color: #fff;
1840
+ background-color: #337ab7;
1841
+ border-color: #2e6da4;
1842
+ }
1843
+
1844
+ .attr-btn-primary:focus, .attr-btn-primary.attr-focus {
1845
+ color: #fff;
1846
+ background-color: #286090;
1847
+ border-color: #122b40;
1848
+ }
1849
+
1850
+ .attr-btn-primary:hover {
1851
+ color: #fff;
1852
+ background-color: #286090;
1853
+ border-color: #204d74;
1854
+ }
1855
+
1856
+ .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1857
+ color: #fff;
1858
+ background-color: #286090;
1859
+ border-color: #204d74;
1860
+ }
1861
+
1862
+ .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 {
1863
+ color: #fff;
1864
+ background-color: #204d74;
1865
+ border-color: #122b40;
1866
+ }
1867
+
1868
+ .attr-btn-primary:active, .attr-btn-primary.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-primary {
1869
+ background-image: none;
1870
+ }
1871
+
1872
+ .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 {
1873
+ background-color: #337ab7;
1874
+ border-color: #2e6da4;
1875
+ }
1876
+
1877
+ .attr-btn-primary .attr-badge {
1878
+ color: #337ab7;
1879
+ background-color: #fff;
1880
+ }
1881
+
1882
+ .attr-btn-success {
1883
+ color: #fff;
1884
+ background-color: #5cb85c;
1885
+ border-color: #4cae4c;
1886
+ }
1887
+
1888
+ .attr-btn-success:focus, .attr-btn-success.attr-focus {
1889
+ color: #fff;
1890
+ background-color: #449d44;
1891
+ border-color: #255625;
1892
+ }
1893
+
1894
+ .attr-btn-success:hover {
1895
+ color: #fff;
1896
+ background-color: #449d44;
1897
+ border-color: #398439;
1898
+ }
1899
+
1900
+ .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1901
+ color: #fff;
1902
+ background-color: #449d44;
1903
+ border-color: #398439;
1904
+ }
1905
+
1906
+ .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 {
1907
+ color: #fff;
1908
+ background-color: #398439;
1909
+ border-color: #255625;
1910
+ }
1911
+
1912
+ .attr-btn-success:active, .attr-btn-success.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-success {
1913
+ background-image: none;
1914
+ }
1915
+
1916
+ .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 {
1917
+ background-color: #5cb85c;
1918
+ border-color: #4cae4c;
1919
+ }
1920
+
1921
+ .attr-btn-success .attr-badge {
1922
+ color: #5cb85c;
1923
+ background-color: #fff;
1924
+ }
1925
+
1926
+ .attr-btn-info {
1927
+ color: #fff;
1928
+ background-color: #5bc0de;
1929
+ border-color: #46b8da;
1930
+ }
1931
+
1932
+ .attr-btn-info:focus, .attr-btn-info.attr-focus {
1933
+ color: #fff;
1934
+ background-color: #31b0d5;
1935
+ border-color: #1b6d85;
1936
+ }
1937
+
1938
+ .attr-btn-info:hover {
1939
+ color: #fff;
1940
+ background-color: #31b0d5;
1941
+ border-color: #269abc;
1942
+ }
1943
+
1944
+ .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1945
+ color: #fff;
1946
+ background-color: #31b0d5;
1947
+ border-color: #269abc;
1948
+ }
1949
+
1950
+ .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 {
1951
+ color: #fff;
1952
+ background-color: #269abc;
1953
+ border-color: #1b6d85;
1954
+ }
1955
+
1956
+ .attr-btn-info:active, .attr-btn-info.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-info {
1957
+ background-image: none;
1958
+ }
1959
+
1960
+ .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 {
1961
+ background-color: #5bc0de;
1962
+ border-color: #46b8da;
1963
+ }
1964
+
1965
+ .attr-btn-info .attr-badge {
1966
+ color: #5bc0de;
1967
+ background-color: #fff;
1968
+ }
1969
+
1970
+ .attr-btn-warning {
1971
+ color: #fff;
1972
+ background-color: #f0ad4e;
1973
+ border-color: #eea236;
1974
+ }
1975
+
1976
+ .attr-btn-warning:focus, .attr-btn-warning.attr-focus {
1977
+ color: #fff;
1978
+ background-color: #ec971f;
1979
+ border-color: #985f0d;
1980
+ }
1981
+
1982
+ .attr-btn-warning:hover {
1983
+ color: #fff;
1984
+ background-color: #ec971f;
1985
+ border-color: #d58512;
1986
+ }
1987
+
1988
+ .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
1989
+ color: #fff;
1990
+ background-color: #ec971f;
1991
+ border-color: #d58512;
1992
+ }
1993
+
1994
+ .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 {
1995
+ color: #fff;
1996
+ background-color: #d58512;
1997
+ border-color: #985f0d;
1998
+ }
1999
+
2000
+ .attr-btn-warning:active, .attr-btn-warning.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-warning {
2001
+ background-image: none;
2002
+ }
2003
+
2004
+ .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 {
2005
+ background-color: #f0ad4e;
2006
+ border-color: #eea236;
2007
+ }
2008
+
2009
+ .attr-btn-warning .attr-badge {
2010
+ color: #f0ad4e;
2011
+ background-color: #fff;
2012
+ }
2013
+
2014
+ .attr-btn-danger {
2015
+ color: #fff;
2016
+ background-color: #d9534f;
2017
+ border-color: #d43f3a;
2018
+ }
2019
+
2020
+ .attr-btn-danger:focus, .attr-btn-danger.attr-focus {
2021
+ color: #fff;
2022
+ background-color: #c9302c;
2023
+ border-color: #761c19;
2024
+ }
2025
+
2026
+ .attr-btn-danger:hover {
2027
+ color: #fff;
2028
+ background-color: #c9302c;
2029
+ border-color: #ac2925;
2030
+ }
2031
+
2032
+ .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
2033
+ color: #fff;
2034
+ background-color: #c9302c;
2035
+ border-color: #ac2925;
2036
+ }
2037
+
2038
+ .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 {
2039
+ color: #fff;
2040
+ background-color: #ac2925;
2041
+ border-color: #761c19;
2042
+ }
2043
+
2044
+ .attr-btn-danger:active, .attr-btn-danger.attr-active, .attr-open > .attr-dropdown-toggle.attr-btn-danger {
2045
+ background-image: none;
2046
+ }
2047
+
2048
+ .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 {
2049
+ background-color: #d9534f;
2050
+ border-color: #d43f3a;
2051
+ }
2052
+
2053
+ .attr-btn-danger .attr-badge {
2054
+ color: #d9534f;
2055
+ background-color: #fff;
2056
+ }
2057
+
2058
+ .attr-btn-link {
2059
+ font-weight: normal;
2060
+ color: #337ab7;
2061
+ border-radius: 0;
2062
+ }
2063
+
2064
+ .attr-btn-link, .attr-btn-link:active, .attr-btn-link.attr-active, .attr-btn-link[disabled], fieldset[disabled] .attr-btn-link {
2065
+ background-color: transparent;
2066
+ -webkit-box-shadow: none;
2067
+ box-shadow: none;
2068
+ }
2069
+
2070
+ .attr-btn-link, .attr-btn-link:hover, .attr-btn-link:focus, .attr-btn-link:active {
2071
+ border-color: transparent;
2072
+ }
2073
+
2074
+ .attr-btn-link:hover, .attr-btn-link:focus {
2075
+ color: #23527c;
2076
+ text-decoration: underline;
2077
+ background-color: transparent;
2078
+ }
2079
+
2080
+ .attr-btn-link[disabled]:hover, fieldset[disabled] .attr-btn-link:hover, .attr-btn-link[disabled]:focus, fieldset[disabled] .attr-btn-link:focus {
2081
+ color: #777;
2082
+ text-decoration: none;
2083
+ }
2084
+
2085
+ .attr-btn-lg, .attr-btn-group-lg > .attr-btn {
2086
+ padding: 10px 16px;
2087
+ font-size: 18px;
2088
+ line-height: 1.3333333;
2089
+ border-radius: 6px;
2090
+ }
2091
+
2092
+ .attr-btn-sm, .attr-btn-group-sm > .attr-btn {
2093
+ padding: 5px 10px;
2094
+ font-size: 12px;
2095
+ line-height: 1.5;
2096
+ border-radius: 3px;
2097
+ }
2098
+
2099
+ .attr-btn-xs, .attr-btn-group-xs > .attr-btn {
2100
+ padding: 1px 5px;
2101
+ font-size: 12px;
2102
+ line-height: 1.5;
2103
+ border-radius: 3px;
2104
+ }
2105
+
2106
+ .attr-btn-block {
2107
+ display: block;
2108
+ width: 100%;
2109
+ }
2110
+
2111
+ .attr-btn-block + .attr-btn-block {
2112
+ margin-top: 5px;
2113
+ }
2114
+
2115
+ input[type=submit].attr-btn-block, input[type=reset].attr-btn-block, input[type=button].attr-btn-block {
2116
+ width: 100%;
2117
+ }
2118
+
2119
+ .attr-fade {
2120
+ opacity: 0;
2121
+ -webkit-transition: opacity 0.15s linear;
2122
+ -o-transition: opacity 0.15s linear;
2123
+ transition: opacity 0.15s linear;
2124
+ }
2125
+
2126
+ .attr-fade.attr-in {
2127
+ opacity: 1;
2128
+ }
2129
+
2130
+ .attr-collapse {
2131
+ display: none;
2132
+ }
2133
+
2134
+ .attr-collapse.attr-in {
2135
+ display: block;
2136
+ }
2137
+
2138
+ tr.attr-collapse.attr-in {
2139
+ display: table-row;
2140
+ }
2141
+
2142
+ tbody.attr-collapse.attr-in {
2143
+ display: table-row-group;
2144
+ }
2145
+
2146
+ .attr-collapsing {
2147
+ position: relative;
2148
+ height: 0;
2149
+ overflow: hidden;
2150
+ -webkit-transition-timing-function: ease;
2151
+ -o-transition-timing-function: ease;
2152
+ transition-timing-function: ease;
2153
+ -webkit-transition-duration: 0.35s;
2154
+ -o-transition-duration: 0.35s;
2155
+ transition-duration: 0.35s;
2156
+ -webkit-transition-property: height, visibility;
2157
+ -o-transition-property: height, visibility;
2158
+ transition-property: height, visibility;
2159
+ }
2160
+
2161
+ .attr-caret {
2162
+ display: inline-block;
2163
+ width: 0;
2164
+ height: 0;
2165
+ margin-left: 2px;
2166
+ vertical-align: middle;
2167
+ border-top: 4px dashed;
2168
+ border-top: 4px solid \9 ;
2169
+ border-right: 4px solid transparent;
2170
+ border-left: 4px solid transparent;
2171
+ }
2172
+
2173
+ .attr-dropup, .attr-dropdown {
2174
+ position: relative;
2175
+ }
2176
+
2177
+ .attr-dropdown-toggle:focus {
2178
+ outline: 0;
2179
+ }
2180
+
2181
+ .attr-dropdown-menu {
2182
+ position: absolute;
2183
+ top: 100%;
2184
+ left: 0;
2185
+ z-index: 1000;
2186
+ display: none;
2187
+ float: left;
2188
+ min-width: 160px;
2189
+ padding: 5px 0;
2190
+ margin: 2px 0 0;
2191
+ font-size: 14px;
2192
+ text-align: left;
2193
+ list-style: none;
2194
+ background-color: #fff;
2195
+ -webkit-background-clip: padding-box;
2196
+ background-clip: padding-box;
2197
+ border: 1px solid #ccc;
2198
+ border: 1px solid rgba(0, 0, 0, 0.15);
2199
+ border-radius: 4px;
2200
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2201
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
2202
+ }
2203
+
2204
+ .attr-dropdown-menu.attr-pull-right {
2205
+ right: 0;
2206
+ left: auto;
2207
+ }
2208
+
2209
+ .attr-dropdown-menu .attr-divider {
2210
+ height: 1px;
2211
+ margin: 9px 0;
2212
+ overflow: hidden;
2213
+ background-color: #e5e5e5;
2214
+ }
2215
+
2216
+ .attr-dropdown-menu > li > a {
2217
+ display: block;
2218
+ padding: 3px 20px;
2219
+ clear: both;
2220
+ font-weight: normal;
2221
+ line-height: 1.42857143;
2222
+ color: #333;
2223
+ white-space: nowrap;
2224
+ }
2225
+
2226
+ .attr-dropdown-menu > li > a:hover, .attr-dropdown-menu > li > a:focus {
2227
+ color: #262626;
2228
+ text-decoration: none;
2229
+ background-color: #f5f5f5;
2230
+ }
2231
+
2232
+ .attr-dropdown-menu > .attr-active > a, .attr-dropdown-menu > .attr-active > a:hover, .attr-dropdown-menu > .attr-active > a:focus {
2233
+ color: #fff;
2234
+ text-decoration: none;
2235
+ background-color: #337ab7;
2236
+ outline: 0;
2237
+ }
2238
+
2239
+ .attr-dropdown-menu > .attr-disabled > a, .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
2240
+ color: #777;
2241
+ }
2242
+
2243
+ .attr-dropdown-menu > .attr-disabled > a:hover, .attr-dropdown-menu > .attr-disabled > a:focus {
2244
+ text-decoration: none;
2245
+ cursor: not-allowed;
2246
+ background-color: transparent;
2247
+ background-image: none;
2248
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
2249
+ }
2250
+
2251
+ .attr-open > .attr-dropdown-menu {
2252
+ display: block;
2253
+ }
2254
+
2255
+ .attr-open > a {
2256
+ outline: 0;
2257
+ }
2258
+
2259
+ .attr-dropdown-menu-right {
2260
+ right: 0;
2261
+ left: auto;
2262
+ }
2263
+
2264
+ .attr-dropdown-menu-left {
2265
+ right: auto;
2266
+ left: 0;
2267
+ }
2268
+
2269
+ .attr-dropdown-header {
2270
+ display: block;
2271
+ padding: 3px 20px;
2272
+ font-size: 12px;
2273
+ line-height: 1.42857143;
2274
+ color: #777;
2275
+ white-space: nowrap;
2276
+ }
2277
+
2278
+ .attr-dropdown-backdrop {
2279
+ position: fixed;
2280
+ top: 0;
2281
+ right: 0;
2282
+ bottom: 0;
2283
+ left: 0;
2284
+ z-index: 990;
2285
+ }
2286
+
2287
+ .attr-pull-right > .attr-dropdown-menu {
2288
+ right: 0;
2289
+ left: auto;
2290
+ }
2291
+
2292
+ .attr-dropup .attr-caret, .attr-navbar-fixed-bottom .attr-dropdown .attr-caret {
2293
+ content: "";
2294
+ border-top: 0;
2295
+ border-bottom: 4px dashed;
2296
+ border-bottom: 4px solid \9 ;
2297
+ }
2298
+
2299
+ .attr-dropup .attr-dropdown-menu, .attr-navbar-fixed-bottom .attr-dropdown .attr-dropdown-menu {
2300
+ top: auto;
2301
+ bottom: 100%;
2302
+ margin-bottom: 2px;
2303
+ }
2304
+
2305
+ @media (min-width: 768px) {
2306
+ .attr-navbar-right .attr-dropdown-menu {
2307
+ right: 0;
2308
+ left: auto;
2309
+ }
2310
+
2311
+ .attr-navbar-right .attr-dropdown-menu-left {
2312
+ right: auto;
2313
+ left: 0;
2314
+ }
2315
+ }
2316
+ .attr-btn-group, .attr-btn-group-vertical {
2317
+ position: relative;
2318
+ display: inline-block;
2319
+ vertical-align: middle;
2320
+ }
2321
+
2322
+ .attr-btn-group > .attr-btn, .attr-btn-group-vertical > .attr-btn {
2323
+ position: relative;
2324
+ float: left;
2325
+ }
2326
+
2327
+ .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 {
2328
+ z-index: 2;
2329
+ }
2330
+
2331
+ .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 {
2332
+ margin-left: -1px;
2333
+ }
2334
+
2335
+ .attr-btn-toolbar {
2336
+ margin-left: -5px;
2337
+ }
2338
+
2339
+ .attr-btn-toolbar .attr-btn, .attr-btn-toolbar .attr-btn-group, .attr-btn-toolbar .attr-input-group {
2340
+ float: left;
2341
+ }
2342
+
2343
+ .attr-btn-toolbar > .attr-btn, .attr-btn-toolbar > .attr-btn-group, .attr-btn-toolbar > .attr-input-group {
2344
+ margin-left: 5px;
2345
+ }
2346
+
2347
+ .attr-btn-group > .attr-btn:not(:first-child):not(:last-child):not(.attr-dropdown-toggle) {
2348
+ border-radius: 0;
2349
+ }
2350
+
2351
+ .attr-btn-group > .attr-btn:first-child {
2352
+ margin-left: 0;
2353
+ }
2354
+
2355
+ .attr-btn-group > .attr-btn:first-child:not(:last-child):not(.attr-dropdown-toggle) {
2356
+ border-top-right-radius: 0;
2357
+ border-bottom-right-radius: 0;
2358
+ }
2359
+
2360
+ .attr-btn-group > .attr-btn:last-child:not(:first-child), .attr-btn-group > .attr-dropdown-toggle:not(:first-child) {
2361
+ border-top-left-radius: 0;
2362
+ border-bottom-left-radius: 0;
2363
+ }
2364
+
2365
+ .attr-btn-group > .attr-btn-group {
2366
+ float: left;
2367
+ }
2368
+
2369
+ .attr-btn-group > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
2370
+ border-radius: 0;
2371
+ }
2372
+
2373
+ .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 {
2374
+ border-top-right-radius: 0;
2375
+ border-bottom-right-radius: 0;
2376
+ }
2377
+
2378
+ .attr-btn-group > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
2379
+ border-top-left-radius: 0;
2380
+ border-bottom-left-radius: 0;
2381
+ }
2382
+
2383
+ .attr-btn-group .attr-dropdown-toggle:active, .attr-btn-group.attr-open .attr-dropdown-toggle {
2384
+ outline: 0;
2385
+ }
2386
+
2387
+ .attr-btn-group > .attr-btn + .attr-dropdown-toggle {
2388
+ padding-right: 8px;
2389
+ padding-left: 8px;
2390
+ }
2391
+
2392
+ .attr-btn-group > .attr-btn-lg + .attr-dropdown-toggle {
2393
+ padding-right: 12px;
2394
+ padding-left: 12px;
2395
+ }
2396
+
2397
+ .attr-btn-group.attr-open .attr-dropdown-toggle {
2398
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2399
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
2400
+ }
2401
+
2402
+ .attr-btn-group.attr-open .attr-dropdown-toggle.attr-btn-link {
2403
+ -webkit-box-shadow: none;
2404
+ box-shadow: none;
2405
+ }
2406
+
2407
+ .attr-btn .attr-caret {
2408
+ margin-left: 0;
2409
+ }
2410
+
2411
+ .attr-btn-lg .attr-caret {
2412
+ border-width: 5px 5px 0;
2413
+ border-bottom-width: 0;
2414
+ }
2415
+
2416
+ .attr-dropup .attr-btn-lg .attr-caret {
2417
+ border-width: 0 5px 5px;
2418
+ }
2419
+
2420
+ .attr-btn-group-vertical > .attr-btn, .attr-btn-group-vertical > .attr-btn-group, .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
2421
+ display: block;
2422
+ float: none;
2423
+ width: 100%;
2424
+ max-width: 100%;
2425
+ }
2426
+
2427
+ .attr-btn-group-vertical > .attr-btn-group > .attr-btn {
2428
+ float: none;
2429
+ }
2430
+
2431
+ .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 {
2432
+ margin-top: -1px;
2433
+ margin-left: 0;
2434
+ }
2435
+
2436
+ .attr-btn-group-vertical > .attr-btn:not(:first-child):not(:last-child) {
2437
+ border-radius: 0;
2438
+ }
2439
+
2440
+ .attr-btn-group-vertical > .attr-btn:first-child:not(:last-child) {
2441
+ border-top-left-radius: 4px;
2442
+ border-top-right-radius: 4px;
2443
+ border-bottom-right-radius: 0;
2444
+ border-bottom-left-radius: 0;
2445
+ }
2446
+
2447
+ .attr-btn-group-vertical > .attr-btn:last-child:not(:first-child) {
2448
+ border-top-left-radius: 0;
2449
+ border-top-right-radius: 0;
2450
+ border-bottom-right-radius: 4px;
2451
+ border-bottom-left-radius: 4px;
2452
+ }
2453
+
2454
+ .attr-btn-group-vertical > .attr-btn-group:not(:first-child):not(:last-child) > .attr-btn {
2455
+ border-radius: 0;
2456
+ }
2457
+
2458
+ .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 {
2459
+ border-bottom-right-radius: 0;
2460
+ border-bottom-left-radius: 0;
2461
+ }
2462
+
2463
+ .attr-btn-group-vertical > .attr-btn-group:last-child:not(:first-child) > .attr-btn:first-child {
2464
+ border-top-left-radius: 0;
2465
+ border-top-right-radius: 0;
2466
+ }
2467
+
2468
+ .attr-btn-group-justified {
2469
+ display: table;
2470
+ width: 100%;
2471
+ table-layout: fixed;
2472
+ border-collapse: separate;
2473
+ }
2474
+
2475
+ .attr-btn-group-justified > .attr-btn, .attr-btn-group-justified > .attr-btn-group {
2476
+ display: table-cell;
2477
+ float: none;
2478
+ width: 1%;
2479
+ }
2480
+
2481
+ .attr-btn-group-justified > .attr-btn-group .attr-btn {
2482
+ width: 100%;
2483
+ }
2484
+
2485
+ .attr-btn-group-justified > .attr-btn-group .attr-dropdown-menu {
2486
+ left: auto;
2487
+ }
2488
+
2489
+ [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] {
2490
+ position: absolute;
2491
+ clip: rect(0, 0, 0, 0);
2492
+ pointer-events: none;
2493
+ }
2494
+
2495
+ .attr-input-group {
2496
+ position: relative;
2497
+ display: table;
2498
+ border-collapse: separate;
2499
+ }
2500
+
2501
+ .attr-input-group[class*=attr-col-] {
2502
+ float: none;
2503
+ padding-right: 0;
2504
+ padding-left: 0;
2505
+ }
2506
+
2507
+ .attr-input-group .attr-form-control {
2508
+ position: relative;
2509
+ z-index: 2;
2510
+ float: left;
2511
+ width: 100%;
2512
+ margin-bottom: 0;
2513
+ }
2514
+
2515
+ .attr-input-group .attr-form-control:focus {
2516
+ z-index: 3;
2517
+ }
2518
+
2519
+ .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 {
2520
+ height: 46px;
2521
+ padding: 10px 16px;
2522
+ font-size: 18px;
2523
+ line-height: 1.3333333;
2524
+ border-radius: 6px;
2525
+ }
2526
+
2527
+ 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 {
2528
+ height: 46px;
2529
+ line-height: 46px;
2530
+ }
2531
+
2532
+ 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 {
2533
+ height: auto;
2534
+ }
2535
+
2536
+ .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 {
2537
+ height: 30px;
2538
+ padding: 5px 10px;
2539
+ font-size: 12px;
2540
+ line-height: 1.5;
2541
+ border-radius: 3px;
2542
+ }
2543
+
2544
+ 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 {
2545
+ height: 30px;
2546
+ line-height: 30px;
2547
+ }
2548
+
2549
+ 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 {
2550
+ height: auto;
2551
+ }
2552
+
2553
+ .attr-input-group-addon, .attr-input-group-btn, .attr-input-group .attr-form-control {
2554
+ display: table-cell;
2555
+ }
2556
+
2557
+ .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) {
2558
+ border-radius: 0;
2559
+ }
2560
+
2561
+ .attr-input-group-addon, .attr-input-group-btn {
2562
+ width: 1%;
2563
+ white-space: nowrap;
2564
+ vertical-align: middle;
2565
+ }
2566
+
2567
+ .attr-input-group-addon {
2568
+ padding: 6px 12px;
2569
+ font-size: 14px;
2570
+ font-weight: normal;
2571
+ line-height: 1;
2572
+ color: #555;
2573
+ text-align: center;
2574
+ background-color: #eee;
2575
+ border: 1px solid #ccc;
2576
+ border-radius: 4px;
2577
+ }
2578
+
2579
+ .attr-input-group-addon.attr-input-sm {
2580
+ padding: 5px 10px;
2581
+ font-size: 12px;
2582
+ border-radius: 3px;
2583
+ }
2584
+
2585
+ .attr-input-group-addon.attr-input-lg {
2586
+ padding: 10px 16px;
2587
+ font-size: 18px;
2588
+ border-radius: 6px;
2589
+ }
2590
+
2591
+ .attr-input-group-addon input[type=radio], .attr-input-group-addon input[type=checkbox] {
2592
+ margin-top: 0;
2593
+ }
2594
+
2595
+ .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 {
2596
+ border-top-right-radius: 0;
2597
+ border-bottom-right-radius: 0;
2598
+ }
2599
+
2600
+ .attr-input-group-addon:first-child {
2601
+ border-right: 0;
2602
+ }
2603
+
2604
+ .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 {
2605
+ border-top-left-radius: 0;
2606
+ border-bottom-left-radius: 0;
2607
+ }
2608
+
2609
+ .attr-input-group-addon:last-child {
2610
+ border-left: 0;
2611
+ }
2612
+
2613
+ .attr-input-group-btn {
2614
+ position: relative;
2615
+ font-size: 0;
2616
+ white-space: nowrap;
2617
+ }
2618
+
2619
+ .attr-input-group-btn > .attr-btn {
2620
+ position: relative;
2621
+ }
2622
+
2623
+ .attr-input-group-btn > .attr-btn + .attr-btn {
2624
+ margin-left: -1px;
2625
+ }
2626
+
2627
+ .attr-input-group-btn > .attr-btn:hover, .attr-input-group-btn > .attr-btn:focus, .attr-input-group-btn > .attr-btn:active {
2628
+ z-index: 2;
2629
+ }
2630
+
2631
+ .attr-input-group-btn:first-child > .attr-btn, .attr-input-group-btn:first-child > .attr-btn-group {
2632
+ margin-right: -1px;
2633
+ }
2634
+
2635
+ .attr-input-group-btn:last-child > .attr-btn, .attr-input-group-btn:last-child > .attr-btn-group {
2636
+ z-index: 2;
2637
+ margin-left: -1px;
2638
+ }
2639
+
2640
+ .attr-nav {
2641
+ padding-left: 0;
2642
+ margin-bottom: 0;
2643
+ list-style: none;
2644
+ }
2645
+
2646
+ .attr-nav > li {
2647
+ position: relative;
2648
+ display: block;
2649
+ }
2650
+
2651
+ .attr-nav > li > a {
2652
+ position: relative;
2653
+ display: block;
2654
+ padding: 10px 15px;
2655
+ }
2656
+
2657
+ .attr-nav > li > a:hover, .attr-nav > li > a:focus {
2658
+ text-decoration: none;
2659
+ background-color: #eee;
2660
+ }
2661
+
2662
+ .attr-nav > li.attr-disabled > a {
2663
+ color: #777;
2664
+ }
2665
+
2666
+ .attr-nav > li.attr-disabled > a:hover, .attr-nav > li.attr-disabled > a:focus {
2667
+ color: #777;
2668
+ text-decoration: none;
2669
+ cursor: not-allowed;
2670
+ background-color: transparent;
2671
+ }
2672
+
2673
+ .attr-nav .attr-open > a, .attr-nav .attr-open > a:hover, .attr-nav .attr-open > a:focus {
2674
+ background-color: #eee;
2675
+ border-color: #337ab7;
2676
+ }
2677
+
2678
+ .attr-nav .attr-nav-divider {
2679
+ height: 1px;
2680
+ margin: 9px 0;
2681
+ overflow: hidden;
2682
+ background-color: #e5e5e5;
2683
+ }
2684
+
2685
+ .attr-nav > li > a > img {
2686
+ max-width: none;
2687
+ }
2688
+
2689
+ .attr-nav-tabs {
2690
+ border-bottom: 1px solid #ddd;
2691
+ }
2692
+
2693
+ .attr-nav-tabs > li {
2694
+ float: left;
2695
+ margin-bottom: -1px;
2696
+ }
2697
+
2698
+ .attr-nav-tabs > li > a {
2699
+ margin-right: 2px;
2700
+ line-height: 1.42857143;
2701
+ border: 1px solid transparent;
2702
+ border-radius: 4px 4px 0 0;
2703
+ }
2704
+
2705
+ .attr-nav-tabs > li > a:hover {
2706
+ border-color: #eee #eee #ddd;
2707
+ }
2708
+
2709
+ .attr-nav-tabs.attr-nav-justified {
2710
+ width: 100%;
2711
+ border-bottom: 0;
2712
+ }
2713
+
2714
+ .attr-nav-tabs.attr-nav-justified > li {
2715
+ float: none;
2716
+ }
2717
+
2718
+ .attr-nav-tabs.attr-nav-justified > li > a {
2719
+ margin-bottom: 5px;
2720
+ text-align: center;
2721
+ }
2722
+
2723
+ .attr-nav-tabs.attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2724
+ top: auto;
2725
+ left: auto;
2726
+ }
2727
+
2728
+ @media (min-width: 768px) {
2729
+ .attr-nav-tabs.attr-nav-justified > li {
2730
+ display: table-cell;
2731
+ width: 1%;
2732
+ }
2733
+
2734
+ .attr-nav-tabs.attr-nav-justified > li > a {
2735
+ margin-bottom: 0;
2736
+ }
2737
+ }
2738
+ .attr-nav-tabs.attr-nav-justified > li > a {
2739
+ margin-right: 0;
2740
+ border-radius: 4px;
2741
+ }
2742
+
2743
+ .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 {
2744
+ border: 1px solid #ddd;
2745
+ }
2746
+
2747
+ @media (min-width: 768px) {
2748
+ .attr-nav-tabs.attr-nav-justified > li > a {
2749
+ border-bottom: 1px solid #ddd;
2750
+ border-radius: 4px 4px 0 0;
2751
+ }
2752
+
2753
+ .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 {
2754
+ border-bottom-color: #fff;
2755
+ }
2756
+ }
2757
+ .attr-nav-pills > li {
2758
+ float: left;
2759
+ }
2760
+
2761
+ .attr-nav-pills > li > a {
2762
+ border-radius: 4px;
2763
+ }
2764
+
2765
+ .attr-nav-pills > li + li {
2766
+ margin-left: 2px;
2767
+ }
2768
+
2769
+ .attr-nav-pills > li.attr-active > a, .attr-nav-pills > li.attr-active > a:hover, .attr-nav-pills > li.attr-active > a:focus {
2770
+ color: #fff;
2771
+ background-color: #337ab7;
2772
+ }
2773
+
2774
+ .attr-nav-stacked > li {
2775
+ float: none;
2776
+ }
2777
+
2778
+ .attr-nav-stacked > li + li {
2779
+ margin-top: 2px;
2780
+ margin-left: 0;
2781
+ }
2782
+
2783
+ .attr-nav-justified {
2784
+ width: 100%;
2785
+ }
2786
+
2787
+ .attr-nav-justified > li {
2788
+ float: none;
2789
+ }
2790
+
2791
+ .attr-nav-justified > li > a {
2792
+ margin-bottom: 5px;
2793
+ text-align: center;
2794
+ }
2795
+
2796
+ .attr-nav-justified > .attr-dropdown .attr-dropdown-menu {
2797
+ top: auto;
2798
+ left: auto;
2799
+ }
2800
+
2801
+ @media (min-width: 768px) {
2802
+ .attr-nav-justified > li {
2803
+ display: table-cell;
2804
+ width: 1%;
2805
+ }
2806
+
2807
+ .attr-nav-justified > li > a {
2808
+ margin-bottom: 0;
2809
+ }
2810
+ }
2811
+ .attr-nav-tabs-justified {
2812
+ border-bottom: 0;
2813
+ }
2814
+
2815
+ .attr-nav-tabs-justified > li > a {
2816
+ margin-right: 0;
2817
+ border-radius: 4px;
2818
+ }
2819
+
2820
+ .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2821
+ border: 1px solid #ddd;
2822
+ }
2823
+
2824
+ @media (min-width: 768px) {
2825
+ .attr-nav-tabs-justified > li > a {
2826
+ border-bottom: 1px solid #ddd;
2827
+ border-radius: 4px 4px 0 0;
2828
+ }
2829
+
2830
+ .attr-nav-tabs-justified > .attr-active > a, .attr-nav-tabs-justified > .attr-active > a:hover, .attr-nav-tabs-justified > .attr-active > a:focus {
2831
+ border-bottom-color: #fff;
2832
+ }
2833
+ }
2834
+ .attr-tab-content > .attr-tab-pane {
2835
+ display: none;
2836
+ }
2837
+
2838
+ .attr-tab-content > .attr-active {
2839
+ display: block;
2840
+ }
2841
+
2842
+ .attr-nav-tabs .attr-dropdown-menu {
2843
+ margin-top: -1px;
2844
+ border-top-left-radius: 0;
2845
+ border-top-right-radius: 0;
2846
+ }
2847
+
2848
+ .attr-navbar {
2849
+ position: relative;
2850
+ min-height: 50px;
2851
+ margin-bottom: 20px;
2852
+ border: 1px solid transparent;
2853
+ }
2854
+
2855
+ @media (min-width: 768px) {
2856
+ .attr-navbar {
2857
+ border-radius: 4px;
2858
+ }
2859
+ }
2860
+ @media (min-width: 768px) {
2861
+ .attr-navbar-header {
2862
+ float: left;
2863
+ }
2864
+ }
2865
+ .attr-navbar-collapse {
2866
+ padding-right: 15px;
2867
+ padding-left: 15px;
2868
+ overflow-x: visible;
2869
+ -webkit-overflow-scrolling: touch;
2870
+ border-top: 1px solid transparent;
2871
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
2872
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
2873
+ }
2874
+
2875
+ .attr-navbar-collapse.attr-in {
2876
+ overflow-y: auto;
2877
+ }
2878
+
2879
+ @media (min-width: 768px) {
2880
+ .attr-navbar-collapse {
2881
+ width: auto;
2882
+ border-top: 0;
2883
+ -webkit-box-shadow: none;
2884
+ box-shadow: none;
2885
+ }
2886
+
2887
+ .attr-navbar-collapse.attr-collapse {
2888
+ display: block !important;
2889
+ height: auto !important;
2890
+ padding-bottom: 0;
2891
+ overflow: visible !important;
2892
+ }
2893
+
2894
+ .attr-navbar-collapse.attr-in {
2895
+ overflow-y: visible;
2896
+ }
2897
+
2898
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-static-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2899
+ padding-right: 0;
2900
+ padding-left: 0;
2901
+ }
2902
+ }
2903
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2904
+ max-height: 340px;
2905
+ }
2906
+
2907
+ @media (max-device-width: 480px) and (orientation: landscape) {
2908
+ .attr-navbar-fixed-top .attr-navbar-collapse, .attr-navbar-fixed-bottom .attr-navbar-collapse {
2909
+ max-height: 200px;
2910
+ }
2911
+ }
2912
+ .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2913
+ margin-right: -15px;
2914
+ margin-left: -15px;
2915
+ }
2916
+
2917
+ @media (min-width: 768px) {
2918
+ .attr-container > .attr-navbar-header, .attr-container-fluid > .attr-navbar-header, .attr-container > .attr-navbar-collapse, .attr-container-fluid > .attr-navbar-collapse {
2919
+ margin-right: 0;
2920
+ margin-left: 0;
2921
+ }
2922
+ }
2923
+ .attr-navbar-static-top {
2924
+ z-index: 1000;
2925
+ border-width: 0 0 1px;
2926
+ }
2927
+
2928
+ @media (min-width: 768px) {
2929
+ .attr-navbar-static-top {
2930
+ border-radius: 0;
2931
+ }
2932
+ }
2933
+ .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2934
+ position: fixed;
2935
+ right: 0;
2936
+ left: 0;
2937
+ z-index: 1030;
2938
+ }
2939
+
2940
+ @media (min-width: 768px) {
2941
+ .attr-navbar-fixed-top, .attr-navbar-fixed-bottom {
2942
+ border-radius: 0;
2943
+ }
2944
+ }
2945
+ .attr-navbar-fixed-top {
2946
+ top: 0;
2947
+ border-width: 0 0 1px;
2948
+ }
2949
+
2950
+ .attr-navbar-fixed-bottom {
2951
+ bottom: 0;
2952
+ margin-bottom: 0;
2953
+ border-width: 1px 0 0;
2954
+ }
2955
+
2956
+ .attr-navbar-brand {
2957
+ float: left;
2958
+ height: 50px;
2959
+ padding: 15px 15px;
2960
+ font-size: 18px;
2961
+ line-height: 20px;
2962
+ }
2963
+
2964
+ .attr-navbar-brand:hover, .attr-navbar-brand:focus {
2965
+ text-decoration: none;
2966
+ }
2967
+
2968
+ .attr-navbar-brand > img {
2969
+ display: block;
2970
+ }
2971
+
2972
+ @media (min-width: 768px) {
2973
+ .attr-navbar > .attr-container .attr-navbar-brand, .attr-navbar > .attr-container-fluid .attr-navbar-brand {
2974
+ margin-left: -15px;
2975
+ }
2976
+ }
2977
+ .attr-navbar-toggle {
2978
+ position: relative;
2979
+ float: right;
2980
+ padding: 9px 10px;
2981
+ margin-top: 8px;
2982
+ margin-right: 15px;
2983
+ margin-bottom: 8px;
2984
+ background-color: transparent;
2985
+ background-image: none;
2986
+ border: 1px solid transparent;
2987
+ border-radius: 4px;
2988
+ }
2989
+
2990
+ .attr-navbar-toggle:focus {
2991
+ outline: 0;
2992
+ }
2993
+
2994
+ .attr-navbar-toggle .attr-icon-bar {
2995
+ display: block;
2996
+ width: 22px;
2997
+ height: 2px;
2998
+ border-radius: 1px;
2999
+ }
3000
+
3001
+ .attr-navbar-toggle .attr-icon-bar + .attr-icon-bar {
3002
+ margin-top: 4px;
3003
+ }
3004
+
3005
+ @media (min-width: 768px) {
3006
+ .attr-navbar-toggle {
3007
+ display: none;
3008
+ }
3009
+ }
3010
+ .attr-navbar-nav {
3011
+ margin: 7.5px -15px;
3012
+ }
3013
+
3014
+ .attr-navbar-nav > li > a {
3015
+ padding-top: 10px;
3016
+ padding-bottom: 10px;
3017
+ line-height: 20px;
3018
+ }
3019
+
3020
+ @media (max-width: 767px) {
3021
+ .attr-navbar-nav .attr-open .attr-dropdown-menu {
3022
+ position: static;
3023
+ float: none;
3024
+ width: auto;
3025
+ margin-top: 0;
3026
+ background-color: transparent;
3027
+ border: 0;
3028
+ -webkit-box-shadow: none;
3029
+ box-shadow: none;
3030
+ }
3031
+
3032
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a, .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-dropdown-header {
3033
+ padding: 5px 15px 5px 25px;
3034
+ }
3035
+
3036
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
3037
+ line-height: 20px;
3038
+ }
3039
+
3040
+ .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:hover, .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a:focus {
3041
+ background-image: none;
3042
+ }
3043
+ }
3044
+ @media (min-width: 768px) {
3045
+ .attr-navbar-nav {
3046
+ float: left;
3047
+ margin: 0;
3048
+ }
3049
+
3050
+ .attr-navbar-nav > li {
3051
+ float: left;
3052
+ }
3053
+
3054
+ .attr-navbar-nav > li > a {
3055
+ padding-top: 15px;
3056
+ padding-bottom: 15px;
3057
+ }
3058
+ }
3059
+ .attr-navbar-form {
3060
+ padding: 10px 15px;
3061
+ margin-top: 8px;
3062
+ margin-right: -15px;
3063
+ margin-bottom: 8px;
3064
+ margin-left: -15px;
3065
+ border-top: 1px solid transparent;
3066
+ border-bottom: 1px solid transparent;
3067
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3068
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 1px 0 rgba(255, 255, 255, 0.1);
3069
+ }
3070
+
3071
+ @media (min-width: 768px) {
3072
+ .attr-navbar-form .attr-form-group {
3073
+ display: inline-block;
3074
+ margin-bottom: 0;
3075
+ vertical-align: middle;
3076
+ }
3077
+
3078
+ .attr-navbar-form .attr-form-control {
3079
+ display: inline-block;
3080
+ width: auto;
3081
+ vertical-align: middle;
3082
+ }
3083
+
3084
+ .attr-navbar-form .attr-form-control-static {
3085
+ display: inline-block;
3086
+ }
3087
+
3088
+ .attr-navbar-form .attr-input-group {
3089
+ display: inline-table;
3090
+ vertical-align: middle;
3091
+ }
3092
+
3093
+ .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 {
3094
+ width: auto;
3095
+ }
3096
+
3097
+ .attr-navbar-form .attr-input-group > .attr-form-control {
3098
+ width: 100%;
3099
+ }
3100
+
3101
+ .attr-navbar-form .attr-control-label {
3102
+ margin-bottom: 0;
3103
+ vertical-align: middle;
3104
+ }
3105
+
3106
+ .attr-navbar-form .attr-radio, .attr-navbar-form .attr-checkbox {
3107
+ display: inline-block;
3108
+ margin-top: 0;
3109
+ margin-bottom: 0;
3110
+ vertical-align: middle;
3111
+ }
3112
+
3113
+ .attr-navbar-form .attr-radio label, .attr-navbar-form .attr-checkbox label {
3114
+ padding-left: 0;
3115
+ }
3116
+
3117
+ .attr-navbar-form .attr-radio input[type=radio], .attr-navbar-form .attr-checkbox input[type=checkbox] {
3118
+ position: relative;
3119
+ margin-left: 0;
3120
+ }
3121
+
3122
+ .attr-navbar-form .attr-has-feedback .attr-form-control-feedback {
3123
+ top: 0;
3124
+ }
3125
+ }
3126
+ @media (max-width: 767px) {
3127
+ .attr-navbar-form .attr-form-group {
3128
+ margin-bottom: 5px;
3129
+ }
3130
+
3131
+ .attr-navbar-form .attr-form-group:last-child {
3132
+ margin-bottom: 0;
3133
+ }
3134
+ }
3135
+ @media (min-width: 768px) {
3136
+ .attr-navbar-form {
3137
+ width: auto;
3138
+ padding-top: 0;
3139
+ padding-bottom: 0;
3140
+ margin-right: 0;
3141
+ margin-left: 0;
3142
+ border: 0;
3143
+ -webkit-box-shadow: none;
3144
+ box-shadow: none;
3145
+ }
3146
+ }
3147
+ .attr-navbar-nav > li > .attr-dropdown-menu {
3148
+ margin-top: 0;
3149
+ border-top-left-radius: 0;
3150
+ border-top-right-radius: 0;
3151
+ }
3152
+
3153
+ .attr-navbar-fixed-bottom .attr-navbar-nav > li > .attr-dropdown-menu {
3154
+ margin-bottom: 0;
3155
+ border-top-left-radius: 4px;
3156
+ border-top-right-radius: 4px;
3157
+ border-bottom-right-radius: 0;
3158
+ border-bottom-left-radius: 0;
3159
+ }
3160
+
3161
+ .attr-navbar-btn {
3162
+ margin-top: 8px;
3163
+ margin-bottom: 8px;
3164
+ }
3165
+
3166
+ .attr-navbar-btn.attr-btn-sm {
3167
+ margin-top: 10px;
3168
+ margin-bottom: 10px;
3169
+ }
3170
+
3171
+ .attr-navbar-btn.attr-btn-xs {
3172
+ margin-top: 14px;
3173
+ margin-bottom: 14px;
3174
+ }
3175
+
3176
+ .attr-navbar-text {
3177
+ margin-top: 15px;
3178
+ margin-bottom: 15px;
3179
+ }
3180
+
3181
+ @media (min-width: 768px) {
3182
+ .attr-navbar-text {
3183
+ float: left;
3184
+ margin-right: 15px;
3185
+ margin-left: 15px;
3186
+ }
3187
+ }
3188
+ @media (min-width: 768px) {
3189
+ .attr-navbar-left {
3190
+ float: left !important;
3191
+ }
3192
+
3193
+ .attr-navbar-right {
3194
+ float: right !important;
3195
+ margin-right: -15px;
3196
+ }
3197
+
3198
+ .attr-navbar-right ~ .attr-navbar-right {
3199
+ margin-right: 0;
3200
+ }
3201
+ }
3202
+ .attr-navbar-default {
3203
+ background-color: #f8f8f8;
3204
+ border-color: #e7e7e7;
3205
+ }
3206
+
3207
+ .attr-navbar-default .attr-navbar-brand {
3208
+ color: #777;
3209
+ }
3210
+
3211
+ .attr-navbar-default .attr-navbar-brand:hover, .attr-navbar-default .attr-navbar-brand:focus {
3212
+ color: #5e5e5e;
3213
+ background-color: transparent;
3214
+ }
3215
+
3216
+ .attr-navbar-default .attr-navbar-text {
3217
+ color: #777;
3218
+ }
3219
+
3220
+ .attr-navbar-default .attr-navbar-nav > li > a {
3221
+ color: #777;
3222
+ }
3223
+
3224
+ .attr-navbar-default .attr-navbar-nav > li > a:hover, .attr-navbar-default .attr-navbar-nav > li > a:focus {
3225
+ color: #333;
3226
+ background-color: transparent;
3227
+ }
3228
+
3229
+ .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 {
3230
+ color: #555;
3231
+ background-color: #e7e7e7;
3232
+ }
3233
+
3234
+ .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 {
3235
+ color: #ccc;
3236
+ background-color: transparent;
3237
+ }
3238
+
3239
+ .attr-navbar-default .attr-navbar-toggle {
3240
+ border-color: #ddd;
3241
+ }
3242
+
3243
+ .attr-navbar-default .attr-navbar-toggle:hover, .attr-navbar-default .attr-navbar-toggle:focus {
3244
+ background-color: #ddd;
3245
+ }
3246
+
3247
+ .attr-navbar-default .attr-navbar-toggle .attr-icon-bar {
3248
+ background-color: #888;
3249
+ }
3250
+
3251
+ .attr-navbar-default .attr-navbar-collapse, .attr-navbar-default .attr-navbar-form {
3252
+ border-color: #e7e7e7;
3253
+ }
3254
+
3255
+ .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 {
3256
+ color: #555;
3257
+ background-color: #e7e7e7;
3258
+ }
3259
+
3260
+ @media (max-width: 767px) {
3261
+ .attr-navbar-default .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
3262
+ color: #777;
3263
+ }
3264
+
3265
+ .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 {
3266
+ color: #333;
3267
+ background-color: transparent;
3268
+ }
3269
+
3270
+ .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 {
3271
+ color: #555;
3272
+ background-color: #e7e7e7;
3273
+ }
3274
+
3275
+ .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 {
3276
+ color: #ccc;
3277
+ background-color: transparent;
3278
+ }
3279
+ }
3280
+ .attr-navbar-default .attr-navbar-link {
3281
+ color: #777;
3282
+ }
3283
+
3284
+ .attr-navbar-default .attr-navbar-link:hover {
3285
+ color: #333;
3286
+ }
3287
+
3288
+ .attr-navbar-default .attr-btn-link {
3289
+ color: #777;
3290
+ }
3291
+
3292
+ .attr-navbar-default .attr-btn-link:hover, .attr-navbar-default .attr-btn-link:focus {
3293
+ color: #333;
3294
+ }
3295
+
3296
+ .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 {
3297
+ color: #ccc;
3298
+ }
3299
+
3300
+ .attr-navbar-inverse {
3301
+ background-color: #222;
3302
+ border-color: #080808;
3303
+ }
3304
+
3305
+ .attr-navbar-inverse .attr-navbar-brand {
3306
+ color: #9d9d9d;
3307
+ }
3308
+
3309
+ .attr-navbar-inverse .attr-navbar-brand:hover, .attr-navbar-inverse .attr-navbar-brand:focus {
3310
+ color: #fff;
3311
+ background-color: transparent;
3312
+ }
3313
+
3314
+ .attr-navbar-inverse .attr-navbar-text {
3315
+ color: #9d9d9d;
3316
+ }
3317
+
3318
+ .attr-navbar-inverse .attr-navbar-nav > li > a {
3319
+ color: #9d9d9d;
3320
+ }
3321
+
3322
+ .attr-navbar-inverse .attr-navbar-nav > li > a:hover, .attr-navbar-inverse .attr-navbar-nav > li > a:focus {
3323
+ color: #fff;
3324
+ background-color: transparent;
3325
+ }
3326
+
3327
+ .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 {
3328
+ color: #fff;
3329
+ background-color: #080808;
3330
+ }
3331
+
3332
+ .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 {
3333
+ color: #444;
3334
+ background-color: transparent;
3335
+ }
3336
+
3337
+ .attr-navbar-inverse .attr-navbar-toggle {
3338
+ border-color: #333;
3339
+ }
3340
+
3341
+ .attr-navbar-inverse .attr-navbar-toggle:hover, .attr-navbar-inverse .attr-navbar-toggle:focus {
3342
+ background-color: #333;
3343
+ }
3344
+
3345
+ .attr-navbar-inverse .attr-navbar-toggle .attr-icon-bar {
3346
+ background-color: #fff;
3347
+ }
3348
+
3349
+ .attr-navbar-inverse .attr-navbar-collapse, .attr-navbar-inverse .attr-navbar-form {
3350
+ border-color: #101010;
3351
+ }
3352
+
3353
+ .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 {
3354
+ color: #fff;
3355
+ background-color: #080808;
3356
+ }
3357
+
3358
+ @media (max-width: 767px) {
3359
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > .attr-dropdown-header {
3360
+ border-color: #080808;
3361
+ }
3362
+
3363
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu .attr-divider {
3364
+ background-color: #080808;
3365
+ }
3366
+
3367
+ .attr-navbar-inverse .attr-navbar-nav .attr-open .attr-dropdown-menu > li > a {
3368
+ color: #9d9d9d;
3369
+ }
3370
+
3371
+ .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 {
3372
+ color: #fff;
3373
+ background-color: transparent;
3374
+ }
3375
+
3376
+ .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 {
3377
+ color: #fff;
3378
+ background-color: #080808;
3379
+ }
3380
+
3381
+ .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 {
3382
+ color: #444;
3383
+ background-color: transparent;
3384
+ }
3385
+ }
3386
+ .attr-navbar-inverse .attr-navbar-link {
3387
+ color: #9d9d9d;
3388
+ }
3389
+
3390
+ .attr-navbar-inverse .attr-navbar-link:hover {
3391
+ color: #fff;
3392
+ }
3393
+
3394
+ .attr-navbar-inverse .attr-btn-link {
3395
+ color: #9d9d9d;
3396
+ }
3397
+
3398
+ .attr-navbar-inverse .attr-btn-link:hover, .attr-navbar-inverse .attr-btn-link:focus {
3399
+ color: #fff;
3400
+ }
3401
+
3402
+ .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 {
3403
+ color: #444;
3404
+ }
3405
+
3406
+ .attr-breadcrumb {
3407
+ padding: 8px 15px;
3408
+ margin-bottom: 20px;
3409
+ list-style: none;
3410
+ background-color: #f5f5f5;
3411
+ border-radius: 4px;
3412
+ }
3413
+
3414
+ .attr-breadcrumb > li {
3415
+ display: inline-block;
3416
+ }
3417
+
3418
+ .attr-breadcrumb > li + li:before {
3419
+ padding: 0 5px;
3420
+ color: #ccc;
3421
+ content: "/ ";
3422
+ }
3423
+
3424
+ .attr-breadcrumb > .attr-active {
3425
+ color: #777;
3426
+ }
3427
+
3428
+ .attr-pagination {
3429
+ display: inline-block;
3430
+ padding-left: 0;
3431
+ margin: 20px 0;
3432
+ border-radius: 4px;
3433
+ }
3434
+
3435
+ .attr-pagination > li {
3436
+ display: inline;
3437
+ }
3438
+
3439
+ .attr-pagination > li > a, .attr-pagination > li > span {
3440
+ position: relative;
3441
+ float: left;
3442
+ padding: 6px 12px;
3443
+ margin-left: -1px;
3444
+ line-height: 1.42857143;
3445
+ color: #337ab7;
3446
+ text-decoration: none;
3447
+ background-color: #fff;
3448
+ border: 1px solid #ddd;
3449
+ }
3450
+
3451
+ .attr-pagination > li:first-child > a, .attr-pagination > li:first-child > span {
3452
+ margin-left: 0;
3453
+ border-top-left-radius: 4px;
3454
+ border-bottom-left-radius: 4px;
3455
+ }
3456
+
3457
+ .attr-pagination > li:last-child > a, .attr-pagination > li:last-child > span {
3458
+ border-top-right-radius: 4px;
3459
+ border-bottom-right-radius: 4px;
3460
+ }
3461
+
3462
+ .attr-pagination > li > a:hover, .attr-pagination > li > span:hover, .attr-pagination > li > a:focus, .attr-pagination > li > span:focus {
3463
+ z-index: 2;
3464
+ color: #23527c;
3465
+ background-color: #eee;
3466
+ border-color: #ddd;
3467
+ }
3468
+
3469
+ .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 {
3470
+ z-index: 3;
3471
+ color: #fff;
3472
+ cursor: default;
3473
+ background-color: #337ab7;
3474
+ border-color: #337ab7;
3475
+ }
3476
+
3477
+ .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 {
3478
+ color: #777;
3479
+ cursor: not-allowed;
3480
+ background-color: #fff;
3481
+ border-color: #ddd;
3482
+ }
3483
+
3484
+ .attr-pagination-lg > li > a, .attr-pagination-lg > li > span {
3485
+ padding: 10px 16px;
3486
+ font-size: 18px;
3487
+ line-height: 1.3333333;
3488
+ }
3489
+
3490
+ .attr-pagination-lg > li:first-child > a, .attr-pagination-lg > li:first-child > span {
3491
+ border-top-left-radius: 6px;
3492
+ border-bottom-left-radius: 6px;
3493
+ }
3494
+
3495
+ .attr-pagination-lg > li:last-child > a, .attr-pagination-lg > li:last-child > span {
3496
+ border-top-right-radius: 6px;
3497
+ border-bottom-right-radius: 6px;
3498
+ }
3499
+
3500
+ .attr-pagination-sm > li > a, .attr-pagination-sm > li > span {
3501
+ padding: 5px 10px;
3502
+ font-size: 12px;
3503
+ line-height: 1.5;
3504
+ }
3505
+
3506
+ .attr-pagination-sm > li:first-child > a, .attr-pagination-sm > li:first-child > span {
3507
+ border-top-left-radius: 3px;
3508
+ border-bottom-left-radius: 3px;
3509
+ }
3510
+
3511
+ .attr-pagination-sm > li:last-child > a, .attr-pagination-sm > li:last-child > span {
3512
+ border-top-right-radius: 3px;
3513
+ border-bottom-right-radius: 3px;
3514
+ }
3515
+
3516
+ .attr-pager {
3517
+ padding-left: 0;
3518
+ margin: 20px 0;
3519
+ text-align: center;
3520
+ list-style: none;
3521
+ }
3522
+
3523
+ .attr-pager li {
3524
+ display: inline;
3525
+ }
3526
+
3527
+ .attr-pager li > a, .attr-pager li > span {
3528
+ display: inline-block;
3529
+ padding: 5px 14px;
3530
+ background-color: #fff;
3531
+ border: 1px solid #ddd;
3532
+ border-radius: 15px;
3533
+ }
3534
+
3535
+ .attr-pager li > a:hover, .attr-pager li > a:focus {
3536
+ text-decoration: none;
3537
+ background-color: #eee;
3538
+ }
3539
+
3540
+ .attr-pager .attr-next > a, .attr-pager .attr-next > span {
3541
+ float: right;
3542
+ }
3543
+
3544
+ .attr-pager .attr-previous > a, .attr-pager .attr-previous > span {
3545
+ float: left;
3546
+ }
3547
+
3548
+ .attr-pager .attr-disabled > a, .attr-pager .attr-disabled > a:hover, .attr-pager .attr-disabled > a:focus, .attr-pager .attr-disabled > span {
3549
+ color: #777;
3550
+ cursor: not-allowed;
3551
+ background-color: #fff;
3552
+ }
3553
+
3554
+ .attr-label {
3555
+ display: inline;
3556
+ padding: 0.2em 0.6em 0.3em;
3557
+ font-size: 75%;
3558
+ font-weight: bold;
3559
+ line-height: 1;
3560
+ color: #fff;
3561
+ text-align: center;
3562
+ white-space: nowrap;
3563
+ vertical-align: baseline;
3564
+ border-radius: 0.25em;
3565
+ }
3566
+
3567
+ a.attr-label:hover, a.attr-label:focus {
3568
+ color: #fff;
3569
+ text-decoration: none;
3570
+ cursor: pointer;
3571
+ }
3572
+
3573
+ .attr-label:empty {
3574
+ display: none;
3575
+ }
3576
+
3577
+ .attr-btn .attr-label {
3578
+ position: relative;
3579
+ top: -1px;
3580
+ }
3581
+
3582
+ .attr-label-default {
3583
+ background-color: #777;
3584
+ }
3585
+
3586
+ .attr-label-default[href]:hover, .attr-label-default[href]:focus {
3587
+ background-color: #5e5e5e;
3588
+ }
3589
+
3590
+ .attr-label-primary {
3591
+ background-color: #337ab7;
3592
+ }
3593
+
3594
+ .attr-label-primary[href]:hover, .attr-label-primary[href]:focus {
3595
+ background-color: #286090;
3596
+ }
3597
+
3598
+ .attr-label-success {
3599
+ background-color: #5cb85c;
3600
+ }
3601
+
3602
+ .attr-label-success[href]:hover, .attr-label-success[href]:focus {
3603
+ background-color: #449d44;
3604
+ }
3605
+
3606
+ .attr-label-info {
3607
+ background-color: #5bc0de;
3608
+ }
3609
+
3610
+ .attr-label-info[href]:hover, .attr-label-info[href]:focus {
3611
+ background-color: #31b0d5;
3612
+ }
3613
+
3614
+ .attr-label-warning {
3615
+ background-color: #f0ad4e;
3616
+ }
3617
+
3618
+ .attr-label-warning[href]:hover, .attr-label-warning[href]:focus {
3619
+ background-color: #ec971f;
3620
+ }
3621
+
3622
+ .attr-label-danger {
3623
+ background-color: #d9534f;
3624
+ }
3625
+
3626
+ .attr-label-danger[href]:hover, .attr-label-danger[href]:focus {
3627
+ background-color: #c9302c;
3628
+ }
3629
+
3630
+ .attr-badge {
3631
+ display: inline-block;
3632
+ min-width: 10px;
3633
+ padding: 3px 7px;
3634
+ font-size: 12px;
3635
+ font-weight: bold;
3636
+ line-height: 1;
3637
+ color: #fff;
3638
+ text-align: center;
3639
+ white-space: nowrap;
3640
+ vertical-align: middle;
3641
+ background-color: #777;
3642
+ border-radius: 10px;
3643
+ }
3644
+
3645
+ .attr-badge:empty {
3646
+ display: none;
3647
+ }
3648
+
3649
+ .attr-btn .attr-badge {
3650
+ position: relative;
3651
+ top: -1px;
3652
+ }
3653
+
3654
+ .attr-btn-xs .attr-badge, .attr-btn-group-xs > .attr-btn .attr-badge {
3655
+ top: 0;
3656
+ padding: 1px 5px;
3657
+ }
3658
+
3659
+ a.attr-badge:hover, a.attr-badge:focus {
3660
+ color: #fff;
3661
+ text-decoration: none;
3662
+ cursor: pointer;
3663
+ }
3664
+
3665
+ .attr-list-group-item.attr-active > .attr-badge, .attr-nav-pills > .attr-active > a > .attr-badge {
3666
+ color: #337ab7;
3667
+ background-color: #fff;
3668
+ }
3669
+
3670
+ .attr-list-group-item > .attr-badge {
3671
+ float: right;
3672
+ }
3673
+
3674
+ .attr-list-group-item > .attr-badge + .attr-badge {
3675
+ margin-right: 5px;
3676
+ }
3677
+
3678
+ .attr-nav-pills > li > a > .attr-badge {
3679
+ margin-left: 3px;
3680
+ }
3681
+
3682
+ .attr-jumbotron {
3683
+ padding-top: 30px;
3684
+ padding-bottom: 30px;
3685
+ margin-bottom: 30px;
3686
+ color: inherit;
3687
+ background-color: #eee;
3688
+ }
3689
+
3690
+ .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
3691
+ color: inherit;
3692
+ }
3693
+
3694
+ .attr-jumbotron p {
3695
+ margin-bottom: 15px;
3696
+ font-size: 21px;
3697
+ font-weight: 200;
3698
+ }
3699
+
3700
+ .attr-jumbotron > hr {
3701
+ border-top-color: #d5d5d5;
3702
+ }
3703
+
3704
+ .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
3705
+ padding-right: 15px;
3706
+ padding-left: 15px;
3707
+ border-radius: 6px;
3708
+ }
3709
+
3710
+ .attr-jumbotron .attr-container {
3711
+ max-width: 100%;
3712
+ }
3713
+
3714
+ @media screen and (min-width: 768px) {
3715
+ .attr-jumbotron {
3716
+ padding-top: 48px;
3717
+ padding-bottom: 48px;
3718
+ }
3719
+
3720
+ .attr-container .attr-jumbotron, .attr-container-fluid .attr-jumbotron {
3721
+ padding-right: 60px;
3722
+ padding-left: 60px;
3723
+ }
3724
+
3725
+ .attr-jumbotron h1, .attr-jumbotron .attr-h1 {
3726
+ font-size: 63px;
3727
+ }
3728
+ }
3729
+ .attr-thumbnail {
3730
+ display: block;
3731
+ padding: 4px;
3732
+ margin-bottom: 20px;
3733
+ line-height: 1.42857143;
3734
+ background-color: #fff;
3735
+ border: 1px solid #ddd;
3736
+ border-radius: 4px;
3737
+ -webkit-transition: border 0.2s ease-in-out;
3738
+ -o-transition: border 0.2s ease-in-out;
3739
+ transition: border 0.2s ease-in-out;
3740
+ }
3741
+
3742
+ .attr-thumbnail > img, .attr-thumbnail a > img {
3743
+ margin-right: auto;
3744
+ margin-left: auto;
3745
+ }
3746
+
3747
+ a.attr-thumbnail:hover, a.attr-thumbnail:focus, a.attr-thumbnail.attr-active {
3748
+ border-color: #337ab7;
3749
+ }
3750
+
3751
+ .attr-thumbnail .attr-caption {
3752
+ padding: 9px;
3753
+ color: #333;
3754
+ }
3755
+
3756
+ .attr-alert {
3757
+ padding: 15px;
3758
+ margin-bottom: 20px;
3759
+ border: 1px solid transparent;
3760
+ border-radius: 4px;
3761
+ }
3762
+
3763
+ .attr-alert h4 {
3764
+ margin-top: 0;
3765
+ color: inherit;
3766
+ }
3767
+
3768
+ .attr-alert .attr-alert-link {
3769
+ font-weight: bold;
3770
+ }
3771
+
3772
+ .attr-alert > p, .attr-alert > ul {
3773
+ margin-bottom: 0;
3774
+ }
3775
+
3776
+ .attr-alert > p + p {
3777
+ margin-top: 5px;
3778
+ }
3779
+
3780
+ .attr-alert-dismissable, .attr-alert-dismissible {
3781
+ padding-right: 35px;
3782
+ }
3783
+
3784
+ .attr-alert-dismissable .attr-close, .attr-alert-dismissible .attr-close {
3785
+ position: relative;
3786
+ top: -2px;
3787
+ right: -21px;
3788
+ color: inherit;
3789
+ }
3790
+
3791
+ .attr-alert-success {
3792
+ color: #3c763d;
3793
+ background-color: #dff0d8;
3794
+ border-color: #d6e9c6;
3795
+ }
3796
+
3797
+ .attr-alert-success hr {
3798
+ border-top-color: #c9e2b3;
3799
+ }
3800
+
3801
+ .attr-alert-success .attr-alert-link {
3802
+ color: #2b542c;
3803
+ }
3804
+
3805
+ .attr-alert-info {
3806
+ color: #31708f;
3807
+ background-color: #d9edf7;
3808
+ border-color: #bce8f1;
3809
+ }
3810
+
3811
+ .attr-alert-info hr {
3812
+ border-top-color: #a6e1ec;
3813
+ }
3814
+
3815
+ .attr-alert-info .attr-alert-link {
3816
+ color: #245269;
3817
+ }
3818
+
3819
+ .attr-alert-warning {
3820
+ color: #8a6d3b;
3821
+ background-color: #fcf8e3;
3822
+ border-color: #faebcc;
3823
+ }
3824
+
3825
+ .attr-alert-warning hr {
3826
+ border-top-color: #f7e1b5;
3827
+ }
3828
+
3829
+ .attr-alert-warning .attr-alert-link {
3830
+ color: #66512c;
3831
+ }
3832
+
3833
+ .attr-alert-danger {
3834
+ color: #a94442;
3835
+ background-color: #f2dede;
3836
+ border-color: #ebccd1;
3837
+ }
3838
+
3839
+ .attr-alert-danger hr {
3840
+ border-top-color: #e4b9c0;
3841
+ }
3842
+
3843
+ .attr-alert-danger .attr-alert-link {
3844
+ color: #843534;
3845
+ }
3846
+
3847
+ @-webkit-keyframes progress-bar-stripes {
3848
+ from {
3849
+ background-position: 40px 0;
3850
+ }
3851
+ to {
3852
+ background-position: 0 0;
3853
+ }
3854
+ }
3855
+ @keyframes progress-bar-stripes {
3856
+ from {
3857
+ background-position: 40px 0;
3858
+ }
3859
+ to {
3860
+ background-position: 0 0;
3861
+ }
3862
+ }
3863
+ .attr-progress {
3864
+ height: 20px;
3865
+ margin-bottom: 20px;
3866
+ overflow: hidden;
3867
+ background-color: #f5f5f5;
3868
+ border-radius: 4px;
3869
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3870
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
3871
+ }
3872
+
3873
+ .attr-progress-bar {
3874
+ float: left;
3875
+ width: 0;
3876
+ height: 100%;
3877
+ font-size: 12px;
3878
+ line-height: 20px;
3879
+ color: #fff;
3880
+ text-align: center;
3881
+ background-color: #337ab7;
3882
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3883
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
3884
+ -webkit-transition: width 0.6s ease;
3885
+ -o-transition: width 0.6s ease;
3886
+ transition: width 0.6s ease;
3887
+ }
3888
+
3889
+ .attr-progress-striped .attr-progress-bar, .attr-progress-bar-striped {
3890
+ 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);
3891
+ 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);
3892
+ background-size: 40px 40px;
3893
+ }
3894
+
3895
+ .attr-progress.attr-active .attr-progress-bar, .attr-progress-bar.attr-active {
3896
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
3897
+ animation: progress-bar-stripes 2s linear infinite;
3898
+ }
3899
+
3900
+ .attr-progress-bar-success {
3901
+ background-color: #5cb85c;
3902
+ }
3903
+
3904
+ .attr-progress-striped .attr-progress-bar-success {
3905
+ 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);
3906
+ 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);
3907
+ }
3908
+
3909
+ .attr-progress-bar-info {
3910
+ background-color: #5bc0de;
3911
+ }
3912
+
3913
+ .attr-progress-striped .attr-progress-bar-info {
3914
+ 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);
3915
+ 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);
3916
+ }
3917
+
3918
+ .attr-progress-bar-warning {
3919
+ background-color: #f0ad4e;
3920
+ }
3921
+
3922
+ .attr-progress-striped .attr-progress-bar-warning {
3923
+ 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);
3924
+ 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);
3925
+ }
3926
+
3927
+ .attr-progress-bar-danger {
3928
+ background-color: #d9534f;
3929
+ }
3930
+
3931
+ .attr-progress-striped .attr-progress-bar-danger {
3932
+ 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);
3933
+ 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);
3934
+ }
3935
+
3936
+ .attr-media {
3937
+ margin-top: 15px;
3938
+ }
3939
+
3940
+ .attr-media:first-child {
3941
+ margin-top: 0;
3942
+ }
3943
+
3944
+ .attr-media, .attr-media-body {
3945
+ overflow: hidden;
3946
+ zoom: 1;
3947
+ }
3948
+
3949
+ .attr-media-body {
3950
+ width: 10000px;
3951
+ }
3952
+
3953
+ .attr-media-object {
3954
+ display: block;
3955
+ }
3956
+
3957
+ .attr-media-object.attr-img-thumbnail {
3958
+ max-width: none;
3959
+ }
3960
+
3961
+ .attr-media-right, .attr-media > .attr-pull-right {
3962
+ padding-left: 10px;
3963
+ }
3964
+
3965
+ .attr-media-left, .attr-media > .attr-pull-left {
3966
+ padding-right: 10px;
3967
+ }
3968
+
3969
+ .attr-media-left, .attr-media-right, .attr-media-body {
3970
+ display: table-cell;
3971
+ vertical-align: top;
3972
+ }
3973
+
3974
+ .attr-media-middle {
3975
+ vertical-align: middle;
3976
+ }
3977
+
3978
+ .attr-media-bottom {
3979
+ vertical-align: bottom;
3980
+ }
3981
+
3982
+ .attr-media-heading {
3983
+ margin-top: 0;
3984
+ margin-bottom: 5px;
3985
+ }
3986
+
3987
+ .attr-media-list {
3988
+ padding-left: 0;
3989
+ list-style: none;
3990
+ }
3991
+
3992
+ .attr-list-group {
3993
+ padding-left: 0;
3994
+ margin-bottom: 20px;
3995
+ }
3996
+
3997
+ .attr-list-group-item {
3998
+ position: relative;
3999
+ display: block;
4000
+ padding: 10px 15px;
4001
+ margin-bottom: -1px;
4002
+ background-color: #fff;
4003
+ border: 1px solid #ddd;
4004
+ }
4005
+
4006
+ .attr-list-group-item:first-child {
4007
+ border-top-left-radius: 4px;
4008
+ border-top-right-radius: 4px;
4009
+ }
4010
+
4011
+ .attr-list-group-item:last-child {
4012
+ margin-bottom: 0;
4013
+ border-bottom-right-radius: 4px;
4014
+ border-bottom-left-radius: 4px;
4015
+ }
4016
+
4017
+ a.attr-list-group-item, button.attr-list-group-item {
4018
+ color: #555;
4019
+ }
4020
+
4021
+ a.attr-list-group-item .attr-list-group-item-heading, button.attr-list-group-item .attr-list-group-item-heading {
4022
+ color: #333;
4023
+ }
4024
+
4025
+ a.attr-list-group-item:hover, button.attr-list-group-item:hover, a.attr-list-group-item:focus, button.attr-list-group-item:focus {
4026
+ color: #555;
4027
+ text-decoration: none;
4028
+ background-color: #f5f5f5;
4029
+ }
4030
+
4031
+ button.attr-list-group-item {
4032
+ width: 100%;
4033
+ text-align: left;
4034
+ }
4035
+
4036
+ .attr-list-group-item.attr-disabled, .attr-list-group-item.attr-disabled:hover, .attr-list-group-item.attr-disabled:focus {
4037
+ color: #777;
4038
+ cursor: not-allowed;
4039
+ background-color: #eee;
4040
+ }
4041
+
4042
+ .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 {
4043
+ color: inherit;
4044
+ }
4045
+
4046
+ .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 {
4047
+ color: #777;
4048
+ }
4049
+
4050
+ .attr-list-group-item.attr-active, .attr-list-group-item.attr-active:hover, .attr-list-group-item.attr-active:focus {
4051
+ z-index: 2;
4052
+ color: #fff;
4053
+ background-color: #337ab7;
4054
+ border-color: #337ab7;
4055
+ }
4056
+
4057
+ .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 {
4058
+ color: inherit;
4059
+ }
4060
+
4061
+ .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 {
4062
+ color: #c7ddef;
4063
+ }
4064
+
4065
+ .attr-list-group-item-success {
4066
+ color: #3c763d;
4067
+ background-color: #dff0d8;
4068
+ }
4069
+
4070
+ a.attr-list-group-item-success, button.attr-list-group-item-success {
4071
+ color: #3c763d;
4072
+ }
4073
+
4074
+ a.attr-list-group-item-success .attr-list-group-item-heading, button.attr-list-group-item-success .attr-list-group-item-heading {
4075
+ color: inherit;
4076
+ }
4077
+
4078
+ 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 {
4079
+ color: #3c763d;
4080
+ background-color: #d0e9c6;
4081
+ }
4082
+
4083
+ 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 {
4084
+ color: #fff;
4085
+ background-color: #3c763d;
4086
+ border-color: #3c763d;
4087
+ }
4088
+
4089
+ .attr-list-group-item-info {
4090
+ color: #31708f;
4091
+ background-color: #d9edf7;
4092
+ }
4093
+
4094
+ a.attr-list-group-item-info, button.attr-list-group-item-info {
4095
+ color: #31708f;
4096
+ }
4097
+
4098
+ a.attr-list-group-item-info .attr-list-group-item-heading, button.attr-list-group-item-info .attr-list-group-item-heading {
4099
+ color: inherit;
4100
+ }
4101
+
4102
+ 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 {
4103
+ color: #31708f;
4104
+ background-color: #c4e3f3;
4105
+ }
4106
+
4107
+ 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 {
4108
+ color: #fff;
4109
+ background-color: #31708f;
4110
+ border-color: #31708f;
4111
+ }
4112
+
4113
+ .attr-list-group-item-warning {
4114
+ color: #8a6d3b;
4115
+ background-color: #fcf8e3;
4116
+ }
4117
+
4118
+ a.attr-list-group-item-warning, button.attr-list-group-item-warning {
4119
+ color: #8a6d3b;
4120
+ }
4121
+
4122
+ a.attr-list-group-item-warning .attr-list-group-item-heading, button.attr-list-group-item-warning .attr-list-group-item-heading {
4123
+ color: inherit;
4124
+ }
4125
+
4126
+ 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 {
4127
+ color: #8a6d3b;
4128
+ background-color: #faf2cc;
4129
+ }
4130
+
4131
+ 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 {
4132
+ color: #fff;
4133
+ background-color: #8a6d3b;
4134
+ border-color: #8a6d3b;
4135
+ }
4136
+
4137
+ .attr-list-group-item-danger {
4138
+ color: #a94442;
4139
+ background-color: #f2dede;
4140
+ }
4141
+
4142
+ a.attr-list-group-item-danger, button.attr-list-group-item-danger {
4143
+ color: #a94442;
4144
+ }
4145
+
4146
+ a.attr-list-group-item-danger .attr-list-group-item-heading, button.attr-list-group-item-danger .attr-list-group-item-heading {
4147
+ color: inherit;
4148
+ }
4149
+
4150
+ 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 {
4151
+ color: #a94442;
4152
+ background-color: #ebcccc;
4153
+ }
4154
+
4155
+ 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 {
4156
+ color: #fff;
4157
+ background-color: #a94442;
4158
+ border-color: #a94442;
4159
+ }
4160
+
4161
+ .attr-list-group-item-heading {
4162
+ margin-top: 0;
4163
+ margin-bottom: 5px;
4164
+ }
4165
+
4166
+ .attr-list-group-item-text {
4167
+ margin-bottom: 0;
4168
+ line-height: 1.3;
4169
+ }
4170
+
4171
+ .attr-panel {
4172
+ margin-bottom: 20px;
4173
+ background-color: #fff;
4174
+ border: 1px solid transparent;
4175
+ border-radius: 4px;
4176
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4177
+ box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
4178
+ }
4179
+
4180
+ .attr-panel-body {
4181
+ padding: 15px;
4182
+ }
4183
+
4184
+ .attr-panel-heading {
4185
+ padding: 10px 15px;
4186
+ border-bottom: 1px solid transparent;
4187
+ border-top-left-radius: 3px;
4188
+ border-top-right-radius: 3px;
4189
+ }
4190
+
4191
+ .attr-panel-heading > .attr-dropdown .attr-dropdown-toggle {
4192
+ color: inherit;
4193
+ }
4194
+
4195
+ .attr-panel-title {
4196
+ margin-top: 0;
4197
+ margin-bottom: 0;
4198
+ font-size: 16px;
4199
+ color: inherit;
4200
+ }
4201
+
4202
+ .attr-panel-title > a, .attr-panel-title > small, .attr-panel-title > .attr-small, .attr-panel-title > small > a, .attr-panel-title > .attr-small > a {
4203
+ color: inherit;
4204
+ }
4205
+
4206
+ .attr-panel-footer {
4207
+ padding: 10px 15px;
4208
+ background-color: #f5f5f5;
4209
+ border-top: 1px solid #ddd;
4210
+ border-bottom-right-radius: 3px;
4211
+ border-bottom-left-radius: 3px;
4212
+ }
4213
+
4214
+ .attr-panel > .attr-list-group, .attr-panel > .attr-panel-collapse > .attr-list-group {
4215
+ margin-bottom: 0;
4216
+ }
4217
+
4218
+ .attr-panel > .attr-list-group .attr-list-group-item, .attr-panel > .attr-panel-collapse > .attr-list-group .attr-list-group-item {
4219
+ border-width: 1px 0;
4220
+ border-radius: 0;
4221
+ }
4222
+
4223
+ .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 {
4224
+ border-top: 0;
4225
+ border-top-left-radius: 3px;
4226
+ border-top-right-radius: 3px;
4227
+ }
4228
+
4229
+ .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 {
4230
+ border-bottom: 0;
4231
+ border-bottom-right-radius: 3px;
4232
+ border-bottom-left-radius: 3px;
4233
+ }
4234
+
4235
+ .attr-panel > .attr-panel-heading + .attr-panel-collapse > .attr-list-group .attr-list-group-item:first-child {
4236
+ border-top-left-radius: 0;
4237
+ border-top-right-radius: 0;
4238
+ }
4239
+
4240
+ .attr-panel-heading + .attr-list-group .attr-list-group-item:first-child {
4241
+ border-top-width: 0;
4242
+ }
4243
+
4244
+ .attr-list-group + .attr-panel-footer {
4245
+ border-top-width: 0;
4246
+ }
4247
+
4248
+ .attr-panel > .attr-table, .attr-panel > .attr-table-responsive > .attr-table, .attr-panel > .attr-panel-collapse > .attr-table {
4249
+ margin-bottom: 0;
4250
+ }
4251
+
4252
+ .attr-panel > .attr-table caption, .attr-panel > .attr-table-responsive > .attr-table caption, .attr-panel > .attr-panel-collapse > .attr-table caption {
4253
+ padding-right: 15px;
4254
+ padding-left: 15px;
4255
+ }
4256
+
4257
+ .attr-panel > .attr-table:first-child, .attr-panel > .attr-table-responsive:first-child > .attr-table:first-child {
4258
+ border-top-left-radius: 3px;
4259
+ border-top-right-radius: 3px;
4260
+ }
4261
+
4262
+ .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 {
4263
+ border-top-left-radius: 3px;
4264
+ border-top-right-radius: 3px;
4265
+ }
4266
+
4267
+ .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 {
4268
+ border-top-left-radius: 3px;
4269
+ }
4270
+
4271
+ .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 {
4272
+ border-top-right-radius: 3px;
4273
+ }
4274
+
4275
+ .attr-panel > .attr-table:last-child, .attr-panel > .attr-table-responsive:last-child > .attr-table:last-child {
4276
+ border-bottom-right-radius: 3px;
4277
+ border-bottom-left-radius: 3px;
4278
+ }
4279
+
4280
+ .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 {
4281
+ border-bottom-right-radius: 3px;
4282
+ border-bottom-left-radius: 3px;
4283
+ }
4284
+
4285
+ .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 {
4286
+ border-bottom-left-radius: 3px;
4287
+ }
4288
+
4289
+ .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 {
4290
+ border-bottom-right-radius: 3px;
4291
+ }
4292
+
4293
+ .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 {
4294
+ border-top: 1px solid #ddd;
4295
+ }
4296
+
4297
+ .attr-panel > .attr-table > tbody:first-child > tr:first-child th, .attr-panel > .attr-table > tbody:first-child > tr:first-child td {
4298
+ border-top: 0;
4299
+ }
4300
+
4301
+ .attr-panel > .attr-table-bordered, .attr-panel > .attr-table-responsive > .attr-table-bordered {
4302
+ border: 0;
4303
+ }
4304
+
4305
+ .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 {
4306
+ border-left: 0;
4307
+ }
4308
+
4309
+ .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 {
4310
+ border-right: 0;
4311
+ }
4312
+
4313
+ .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 {
4314
+ border-bottom: 0;
4315
+ }
4316
+
4317
+ .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 {
4318
+ border-bottom: 0;
4319
+ }
4320
+
4321
+ .attr-panel > .attr-table-responsive {
4322
+ margin-bottom: 0;
4323
+ border: 0;
4324
+ }
4325
+
4326
+ .attr-panel-group {
4327
+ margin-bottom: 20px;
4328
+ }
4329
+
4330
+ .attr-panel-group .attr-panel {
4331
+ margin-bottom: 0;
4332
+ border-radius: 4px;
4333
+ }
4334
+
4335
+ .attr-panel-group .attr-panel + .attr-panel {
4336
+ margin-top: 5px;
4337
+ }
4338
+
4339
+ .attr-panel-group .attr-panel-heading {
4340
+ border-bottom: 0;
4341
+ }
4342
+
4343
+ .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-panel-body, .attr-panel-group .attr-panel-heading + .attr-panel-collapse > .attr-list-group {
4344
+ border-top: 1px solid #ddd;
4345
+ }
4346
+
4347
+ .attr-panel-group .attr-panel-footer {
4348
+ border-top: 0;
4349
+ }
4350
+
4351
+ .attr-panel-group .attr-panel-footer + .attr-panel-collapse .attr-panel-body {
4352
+ border-bottom: 1px solid #ddd;
4353
+ }
4354
+
4355
+ .attr-panel-default {
4356
+ border-color: #ddd;
4357
+ }
4358
+
4359
+ .attr-panel-default > .attr-panel-heading {
4360
+ color: #333;
4361
+ background-color: #f5f5f5;
4362
+ border-color: #ddd;
4363
+ }
4364
+
4365
+ .attr-panel-default > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4366
+ border-top-color: #ddd;
4367
+ }
4368
+
4369
+ .attr-panel-default > .attr-panel-heading .attr-badge {
4370
+ color: #f5f5f5;
4371
+ background-color: #333;
4372
+ }
4373
+
4374
+ .attr-panel-default > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4375
+ border-bottom-color: #ddd;
4376
+ }
4377
+
4378
+ .attr-panel-primary {
4379
+ border-color: #337ab7;
4380
+ }
4381
+
4382
+ .attr-panel-primary > .attr-panel-heading {
4383
+ color: #fff;
4384
+ background-color: #337ab7;
4385
+ border-color: #337ab7;
4386
+ }
4387
+
4388
+ .attr-panel-primary > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4389
+ border-top-color: #337ab7;
4390
+ }
4391
+
4392
+ .attr-panel-primary > .attr-panel-heading .attr-badge {
4393
+ color: #337ab7;
4394
+ background-color: #fff;
4395
+ }
4396
+
4397
+ .attr-panel-primary > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4398
+ border-bottom-color: #337ab7;
4399
+ }
4400
+
4401
+ .attr-panel-success {
4402
+ border-color: #d6e9c6;
4403
+ }
4404
+
4405
+ .attr-panel-success > .attr-panel-heading {
4406
+ color: #3c763d;
4407
+ background-color: #dff0d8;
4408
+ border-color: #d6e9c6;
4409
+ }
4410
+
4411
+ .attr-panel-success > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4412
+ border-top-color: #d6e9c6;
4413
+ }
4414
+
4415
+ .attr-panel-success > .attr-panel-heading .attr-badge {
4416
+ color: #dff0d8;
4417
+ background-color: #3c763d;
4418
+ }
4419
+
4420
+ .attr-panel-success > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4421
+ border-bottom-color: #d6e9c6;
4422
+ }
4423
+
4424
+ .attr-panel-info {
4425
+ border-color: #bce8f1;
4426
+ }
4427
+
4428
+ .attr-panel-info > .attr-panel-heading {
4429
+ color: #31708f;
4430
+ background-color: #d9edf7;
4431
+ border-color: #bce8f1;
4432
+ }
4433
+
4434
+ .attr-panel-info > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4435
+ border-top-color: #bce8f1;
4436
+ }
4437
+
4438
+ .attr-panel-info > .attr-panel-heading .attr-badge {
4439
+ color: #d9edf7;
4440
+ background-color: #31708f;
4441
+ }
4442
+
4443
+ .attr-panel-info > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4444
+ border-bottom-color: #bce8f1;
4445
+ }
4446
+
4447
+ .attr-panel-warning {
4448
+ border-color: #faebcc;
4449
+ }
4450
+
4451
+ .attr-panel-warning > .attr-panel-heading {
4452
+ color: #8a6d3b;
4453
+ background-color: #fcf8e3;
4454
+ border-color: #faebcc;
4455
+ }
4456
+
4457
+ .attr-panel-warning > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4458
+ border-top-color: #faebcc;
4459
+ }
4460
+
4461
+ .attr-panel-warning > .attr-panel-heading .attr-badge {
4462
+ color: #fcf8e3;
4463
+ background-color: #8a6d3b;
4464
+ }
4465
+
4466
+ .attr-panel-warning > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4467
+ border-bottom-color: #faebcc;
4468
+ }
4469
+
4470
+ .attr-panel-danger {
4471
+ border-color: #ebccd1;
4472
+ }
4473
+
4474
+ .attr-panel-danger > .attr-panel-heading {
4475
+ color: #a94442;
4476
+ background-color: #f2dede;
4477
+ border-color: #ebccd1;
4478
+ }
4479
+
4480
+ .attr-panel-danger > .attr-panel-heading + .attr-panel-collapse > .attr-panel-body {
4481
+ border-top-color: #ebccd1;
4482
+ }
4483
+
4484
+ .attr-panel-danger > .attr-panel-heading .attr-badge {
4485
+ color: #f2dede;
4486
+ background-color: #a94442;
4487
+ }
4488
+
4489
+ .attr-panel-danger > .attr-panel-footer + .attr-panel-collapse > .attr-panel-body {
4490
+ border-bottom-color: #ebccd1;
4491
+ }
4492
+
4493
+ .attr-embed-responsive {
4494
+ position: relative;
4495
+ display: block;
4496
+ height: 0;
4497
+ padding: 0;
4498
+ overflow: hidden;
4499
+ }
4500
+
4501
+ .attr-embed-responsive .attr-embed-responsive-item, .attr-embed-responsive iframe, .attr-embed-responsive embed, .attr-embed-responsive object, .attr-embed-responsive video {
4502
+ position: absolute;
4503
+ top: 0;
4504
+ bottom: 0;
4505
+ left: 0;
4506
+ width: 100%;
4507
+ height: 100%;
4508
+ border: 0;
4509
+ }
4510
+
4511
+ .attr-embed-responsive-16by9 {
4512
+ padding-bottom: 56.25%;
4513
+ }
4514
+
4515
+ .attr-embed-responsive-4by3 {
4516
+ padding-bottom: 75%;
4517
+ }
4518
+
4519
+ .attr-well {
4520
+ min-height: 20px;
4521
+ padding: 19px;
4522
+ margin-bottom: 20px;
4523
+ background-color: #f5f5f5;
4524
+ border: 1px solid #e3e3e3;
4525
+ border-radius: 4px;
4526
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4527
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05);
4528
+ }
4529
+
4530
+ .attr-well blockquote {
4531
+ border-color: #ddd;
4532
+ border-color: rgba(0, 0, 0, 0.15);
4533
+ }
4534
+
4535
+ .attr-well-lg {
4536
+ padding: 24px;
4537
+ border-radius: 6px;
4538
+ }
4539
+
4540
+ .attr-well-sm {
4541
+ padding: 9px;
4542
+ border-radius: 3px;
4543
+ }
4544
+
4545
+ .attr-close {
4546
+ float: right;
4547
+ font-size: 21px;
4548
+ font-weight: bold;
4549
+ line-height: 1;
4550
+ color: #000;
4551
+ text-shadow: 0 1px 0 #fff;
4552
+ filter: alpha(opacity=20);
4553
+ opacity: 0.2;
4554
+ }
4555
+
4556
+ .attr-close:hover, .attr-close:focus {
4557
+ color: #000;
4558
+ text-decoration: none;
4559
+ cursor: pointer;
4560
+ filter: alpha(opacity=50);
4561
+ opacity: 0.5;
4562
+ }
4563
+
4564
+ button.attr-close {
4565
+ -webkit-appearance: none;
4566
+ padding: 0;
4567
+ cursor: pointer;
4568
+ background: transparent;
4569
+ border: 0;
4570
+ }
4571
+
4572
+ .attr-modal-open {
4573
+ overflow: hidden;
4574
+ }
4575
+
4576
+ .attr-modal {
4577
+ position: fixed;
4578
+ top: 0;
4579
+ right: 0;
4580
+ bottom: 0;
4581
+ left: 0;
4582
+ z-index: 1050;
4583
+ display: none;
4584
+ overflow: hidden;
4585
+ -webkit-overflow-scrolling: touch;
4586
+ outline: 0;
4587
+ }
4588
+
4589
+ .attr-modal.attr-fade .attr-modal-dialog {
4590
+ -webkit-transition: -webkit-transform 0.3s ease-out;
4591
+ -o-transition: -o-transform 0.3s ease-out;
4592
+ transition: -webkit-transform 0.3s ease-out;
4593
+ -o-transition: transform 0.3s ease-out;
4594
+ transition: transform 0.3s ease-out;
4595
+ transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
4596
+ -webkit-transform: translate(0, -25%);
4597
+ -ms-transform: translate(0, -25%);
4598
+ transform: translate(0, -25%);
4599
+ }
4600
+
4601
+ .attr-modal.attr-in .attr-modal-dialog {
4602
+ -webkit-transform: translate(0, 0);
4603
+ -ms-transform: translate(0, 0);
4604
+ transform: translate(0, 0);
4605
+ }
4606
+
4607
+ .attr-modal-open .attr-modal {
4608
+ overflow-x: hidden;
4609
+ overflow-y: auto;
4610
+ }
4611
+
4612
+ .attr-modal-dialog {
4613
+ position: relative;
4614
+ width: auto;
4615
+ margin: 10px;
4616
+ }
4617
+
4618
+ .attr-modal-content {
4619
+ position: relative;
4620
+ background-color: #fff;
4621
+ -webkit-background-clip: padding-box;
4622
+ background-clip: padding-box;
4623
+ border: 1px solid #999;
4624
+ border: 1px solid rgba(0, 0, 0, 0.2);
4625
+ border-radius: 6px;
4626
+ outline: 0;
4627
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
4628
+ box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
4629
+ }
4630
+
4631
+ .attr-modal-backdrop {
4632
+ position: fixed;
4633
+ top: 0;
4634
+ right: 0;
4635
+ bottom: 0;
4636
+ left: 0;
4637
+ z-index: 1040;
4638
+ background-color: #000;
4639
+ }
4640
+
4641
+ .attr-modal-backdrop.attr-fade {
4642
+ filter: alpha(opacity=0);
4643
+ opacity: 0;
4644
+ }
4645
+
4646
+ .attr-modal-backdrop.attr-in {
4647
+ filter: alpha(opacity=50);
4648
+ opacity: 0.5;
4649
+ }
4650
+
4651
+ .attr-modal-header {
4652
+ padding: 15px;
4653
+ border-bottom: 1px solid #e5e5e5;
4654
+ }
4655
+
4656
+ .attr-modal-header .attr-close {
4657
+ margin-top: -2px;
4658
+ }
4659
+
4660
+ .attr-modal-title {
4661
+ margin: 0;
4662
+ line-height: 1.42857143;
4663
+ }
4664
+
4665
+ .attr-modal-body {
4666
+ position: relative;
4667
+ padding: 15px;
4668
+ }
4669
+
4670
+ .attr-modal-footer {
4671
+ padding: 15px;
4672
+ text-align: right;
4673
+ border-top: 1px solid #e5e5e5;
4674
+ }
4675
+
4676
+ .attr-modal-footer .attr-btn + .attr-btn {
4677
+ margin-bottom: 0;
4678
+ margin-left: 5px;
4679
+ }
4680
+
4681
+ .attr-modal-footer .attr-btn-group .attr-btn + .attr-btn {
4682
+ margin-left: -1px;
4683
+ }
4684
+
4685
+ .attr-modal-footer .attr-btn-block + .attr-btn-block {
4686
+ margin-left: 0;
4687
+ }
4688
+
4689
+ .attr-modal-scrollbar-measure {
4690
+ position: absolute;
4691
+ top: -9999px;
4692
+ width: 50px;
4693
+ height: 50px;
4694
+ overflow: scroll;
4695
+ }
4696
+
4697
+ @media (min-width: 768px) {
4698
+ .attr-modal-dialog {
4699
+ width: 600px;
4700
+ margin: 30px auto;
4701
+ }
4702
+
4703
+ .attr-modal-content {
4704
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4705
+ box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
4706
+ }
4707
+
4708
+ .attr-modal-sm {
4709
+ width: 300px;
4710
+ }
4711
+ }
4712
+ @media (min-width: 992px) {
4713
+ .attr-modal-lg {
4714
+ width: 900px;
4715
+ }
4716
+ }
4717
+ .attr-tooltip {
4718
+ position: absolute;
4719
+ z-index: 1070;
4720
+ display: block;
4721
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4722
+ font-size: 12px;
4723
+ font-style: normal;
4724
+ font-weight: normal;
4725
+ line-height: 1.42857143;
4726
+ text-align: left;
4727
+ text-align: start;
4728
+ text-decoration: none;
4729
+ text-shadow: none;
4730
+ text-transform: none;
4731
+ letter-spacing: normal;
4732
+ word-break: normal;
4733
+ word-spacing: normal;
4734
+ word-wrap: normal;
4735
+ white-space: normal;
4736
+ filter: alpha(opacity=0);
4737
+ opacity: 0;
4738
+ line-break: auto;
4739
+ }
4740
+
4741
+ .attr-tooltip.attr-in {
4742
+ filter: alpha(opacity=90);
4743
+ opacity: 0.9;
4744
+ }
4745
+
4746
+ .attr-tooltip.attr-top {
4747
+ padding: 5px 0;
4748
+ margin-top: -3px;
4749
+ }
4750
+
4751
+ .attr-tooltip.attr-right {
4752
+ padding: 0 5px;
4753
+ margin-left: 3px;
4754
+ }
4755
+
4756
+ .attr-tooltip.attr-bottom {
4757
+ padding: 5px 0;
4758
+ margin-top: 3px;
4759
+ }
4760
+
4761
+ .attr-tooltip.attr-left {
4762
+ padding: 0 5px;
4763
+ margin-left: -3px;
4764
+ }
4765
+
4766
+ .attr-tooltip-inner {
4767
+ max-width: 200px;
4768
+ padding: 3px 8px;
4769
+ color: #fff;
4770
+ text-align: center;
4771
+ background-color: #000;
4772
+ border-radius: 4px;
4773
+ }
4774
+
4775
+ .attr-tooltip-arrow {
4776
+ position: absolute;
4777
+ width: 0;
4778
+ height: 0;
4779
+ border-color: transparent;
4780
+ border-style: solid;
4781
+ }
4782
+
4783
+ .attr-tooltip.attr-top .attr-tooltip-arrow {
4784
+ bottom: 0;
4785
+ left: 50%;
4786
+ margin-left: -5px;
4787
+ border-width: 5px 5px 0;
4788
+ border-top-color: #000;
4789
+ }
4790
+
4791
+ .attr-tooltip.attr-top-left .attr-tooltip-arrow {
4792
+ right: 5px;
4793
+ bottom: 0;
4794
+ margin-bottom: -5px;
4795
+ border-width: 5px 5px 0;
4796
+ border-top-color: #000;
4797
+ }
4798
+
4799
+ .attr-tooltip.attr-top-right .attr-tooltip-arrow {
4800
+ bottom: 0;
4801
+ left: 5px;
4802
+ margin-bottom: -5px;
4803
+ border-width: 5px 5px 0;
4804
+ border-top-color: #000;
4805
+ }
4806
+
4807
+ .attr-tooltip.attr-right .attr-tooltip-arrow {
4808
+ top: 50%;
4809
+ left: 0;
4810
+ margin-top: -5px;
4811
+ border-width: 5px 5px 5px 0;
4812
+ border-right-color: #000;
4813
+ }
4814
+
4815
+ .attr-tooltip.attr-left .attr-tooltip-arrow {
4816
+ top: 50%;
4817
+ right: 0;
4818
+ margin-top: -5px;
4819
+ border-width: 5px 0 5px 5px;
4820
+ border-left-color: #000;
4821
+ }
4822
+
4823
+ .attr-tooltip.attr-bottom .attr-tooltip-arrow {
4824
+ top: 0;
4825
+ left: 50%;
4826
+ margin-left: -5px;
4827
+ border-width: 0 5px 5px;
4828
+ border-bottom-color: #000;
4829
+ }
4830
+
4831
+ .attr-tooltip.attr-bottom-left .attr-tooltip-arrow {
4832
+ top: 0;
4833
+ right: 5px;
4834
+ margin-top: -5px;
4835
+ border-width: 0 5px 5px;
4836
+ border-bottom-color: #000;
4837
+ }
4838
+
4839
+ .attr-tooltip.attr-bottom-right .attr-tooltip-arrow {
4840
+ top: 0;
4841
+ left: 5px;
4842
+ margin-top: -5px;
4843
+ border-width: 0 5px 5px;
4844
+ border-bottom-color: #000;
4845
+ }
4846
+
4847
+ .attr-popover {
4848
+ position: absolute;
4849
+ top: 0;
4850
+ left: 0;
4851
+ z-index: 1060;
4852
+ display: none;
4853
+ max-width: 276px;
4854
+ padding: 1px;
4855
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
4856
+ font-size: 14px;
4857
+ font-style: normal;
4858
+ font-weight: normal;
4859
+ line-height: 1.42857143;
4860
+ text-align: left;
4861
+ text-align: start;
4862
+ text-decoration: none;
4863
+ text-shadow: none;
4864
+ text-transform: none;
4865
+ letter-spacing: normal;
4866
+ word-break: normal;
4867
+ word-spacing: normal;
4868
+ word-wrap: normal;
4869
+ white-space: normal;
4870
+ background-color: #fff;
4871
+ -webkit-background-clip: padding-box;
4872
+ background-clip: padding-box;
4873
+ border: 1px solid #ccc;
4874
+ border: 1px solid rgba(0, 0, 0, 0.2);
4875
+ border-radius: 6px;
4876
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4877
+ box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
4878
+ line-break: auto;
4879
+ }
4880
+
4881
+ .attr-popover.attr-top {
4882
+ margin-top: -10px;
4883
+ }
4884
+
4885
+ .attr-popover.attr-right {
4886
+ margin-left: 10px;
4887
+ }
4888
+
4889
+ .attr-popover.attr-bottom {
4890
+ margin-top: 10px;
4891
+ }
4892
+
4893
+ .attr-popover.attr-left {
4894
+ margin-left: -10px;
4895
+ }
4896
+
4897
+ .attr-popover-title {
4898
+ padding: 8px 14px;
4899
+ margin: 0;
4900
+ font-size: 14px;
4901
+ background-color: #f7f7f7;
4902
+ border-bottom: 1px solid #ebebeb;
4903
+ border-radius: 5px 5px 0 0;
4904
+ }
4905
+
4906
+ .attr-popover-content {
4907
+ padding: 9px 14px;
4908
+ }
4909
+
4910
+ .attr-popover > .attr-arrow, .attr-popover > .attr-arrow:after {
4911
+ position: absolute;
4912
+ display: block;
4913
+ width: 0;
4914
+ height: 0;
4915
+ border-color: transparent;
4916
+ border-style: solid;
4917
+ }
4918
+
4919
+ .attr-popover > .attr-arrow {
4920
+ border-width: 11px;
4921
+ }
4922
+
4923
+ .attr-popover > .attr-arrow:after {
4924
+ content: "";
4925
+ border-width: 10px;
4926
+ }
4927
+
4928
+ .attr-popover.attr-top > .attr-arrow {
4929
+ bottom: -11px;
4930
+ left: 50%;
4931
+ margin-left: -11px;
4932
+ border-top-color: #999;
4933
+ border-top-color: rgba(0, 0, 0, 0.25);
4934
+ border-bottom-width: 0;
4935
+ }
4936
+
4937
+ .attr-popover.attr-top > .attr-arrow:after {
4938
+ bottom: 1px;
4939
+ margin-left: -10px;
4940
+ content: " ";
4941
+ border-top-color: #fff;
4942
+ border-bottom-width: 0;
4943
+ }
4944
+
4945
+ .attr-popover.attr-right > .attr-arrow {
4946
+ top: 50%;
4947
+ left: -11px;
4948
+ margin-top: -11px;
4949
+ border-right-color: #999;
4950
+ border-right-color: rgba(0, 0, 0, 0.25);
4951
+ border-left-width: 0;
4952
+ }
4953
+
4954
+ .attr-popover.attr-right > .attr-arrow:after {
4955
+ bottom: -10px;
4956
+ left: 1px;
4957
+ content: " ";
4958
+ border-right-color: #fff;
4959
+ border-left-width: 0;
4960
+ }
4961
+
4962
+ .attr-popover.attr-bottom > .attr-arrow {
4963
+ top: -11px;
4964
+ left: 50%;
4965
+ margin-left: -11px;
4966
+ border-top-width: 0;
4967
+ border-bottom-color: #999;
4968
+ border-bottom-color: rgba(0, 0, 0, 0.25);
4969
+ }
4970
+
4971
+ .attr-popover.attr-bottom > .attr-arrow:after {
4972
+ top: 1px;
4973
+ margin-left: -10px;
4974
+ content: " ";
4975
+ border-top-width: 0;
4976
+ border-bottom-color: #fff;
4977
+ }
4978
+
4979
+ .attr-popover.attr-left > .attr-arrow {
4980
+ top: 50%;
4981
+ right: -11px;
4982
+ margin-top: -11px;
4983
+ border-right-width: 0;
4984
+ border-left-color: #999;
4985
+ border-left-color: rgba(0, 0, 0, 0.25);
4986
+ }
4987
+
4988
+ .attr-popover.attr-left > .attr-arrow:after {
4989
+ right: 1px;
4990
+ bottom: -10px;
4991
+ content: " ";
4992
+ border-right-width: 0;
4993
+ border-left-color: #fff;
4994
+ }
4995
+
4996
+ .attr-carousel {
4997
+ position: relative;
4998
+ }
4999
+
5000
+ .attr-carousel-inner {
5001
+ position: relative;
5002
+ width: 100%;
5003
+ overflow: hidden;
5004
+ }
5005
+
5006
+ .attr-carousel-inner > .attr-item {
5007
+ position: relative;
5008
+ display: none;
5009
+ -webkit-transition: 0.6s ease-in-out left;
5010
+ -o-transition: 0.6s ease-in-out left;
5011
+ transition: 0.6s ease-in-out left;
5012
+ }
5013
+
5014
+ .attr-carousel-inner > .attr-item > img, .attr-carousel-inner > .attr-item > a > img {
5015
+ line-height: 1;
5016
+ }
5017
+
5018
+ @media all and (transform-3d), (-webkit-transform-3d) {
5019
+ .attr-carousel-inner > .attr-item {
5020
+ -webkit-transition: -webkit-transform 0.6s ease-in-out;
5021
+ -o-transition: -o-transform 0.6s ease-in-out;
5022
+ transition: -webkit-transform 0.6s ease-in-out;
5023
+ -o-transition: transform 0.6s ease-in-out;
5024
+ transition: transform 0.6s ease-in-out;
5025
+ transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
5026
+ -webkit-backface-visibility: hidden;
5027
+ backface-visibility: hidden;
5028
+ -webkit-perspective: 1000px;
5029
+ perspective: 1000px;
5030
+ }
5031
+
5032
+ .attr-carousel-inner > .attr-item.attr-next, .attr-carousel-inner > .attr-item.attr-active.attr-right {
5033
+ left: 0;
5034
+ -webkit-transform: translate3d(100%, 0, 0);
5035
+ transform: translate3d(100%, 0, 0);
5036
+ }
5037
+
5038
+ .attr-carousel-inner > .attr-item.attr-prev, .attr-carousel-inner > .attr-item.attr-active.attr-left {
5039
+ left: 0;
5040
+ -webkit-transform: translate3d(-100%, 0, 0);
5041
+ transform: translate3d(-100%, 0, 0);
5042
+ }
5043
+
5044
+ .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 {
5045
+ left: 0;
5046
+ -webkit-transform: translate3d(0, 0, 0);
5047
+ transform: translate3d(0, 0, 0);
5048
+ }
5049
+ }
5050
+ .attr-carousel-inner > .attr-active, .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
5051
+ display: block;
5052
+ }
5053
+
5054
+ .attr-carousel-inner > .attr-active {
5055
+ left: 0;
5056
+ }
5057
+
5058
+ .attr-carousel-inner > .attr-next, .attr-carousel-inner > .attr-prev {
5059
+ position: absolute;
5060
+ top: 0;
5061
+ width: 100%;
5062
+ }
5063
+
5064
+ .attr-carousel-inner > .attr-next {
5065
+ left: 100%;
5066
+ }
5067
+
5068
+ .attr-carousel-inner > .attr-prev {
5069
+ left: -100%;
5070
+ }
5071
+
5072
+ .attr-carousel-inner > .attr-next.attr-left, .attr-carousel-inner > .attr-prev.attr-right {
5073
+ left: 0;
5074
+ }
5075
+
5076
+ .attr-carousel-inner > .attr-active.attr-left {
5077
+ left: -100%;
5078
+ }
5079
+
5080
+ .attr-carousel-inner > .attr-active.attr-right {
5081
+ left: 100%;
5082
+ }
5083
+
5084
+ .attr-carousel-control {
5085
+ position: absolute;
5086
+ top: 0;
5087
+ bottom: 0;
5088
+ left: 0;
5089
+ width: 15%;
5090
+ font-size: 20px;
5091
+ color: #fff;
5092
+ text-align: center;
5093
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5094
+ background-color: rgba(0, 0, 0, 0);
5095
+ filter: alpha(opacity=50);
5096
+ opacity: 0.5;
5097
+ }
5098
+
5099
+ .attr-carousel-control.attr-left {
5100
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5101
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0.0001)));
5102
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
5103
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#80000000", endColorstr="#00000000", GradientType=1);
5104
+ background-repeat: repeat-x;
5105
+ }
5106
+
5107
+ .attr-carousel-control.attr-right {
5108
+ right: 0;
5109
+ left: auto;
5110
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5111
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.0001)), to(rgba(0, 0, 0, 0.5)));
5112
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
5113
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00000000", endColorstr="#80000000", GradientType=1);
5114
+ background-repeat: repeat-x;
5115
+ }
5116
+
5117
+ .attr-carousel-control:hover, .attr-carousel-control:focus {
5118
+ color: #fff;
5119
+ text-decoration: none;
5120
+ filter: alpha(opacity=90);
5121
+ outline: 0;
5122
+ opacity: 0.9;
5123
+ }
5124
+
5125
+ .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 {
5126
+ position: absolute;
5127
+ top: 50%;
5128
+ z-index: 5;
5129
+ display: inline-block;
5130
+ margin-top: -10px;
5131
+ }
5132
+
5133
+ .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-glyphicon-chevron-left {
5134
+ left: 50%;
5135
+ margin-left: -10px;
5136
+ }
5137
+
5138
+ .attr-carousel-control .attr-icon-next, .attr-carousel-control .attr-glyphicon-chevron-right {
5139
+ right: 50%;
5140
+ margin-right: -10px;
5141
+ }
5142
+
5143
+ .attr-carousel-control .attr-icon-prev, .attr-carousel-control .attr-icon-next {
5144
+ width: 20px;
5145
+ height: 20px;
5146
+ font-family: serif;
5147
+ line-height: 1;
5148
+ }
5149
+
5150
+ .attr-carousel-control .attr-icon-prev:before {
5151
+ content: "‹";
5152
+ }
5153
+
5154
+ .attr-carousel-control .attr-icon-next:before {
5155
+ content: "›";
5156
+ }
5157
+
5158
+ .attr-carousel-indicators {
5159
+ position: absolute;
5160
+ bottom: 10px;
5161
+ left: 50%;
5162
+ z-index: 15;
5163
+ width: 60%;
5164
+ padding-left: 0;
5165
+ margin-left: -30%;
5166
+ text-align: center;
5167
+ list-style: none;
5168
+ }
5169
+
5170
+ .attr-carousel-indicators li {
5171
+ display: inline-block;
5172
+ width: 10px;
5173
+ height: 10px;
5174
+ margin: 1px;
5175
+ text-indent: -999px;
5176
+ cursor: pointer;
5177
+ background-color: #000;
5178
+ background-color: rgba(0, 0, 0, 0);
5179
+ border: 1px solid #fff;
5180
+ border-radius: 10px;
5181
+ }
5182
+
5183
+ .attr-carousel-indicators .attr-active {
5184
+ width: 12px;
5185
+ height: 12px;
5186
+ margin: 0;
5187
+ background-color: #fff;
5188
+ }
5189
+
5190
+ .attr-carousel-caption {
5191
+ position: absolute;
5192
+ right: 15%;
5193
+ bottom: 20px;
5194
+ left: 15%;
5195
+ z-index: 10;
5196
+ padding-top: 20px;
5197
+ padding-bottom: 20px;
5198
+ color: #fff;
5199
+ text-align: center;
5200
+ text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
5201
+ }
5202
+
5203
+ .attr-carousel-caption .attr-btn {
5204
+ text-shadow: none;
5205
+ }
5206
+
5207
+ @media screen and (min-width: 768px) {
5208
+ .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 {
5209
+ width: 30px;
5210
+ height: 30px;
5211
+ margin-top: -10px;
5212
+ font-size: 30px;
5213
+ }
5214
+
5215
+ .attr-carousel-control .attr-glyphicon-chevron-left, .attr-carousel-control .attr-icon-prev {
5216
+ margin-left: -10px;
5217
+ }
5218
+
5219
+ .attr-carousel-control .attr-glyphicon-chevron-right, .attr-carousel-control .attr-icon-next {
5220
+ margin-right: -10px;
5221
+ }
5222
+
5223
+ .attr-carousel-caption {
5224
+ right: 20%;
5225
+ left: 20%;
5226
+ padding-bottom: 30px;
5227
+ }
5228
+
5229
+ .attr-carousel-indicators {
5230
+ bottom: 20px;
5231
+ }
5232
+ }
5233
+ .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 {
5234
+ display: table;
5235
+ content: " ";
5236
+ }
5237
+
5238
+ .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 {
5239
+ clear: both;
5240
+ }
5241
+
5242
+ .attr-center-block {
5243
+ display: block;
5244
+ margin-right: auto;
5245
+ margin-left: auto;
5246
+ }
5247
+
5248
+ .attr-pull-right {
5249
+ float: right !important;
5250
+ }
5251
+
5252
+ .attr-pull-left {
5253
+ float: left !important;
5254
+ }
5255
+
5256
+ .attr-hide {
5257
+ display: none !important;
5258
+ }
5259
+
5260
+ .attr-show {
5261
+ display: block !important;
5262
+ }
5263
+
5264
+ .attr-invisible {
5265
+ visibility: hidden;
5266
+ }
5267
+
5268
+ .attr-text-hide {
5269
+ font: 0/0 a;
5270
+ color: transparent;
5271
+ text-shadow: none;
5272
+ background-color: transparent;
5273
+ border: 0;
5274
+ }
5275
+
5276
+ .attr-hidden {
5277
+ display: none !important;
5278
+ }
5279
+
5280
+ .attr-affix {
5281
+ position: fixed;
5282
+ }
5283
+
5284
+ @-ms-viewport {
5285
+ width: device-width;
5286
+ }
5287
+ .attr-visible-xs, .attr-visible-sm, .attr-visible-md, .attr-visible-lg {
5288
+ display: none !important;
5289
+ }
5290
+
5291
+ .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 {
5292
+ display: none !important;
5293
+ }
5294
+
5295
+ @media (max-width: 767px) {
5296
+ .attr-visible-xs {
5297
+ display: block !important;
5298
+ }
5299
+
5300
+ table.attr-visible-xs {
5301
+ display: table !important;
5302
+ }
5303
+
5304
+ tr.attr-visible-xs {
5305
+ display: table-row !important;
5306
+ }
5307
+
5308
+ th.attr-visible-xs, td.attr-visible-xs {
5309
+ display: table-cell !important;
5310
+ }
5311
+ }
5312
+ @media (max-width: 767px) {
5313
+ .attr-visible-xs-block {
5314
+ display: block !important;
5315
+ }
5316
+ }
5317
+ @media (max-width: 767px) {
5318
+ .attr-visible-xs-inline {
5319
+ display: inline !important;
5320
+ }
5321
+ }
5322
+ @media (max-width: 767px) {
5323
+ .attr-visible-xs-inline-block {
5324
+ display: inline-block !important;
5325
+ }
5326
+ }
5327
+ @media (min-width: 768px) and (max-width: 991px) {
5328
+ .attr-visible-sm {
5329
+ display: block !important;
5330
+ }
5331
+
5332
+ table.attr-visible-sm {
5333
+ display: table !important;
5334
+ }
5335
+
5336
+ tr.attr-visible-sm {
5337
+ display: table-row !important;
5338
+ }
5339
+
5340
+ th.attr-visible-sm, td.attr-visible-sm {
5341
+ display: table-cell !important;
5342
+ }
5343
+ }
5344
+ @media (min-width: 768px) and (max-width: 991px) {
5345
+ .attr-visible-sm-block {
5346
+ display: block !important;
5347
+ }
5348
+ }
5349
+ @media (min-width: 768px) and (max-width: 991px) {
5350
+ .attr-visible-sm-inline {
5351
+ display: inline !important;
5352
+ }
5353
+ }
5354
+ @media (min-width: 768px) and (max-width: 991px) {
5355
+ .attr-visible-sm-inline-block {
5356
+ display: inline-block !important;
5357
+ }
5358
+ }
5359
+ @media (min-width: 992px) and (max-width: 1199px) {
5360
+ .attr-visible-md {
5361
+ display: block !important;
5362
+ }
5363
+
5364
+ table.attr-visible-md {
5365
+ display: table !important;
5366
+ }
5367
+
5368
+ tr.attr-visible-md {
5369
+ display: table-row !important;
5370
+ }
5371
+
5372
+ th.attr-visible-md, td.attr-visible-md {
5373
+ display: table-cell !important;
5374
+ }
5375
+ }
5376
+ @media (min-width: 992px) and (max-width: 1199px) {
5377
+ .attr-visible-md-block {
5378
+ display: block !important;
5379
+ }
5380
+ }
5381
+ @media (min-width: 992px) and (max-width: 1199px) {
5382
+ .attr-visible-md-inline {
5383
+ display: inline !important;
5384
+ }
5385
+ }
5386
+ @media (min-width: 992px) and (max-width: 1199px) {
5387
+ .attr-visible-md-inline-block {
5388
+ display: inline-block !important;
5389
+ }
5390
+ }
5391
+ @media (min-width: 1200px) {
5392
+ .attr-visible-lg {
5393
+ display: block !important;
5394
+ }
5395
+
5396
+ table.attr-visible-lg {
5397
+ display: table !important;
5398
+ }
5399
+
5400
+ tr.attr-visible-lg {
5401
+ display: table-row !important;
5402
+ }
5403
+
5404
+ th.attr-visible-lg, td.attr-visible-lg {
5405
+ display: table-cell !important;
5406
+ }
5407
+ }
5408
+ @media (min-width: 1200px) {
5409
+ .attr-visible-lg-block {
5410
+ display: block !important;
5411
+ }
5412
+ }
5413
+ @media (min-width: 1200px) {
5414
+ .attr-visible-lg-inline {
5415
+ display: inline !important;
5416
+ }
5417
+ }
5418
+ @media (min-width: 1200px) {
5419
+ .attr-visible-lg-inline-block {
5420
+ display: inline-block !important;
5421
+ }
5422
+ }
5423
+ @media (max-width: 767px) {
5424
+ .attr-hidden-xs {
5425
+ display: none !important;
5426
+ }
5427
+ }
5428
+ @media (min-width: 768px) and (max-width: 991px) {
5429
+ .attr-hidden-sm {
5430
+ display: none !important;
5431
+ }
5432
+ }
5433
+ @media (min-width: 992px) and (max-width: 1199px) {
5434
+ .attr-hidden-md {
5435
+ display: none !important;
5436
+ }
5437
+ }
5438
+ @media (min-width: 1200px) {
5439
+ .attr-hidden-lg {
5440
+ display: none !important;
5441
+ }
5442
+ }
5443
+ .attr-visible-print {
5444
+ display: none !important;
5445
+ }
5446
+
5447
+ @media print {
5448
+ .attr-visible-print {
5449
+ display: block !important;
5450
+ }
5451
+
5452
+ table.attr-visible-print {
5453
+ display: table !important;
5454
+ }
5455
+
5456
+ tr.attr-visible-print {
5457
+ display: table-row !important;
5458
+ }
5459
+
5460
+ th.attr-visible-print, td.attr-visible-print {
5461
+ display: table-cell !important;
5462
+ }
5463
+ }
5464
+ .attr-visible-print-block {
5465
+ display: none !important;
5466
+ }
5467
+
5468
+ @media print {
5469
+ .attr-visible-print-block {
5470
+ display: block !important;
5471
+ }
5472
+ }
5473
+ .attr-visible-print-inline {
5474
+ display: none !important;
5475
+ }
5476
+
5477
+ @media print {
5478
+ .attr-visible-print-inline {
5479
+ display: inline !important;
5480
+ }
5481
+ }
5482
+ .attr-visible-print-inline-block {
5483
+ display: none !important;
5484
+ }
5485
+
5486
+ @media print {
5487
+ .attr-visible-print-inline-block {
5488
+ display: inline-block !important;
5489
+ }
5490
+ }
5491
+ @media print {
5492
+ .attr-hidden-print {
5493
+ display: none !important;
5494
+ }
5495
+ }
5496
+ .attr-nav-tabs .ekit-admin-nav-link {
5497
+ display: -webkit-box;
5498
+ display: -ms-flexbox;
5499
+ display: flex;
5500
+ padding: 16px 44px 18px 20px;
5501
+ color: #121116;
5502
+ border-top: 1px solid #E0E4E9;
5503
+ border-left: 2px solid transparent;
5504
+ -webkit-transition: all 100ms ease-out;
5505
+ -o-transition: all 100ms ease-out;
5506
+ transition: all 100ms ease-out;
5507
+ background-color: #f1f1f1;
5508
+ -webkit-box-pack: justify;
5509
+ -ms-flex-pack: justify;
5510
+ justify-content: space-between;
5511
+ -webkit-box-align: center;
5512
+ -ms-flex-align: center;
5513
+ align-items: center;
5514
+ -webkit-transition: all 0.4s ease;
5515
+ -o-transition: all 0.4s ease;
5516
+ transition: all 0.4s ease;
5517
+ border-radius: 0px;
5518
+ }
5519
+ .attr-nav-tabs .ekit-admin-nav-link .ekit-admin-title {
5520
+ font-size: 0.8125rem;
5521
+ font-weight: bold;
5522
+ color: #121116;
5523
+ display: block;
5524
+ margin-bottom: 2px;
5525
+ line-height: 1;
5526
+ }
5527
+ .attr-nav-tabs .ekit-admin-nav-link .ekit-admin-subtitle {
5528
+ color: #72777C;
5529
+ font-size: 0.8125rem;
5530
+ -webkit-transition: all 150ms ease-out;
5531
+ -o-transition: all 150ms ease-out;
5532
+ transition: all 150ms ease-out;
5533
+ }
5534
+ .attr-nav-tabs .ekit-admin-nav-link .ekit-admin-tab-icon {
5535
+ color: #72777C;
5536
+ font-size: 1.4375rem;
5537
+ -webkit-transition: all 0.4s ease;
5538
+ -o-transition: all 0.4s ease;
5539
+ transition: all 0.4s ease;
5540
+ }
5541
+ .attr-nav-tabs .attr-active > a,
5542
+ .attr-nav-tabs > li > a:hover,
5543
+ .attr-nav-tabs > li > a:focus {
5544
+ background-color: #FFFFFF;
5545
+ border-left-color: #f2295b;
5546
+ }
5547
+ .attr-nav-tabs .attr-active > a .ekit-admin-title,
5548
+ .attr-nav-tabs .attr-active > a .ekit-admin-tab-icon,
5549
+ .attr-nav-tabs > li > a:hover .ekit-admin-title,
5550
+ .attr-nav-tabs > li > a:hover .ekit-admin-tab-icon,
5551
+ .attr-nav-tabs > li > a:focus .ekit-admin-title,
5552
+ .attr-nav-tabs > li > a:focus .ekit-admin-tab-icon {
5553
+ color: #f2295b;
5554
+ }
5555
+
5556
+ /* tab content */
5557
+ .ekit-admin-header {
5558
+ display: -webkit-box;
5559
+ display: -ms-flexbox;
5560
+ display: flex;
5561
+ -webkit-box-pack: justify;
5562
+ -ms-flex-pack: justify;
5563
+ justify-content: space-between;
5564
+ padding-bottom: 9px;
5565
+ border-bottom: 1px solid #E0E4E9;
5566
+ margin-bottom: 8px;
5567
+ }
5568
+
5569
+ .ekit-admin-header-title {
5570
+ font-size: 1rem;
5571
+ font-weight: bold;
5572
+ color: #f2295b;
5573
+ margin-bottom: 0;
5574
+ }
5575
+
5576
+ .ekit-admin-help {
5577
+ color: #0073aa;
5578
+ font-weight: bold;
5579
+ font-size: 0.75rem;
5580
+ }
5581
+ .ekit-admin-help > i {
5582
+ padding-right: 5px;
5583
+ }
5584
+
5585
+ .ekit-admin-input-switch {
5586
+ position: relative;
5587
+ display: block;
5588
+ -webkit-user-select: none;
5589
+ -moz-user-select: none;
5590
+ -ms-user-select: none;
5591
+ user-select: none;
5592
+ line-height: 1;
5593
+ -ms-flex-item-align: end;
5594
+ align-self: flex-end;
5595
+ }
5596
+ .ekit-admin-input-switch .ekit-admin-control-input:checked ~ .ekit-admin-control-label .ekit-admin-control-label-switch::after {
5597
+ left: 30px;
5598
+ background-color: #f2295b;
5599
+ color: #f2295b;
5600
+ }
5601
+ .ekit-admin-input-switch .ekit-admin-control-input:checked ~ .ekit-admin-control-label .ekit-admin-control-label-switch::before {
5602
+ border-color: #f2295b;
5603
+ text-indent: 52px;
5604
+ }
5605
+ .ekit-admin-input-switch .ekit-admin-control-label {
5606
+ cursor: pointer;
5607
+ margin-bottom: 0px;
5608
+ display: -webkit-box;
5609
+ display: -ms-flexbox;
5610
+ display: flex;
5611
+ -webkit-box-align: center;
5612
+ -ms-flex-align: center;
5613
+ align-items: center;
5614
+ }
5615
+ .ekit-admin-input-switch .ekit-admin-control-label-switch {
5616
+ position: relative;
5617
+ overflow: hidden;
5618
+ width: 52px;
5619
+ height: 26px;
5620
+ display: inline-block;
5621
+ margin-left: 10px;
5622
+ }
5623
+ .ekit-admin-input-switch .ekit-admin-control-label-switch::before, .ekit-admin-input-switch .ekit-admin-control-label-switch::after {
5624
+ position: absolute;
5625
+ -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5626
+ -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5627
+ transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5628
+ font-weight: 700;
5629
+ font-size: 0.6875rem;
5630
+ display: -webkit-box;
5631
+ display: -ms-flexbox;
5632
+ display: flex;
5633
+ -webkit-box-align: center;
5634
+ -ms-flex-align: center;
5635
+ align-items: center;
5636
+ -webkit-box-sizing: border-box;
5637
+ box-sizing: border-box;
5638
+ }
5639
+ .ekit-admin-input-switch .ekit-admin-control-label-switch::before {
5640
+ content: attr(data-inactive);
5641
+ top: 0;
5642
+ left: 0;
5643
+ width: 100%;
5644
+ height: 100%;
5645
+ background-color: #FFFFFF;
5646
+ border: #444444 solid 1px;
5647
+ border-radius: 26px;
5648
+ text-indent: 24px;
5649
+ }
5650
+ .ekit-admin-input-switch .ekit-admin-control-label-switch::after {
5651
+ position: absolute;
5652
+ top: 4px;
5653
+ left: 4px;
5654
+ display: block;
5655
+ content: attr(data-active);
5656
+ width: 18px;
5657
+ height: 18px;
5658
+ background-color: #444444;
5659
+ border-radius: 100%;
5660
+ -webkit-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5661
+ -o-transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5662
+ transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
5663
+ text-indent: -22px;
5664
+ display: -webkit-box;
5665
+ display: -ms-flexbox;
5666
+ display: flex;
5667
+ }
5668
+ .ekit-admin-input-switch .ekit-admin-control-input {
5669
+ opacity: 0;
5670
+ z-index: -1;
5671
+ position: absolute;
5672
+ }
5673
+
5674
+ .ekit-admin-section-header {
5675
+ display: -webkit-box;
5676
+ display: -ms-flexbox;
5677
+ display: flex;
5678
+ -webkit-box-pack: justify;
5679
+ -ms-flex-pack: justify;
5680
+ justify-content: space-between;
5681
+ position: relative;
5682
+ border-bottom: 1px solid #E0E4E9;
5683
+ padding-bottom: 24px;
5684
+ margin-bottom: 48px;
5685
+ }
5686
+ .ekit-admin-section-header::before {
5687
+ content: "";
5688
+ position: absolute;
5689
+ display: block;
5690
+ width: 48px;
5691
+ height: 2px;
5692
+ bottom: -1px;
5693
+ left: 0;
5694
+ background: #f2295b;
5695
+ }
5696
+
5697
+ .ekit-admin-section-heaer-title {
5698
+ position: relative;
5699
+ font-size: 1.625rem;
5700
+ font-weight: 600;
5701
+ margin-bottom: 0;
5702
+ line-height: 1;
5703
+ }
5704
+ .ekit-admin-section-heaer-title::before {
5705
+ content: "";
5706
+ font-family: "FontAwesome";
5707
+ display: inline-block;
5708
+ width: 48px;
5709
+ height: 48px;
5710
+ line-height: 48px;
5711
+ margin-right: 24px;
5712
+ background-color: #fee9ee;
5713
+ color: #f2295b;
5714
+ text-align: center;
5715
+ border-radius: 3px;
5716
+ vertical-align: middle;
5717
+ font-size: 20px;
5718
+ }
5719
+
5720
+ .ekit-admin-fields-container {
5721
+ font-size: 0.875rem;
5722
+ color: #666;
5723
+ }
5724
+
5725
+ .custom-control .custom-control-label {
5726
+ -webkit-user-select: none;
5727
+ -moz-user-select: none;
5728
+ -ms-user-select: none;
5729
+ user-select: none;
5730
+ cursor: pointer;
5731
+ color: #121116;
5732
+ font-size: 0.875rem;
5733
+ }
5734
+ .custom-control .custom-control-input:checked ~ .custom-control-label::before {
5735
+ border-color: #19073B;
5736
+ background-color: #19073B;
5737
+ -webkit-transform: scale(1);
5738
+ -ms-transform: scale(1);
5739
+ transform: scale(1);
5740
+ }
5741
+ .custom-control .custom-control-input:checked ~ .custom-control-label::after {
5742
+ -webkit-transform: scale(1);
5743
+ -ms-transform: scale(1);
5744
+ transform: scale(1);
5745
+ }
5746
+ .custom-control .custom-control-input .custom-control-label::after, .custom-control .custom-control-input .custom-control-label::before {
5747
+ -webkit-transform: scale(0);
5748
+ -ms-transform: scale(0);
5749
+ transform: scale(0);
5750
+ -webkit-transition: all 0.4s ease;
5751
+ -o-transition: all 0.4s ease;
5752
+ transition: all 0.4s ease;
5753
+ }
5754
+ .custom-control .custom-control-input .custom-control-label::after {
5755
+ background-repeat: no-repeat;
5756
+ background-position: center center;
5757
+ background-size: 50% 50%;
5758
+ }
5759
+
5760
+ .ekit-admin-fields-container-fieldset {
5761
+ margin-top: 16px;
5762
+ }
5763
+
5764
+ .attr-nav-tabs {
5765
+ margin-top: 0px;
5766
+ }
5767
+ .attr-nav-tabs > li {
5768
+ width: 100%;
5769
+ }
5770
+ .attr-nav-tabs > li > a {
5771
+ margin-right: 0px;
5772
+ }
5773
+
5774
+ /*
5775
+ Author: XpeedStudio
5776
+ Author URI: http://themeforest.net/user/XpeedStudio/portfolio
5777
+ */
5778
+ @media (max-width: 320px) {
5779
+ :root {
5780
+ font-size: 13px;
5781
+ }
5782
+ }
5783
+ @media (max-width: 480px) {
5784
+ :root {
5785
+ font-size: 14px;
5786
+ }
5787
+ }
5788
+ @media (max-width: 991px) {
5789
+ :root {
5790
+ font-size: 13px;
5791
+ }
5792
+
5793
+ .section-padding {
5794
+ padding: 75px 0;
5795
+ }
5796
+
5797
+ .section-padding-medium {
5798
+ padding: 60px 0;
5799
+ }
5800
+
5801
+ .section-padding-medium-bottom {
5802
+ padding-bottom: 60px;
5803
+ }
5804
+
5805
+ .section-padding-medium-top {
5806
+ padding-top: 60px;
5807
+ }
5808
+ }
5809
+ @media (min-width: 992px) {
5810
+ .ekit-admin-right-content {
5811
+ width: 70%;
5812
+ }
5813
+ }
5814
+ @media (min-width: 992px) and (max-width: 1199px) {
5815
+ .ekit-admin-right-content {
5816
+ width: 100%;
5817
+ padding: 0;
5818
+ }
5819
+
5820
+ .ekit-admin-support-section .ekit-admin-right-content,
5821
+ .ekit-admin-feature-request-section .ekit-admin-right-content {
5822
+ padding-left: 20px;
5823
+ }
5824
+
5825
+ #v-elementskit-userdata .ekit-admin-fields-container {
5826
+ max-width: 75%;
5827
+ }
5828
+
5829
+ .ekit-admin-rate-now-section .ekit-admin-right-content {
5830
+ padding-bottom: 20px;
5831
+ }
5832
+
5833
+ .ekit-admin-fields-container-description {
5834
+ width: 100%;
5835
+ }
5836
+ }
5837
+ @media (max-width: 991px) {
5838
+ .ekit-admin-fields-container-description {
5839
+ width: 100%;
5840
+ }
5841
+
5842
+ .ekit-admin-right-content {
5843
+ width: 100%;
5844
+ padding: 0;
5845
+ }
5846
+
5847
+ .ekit-admin-support-section .ekit-admin-right-content,
5848
+ .ekit-admin-feature-request-section .ekit-admin-right-content {
5849
+ padding-left: 20px;
5850
+ }
5851
+
5852
+ #v-elementskit-userdata .ekit-admin-fields-container {
5853
+ max-width: 75%;
5854
+ }
5855
+ }
5856
+ @media (max-width: 480px) {
5857
+ .ekti-admin-video-tutorial-iframe iframe {
5858
+ max-width: 300px;
5859
+ height: auto;
5860
+ }
5861
+
5862
+ .ekit-admin-video-tutorial-list a h2 {
5863
+ font-size: 16px;
5864
+ }
5865
+
5866
+ .ekit_accordion_card:not(:last-child) {
5867
+ margin-bottom: 15px;
5868
+ }
5869
+
5870
+ .ekit_accordion_card .attr-btn {
5871
+ padding: 16px;
5872
+ font-size: 12px;
5873
+ padding-left: 20px;
5874
+ }
5875
+
5876
+ .ekit-admin-right-content--link {
5877
+ font-size: 12px;
5878
+ padding: 10px 15px;
5879
+ }
5880
+ .ekit-admin-right-content--heading h2 {
5881
+ font-size: 20px;
5882
+ }
5883
+ .ekit-admin-right-content--heading__sub-title {
5884
+ font-size: 50px;
5885
+ }
5886
+ .ekit-admin-right-content p {
5887
+ font-size: 16px;
5888
+ line-height: 25px;
5889
+ }
5890
+
5891
+ .ekit-admin-right-content--form input {
5892
+ height: 50px;
5893
+ padding: 0 25px;
5894
+ }
5895
+ .ekit-admin-right-content--form button {
5896
+ width: 45px;
5897
+ height: 45px;
5898
+ }
5899
+
5900
+ .ekit-admin-section-heaer-title {
5901
+ margin-bottom: 10px;
5902
+ font-size: 14px;
5903
+ }
5904
+
5905
+ .ekit-admin-input-switch .ekit-admin-settings-form-submit {
5906
+ font-size: 12px;
5907
+ padding: 9px 18px;
5908
+ }
5909
+
5910
+ .ekit-admin-section-header {
5911
+ font-size: 15px;
5912
+ }
5913
+ .ekit-admin-section-header .ekit-admin-input-switch {
5914
+ -ms-flex-item-align: center;
5915
+ -ms-grid-row-align: center;
5916
+ align-self: center;
5917
+ }
5918
+
5919
+ .ekit_accordion_card .attr-panel-body {
5920
+ padding: 20px;
5921
+ }
5922
+
5923
+ .ekit-admin-fields-container-description {
5924
+ font-size: 15px;
5925
+ line-height: 22px;
5926
+ }
5927
+
5928
+ #v-elementskit-userdata .ekit-admin-fields-container {
5929
+ max-width: 100%;
5930
+ }
5931
+ #v-elementskit-userdata:before {
5932
+ background-size: contain;
5933
+ width: 100%;
5934
+ height: 100%;
5935
+ }
5936
+
5937
+ .ekit-admin-section {
5938
+ padding: 30px 0;
5939
+ }
5940
+
5941
+ .ekit-admin-video-tutorial-list {
5942
+ display: block;
5943
+ }
5944
+ .ekit-admin-video-tutorial-list .ekit-admin-video-tutorial-item {
5945
+ margin-bottom: 15px;
5946
+ }
5947
+ .ekit-admin-video-tutorial-list .ekit-admin-video-tutorial-item:last-child {
5948
+ margin-bottom: 0;
5949
+ }
5950
+
5951
+ .ekit-admin-dual-layout {
5952
+ display: block;
5953
+ }
5954
+ .ekit-admin-dual-layout.ekit-admin-subscribed-section .ekit-admin-left-thumb, .ekit-admin-dual-layout.ekit-admin-rate-now-section .ekit-admin-left-thumb {
5955
+ margin: 0;
5956
+ margin-top: 50px;
5957
+ }
5958
+ .ekit-admin-dual-layout .ekit-admin-left-thumb {
5959
+ margin-bottom: 50px;
5960
+ }
5961
+ }
libs/framework/assets/css/frontend-style.min.css DELETED
@@ -1 +0,0 @@
1
- .met_d--block{display:block}.met_d--none{display:none}.met_d--flex{display:-webkit-box;display:-ms-flexbox;display:flex}.before\:last\:met_d--none:last-child:before{display:none}.after\:first\:met_d--none:first-child:after{display:none}.after\:active\:met_d--none.active:after{display:none}.met_w--12{width:12px}.met_w--16{width:16px}.met_w--20{width:20px}.met_w--24{width:24px}.met_w--48{width:48px}.before\:met_w--4:before{width:4px}.before\:met_w--16:before{width:16px}.before\:met_w--19:before{width:19px}.before\:met_w--48:before{width:48px}.active\:before\:met_w--18.active:before{width:18px}.after\:met_w--1:after{width:1px}.met_h--12{height:12px}.met_h--16{height:16px}.met_h--20{height:20px}.met_h--24{height:24px}.met_h--48{height:48px}.before\:met_h--4:before{height:4px}.before\:met_h--16:before{height:16px}.before\:met_h--19:before{height:19px}.before\:met_h--48:before{height:48px}.active\:before\:met_h--18.active:before{height:18px}.after\:met_h--1:after{height:1px}.after\:met_content:after,.before\:met_content:before{content:" "}.met_pos--fixed{position:fixed}.met_pos--relative{position:relative}.met_pos--absolute{position:absolute}.before\:met_pos--absolute:before{position:absolute}.after\:met_pos--absolute:after{position:absolute}.met_top--0{top:0}.met_top--15{top:15px}.met_top--20{top:20px}.met_top--50p{top:50%}.met_top--100p{top:100%}.before\:met_top--0:before{top:0}.before\:met_top--5:before{top:5px}.before\:met_top--12:before{top:12px}.before\:active\:met_top--13.active:before{top:13px}.after\:met_top--m1:after{top:-1px}.after\:met_top--5:after{top:5px}.met_bottom--0{bottom:0}.met_bottom--20{bottom:20px}.met_bottom--100p{bottom:100%}.before\:met_bottom--0:before{bottom:0}.met_left--0{left:0}.met_left--1{left:1px}.met_left--20{left:20px}.met_left--50p{left:50%}.met_left--100p{left:100%}.before\:met_left--0:before{left:0}.before\:met_left--5:before{left:5px}.before\:met_left--12:before{left:12px}.before\:active\:met_left--13.active:before{left:13px}.after\:met_left--m1:after{left:-1px}.after\:met_left--5:after{left:5px}.met_right--0{right:0}.met_right--20{right:20px}.met_right--100p{right:100%}.met_mx--m40{margin-left:-40px;margin-right:-40px}.met_mx--m28{margin-left:-28px;margin-right:-28px}.met_mx--12{margin-left:12px;margin-right:12px}.met_mx--20{margin-left:20px;margin-right:20px}.met_mx--24{margin-left:24px;margin-right:24px}.met_mx--36{margin-left:36px;margin-right:36px}.met_my--m40{margin-top:-40px;margin-bottom:-40px}.met_my--m28{margin-top:-28px;margin-bottom:-28px}.met_my--12{margin-top:12px;margin-bottom:12px}.met_my--20{margin-top:20px;margin-bottom:20px}.met_my--24{margin-top:24px;margin-bottom:24px}.met_my--36{margin-top:36px;margin-bottom:36px}.met_m--0{margin:0}.met_ml--1{margin-left:1px}.met_ml--6{margin-left:6px}.met_ml--15{margin-left:15px}.met_ml--20{margin-left:20px}.met_ml--21{margin-left:21px}.met_ml--35{margin-left:35px}.met_mr--1{margin-right:1px}.met_mr--10{margin-right:10px}.met_mr--15{margin-right:15px}.met_mr--20{margin-right:20px}.met_mb--0{margin-bottom:0}.met_mb--0i{margin-bottom:0!important}.met_mb--20{margin-bottom:20px}.met_not_last_mr--10:not(:last-child){margin-right:10px}.met_not_last_mr--15:not(:last-child){margin-right:15px}.met_not_last_mr--20:not(:last-child){margin-right:20px}.met_not_last_mb--10:not(:last-child){margin-bottom:10px}.met_not_last_mb--15:not(:last-child){margin-bottom:15px}.met_not_last_mb--20:not(:last-child){margin-bottom:20px}.met_p--0{padding:0}.met_px--8{padding-left:8px;padding-right:8px}.met_py--5{padding-top:5px;padding-bottom:5px}.met_pt--10{padding-top:10px}.met_pl--10{padding-left:10px}.met_pr--10{padding-right:10px}.met_pb--10{padding-bottom:10px}.met_color--white{color:#fff}.active>.active\:met_bgc--nonei{background-color:transparent!important}.active .active\:_\:met_bgc--nonei{background-color:transparent!important}.met_bd--2{border:solid 2px}.met_bd--6{border:solid 6px}.met_bdt--2{border-top:solid 2px}.met_bdt--4{border-top:solid 4px}.met_bdt--6{border-top:solid 6px}.met_bdl--2{border-left:solid 2px}.met_bdl--4{border-left:solid 4px}.met_bdl--6{border-left:solid 6px}.before\:met_bdt--2:before{border-top:solid 2px}.before\:met_bdl--2:before{border-left:solid 2px}.after\:met_bdt--2:after{border-top:solid 2px}.after\:met_bdl--2:after{border-left:solid 2px}.active>.active\:met_bd--1{border-style:solid;border-width:1px}.active .active\:_\:met_bd--1{border-style:solid;border-width:1px}.met_bdc--none{border-color:transparent}.met_bdt_color--current{border-top-color:currentColor}.met_bdb_color--current{border-bottom-color:currentColor}.met_bdl_color--current{border-left-color:currentColor}.met_bdr_color--current{border-right-color:currentColor}.met_radius--4{border-radius:4px}.met_radius--circle{border-radius:50%}.before\:met_radius--circle:before{border-radius:50%}.met_shadow_inset--6{-webkit-box-shadow:inset 0 0 0 6px currentColor;box-shadow:inset 0 0 0 6px currentColor}.active>.active\:met_shadow_inset--1{-webkit-box-shadow:inset 0 0 0 1px currentColor;box-shadow:inset 0 0 0 1px currentColor}.active>.active\:met_shadow_inset--8{-webkit-box-shadow:inset 0 0 0 8px currentColor;box-shadow:inset 0 0 0 8px currentColor}.active .active\:_\:met_shadow_inset--1{-webkit-box-shadow:inset 0 0 0 1px currentColor;box-shadow:inset 0 0 0 1px currentColor}.met_fs--14{font-size:14px}.met_lh--0{line-height:0}.met_lh--16{line-height:16px}.met_list--none{list-style:none}.met_text--nowrap{white-space:nowrap}.met_opacity--0{opacity:0}.met_opacity--8{opacity:0.08}.met_opacity--30{opacity:0.3}.met_opacity--70{opacity:0.7}.hover\:met_opacity--60:hover{opacity:0.6}.hover\:met_opacity--100:hover{opacity:1}a:hover>.a\:hover\:met_opacity--60{opacity:0.6}a:hover>.a\:hover\:met_opacity--100{opacity:1}.before\:met_opacity--30:before{opacity:0.3}.after\:met_opacity--30:after{opacity:0.3}.active>.active\:met_opacity--0{opacity:0}.active>.active\:met_opacity--100{opacity:1}.active .active\:_\:met_opacity--0{opacity:0}.active .active\:_\:met_opacity--100{opacity:100}.met_transition--300ms{-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.before\:met_transition--300ms:before{-webkit-transition:all 300ms;-o-transition:all 300ms;transition:all 300ms}.met_translateTop--m50p{-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%)}.met_translateLeft--m50p{-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.met_scale--0{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0)}.hover\:met_scaleX--200:hover{-webkit-transform:scaleX(2);-ms-transform:scaleX(2);transform:scaleX(2)}.hover\:met_scaleY--200:hover{-webkit-transform:scaleY(2);-ms-transform:scaleY(2);transform:scaleY(2)}a:hover>.a:hover\:met_scaleX--200:hover{-webkit-transform:scaleX(2);-ms-transform:scaleX(2);transform:scaleX(2)}a:hover>.a:hover\:met_scaleY--200:hover{-webkit-transform:scaleY(2);-ms-transform:scaleY(2);transform:scaleY(2)}.active>.active\:met_scale--150{-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.active>.active\:met_scaleX--20{-webkit-transform:scaleX(0.2);-ms-transform:scaleX(0.2);transform:scaleX(0.2)}.active>.active\:met_scaleX--200{-webkit-transform:scaleX(2);-ms-transform:scaleX(2);transform:scaleX(2)}.active>.active\:met_scaleY--20{-webkit-transform:scaleY(0.2);-ms-transform:scaleY(0.2);transform:scaleY(0.2)}.active>.active\:met_scaleY--200{-webkit-transform:scaleY(2);-ms-transform:scaleY(2);transform:scaleY(2)}.active .active\:_\:met_scale--40{-webkit-transform:scale(0.4);-ms-transform:scale(0.4);transform:scale(0.4)}.active .active\:_\:met_scale--150{-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)}.active .active\:_\:met_scaleX--20{-webkit-transform:scaleX(0.2);-ms-transform:scaleX(0.2);transform:scaleX(0.2)}.active .active\:_\:met_scaleX--100{-webkit-transform:scaleX(1);-ms-transform:scaleX(1);transform:scaleX(1)}.active .active\:_\:met_scaleX--200{-webkit-transform:scaleX(2);-ms-transform:scaleX(2);transform:scaleX(2)}.active .active\:_\:met_scaleY--20{-webkit-transform:scaleY(0.2);-ms-transform:scaleY(0.2);transform:scaleY(0.2)}.active .active\:_\:met_scaleY--100{-webkit-transform:scaleY(1);-ms-transform:scaleY(1);transform:scaleY(1)}.active .active\:_\:met_scaleY--200{-webkit-transform:scaleY(2);-ms-transform:scaleY(2);transform:scaleY(2)}.met_scale--top{-webkit-transform-origin:top;-ms-transf