WooCommerce Wishlist Plugin - Version 1.1.2

Version Description

Release Date - 23 November 2016

  • Added minified versions of public CSS
  • Fixed issue with sharing buttons for non-logged users
  • Fixed issue with pagination URLs for guests
  • Removed Genericicons fonts
Download this release

Release Info

Developer templateinvaders
Plugin Icon 128x128 WooCommerce Wishlist Plugin
Version 1.1.2
Comparing to
See all releases

Code changes from version 1.1.1 to 1.1.2

admin/base.helper.php CHANGED
@@ -1,115 +1,115 @@
1
- <?php
2
- /**
3
- * Basic admin helper class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin\Helper
7
- */
8
-
9
- // If this file is called directly, abort.
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- die;
12
- }
13
-
14
- /**
15
- * Basic admin helper class
16
- */
17
- abstract class TInvWL_Admin_Base {
18
-
19
- /**
20
- * Plugin name
21
- *
22
- * @var string
23
- */
24
- public $_n;
25
- /**
26
- * Plugin version
27
- *
28
- * @var string
29
- */
30
- public $_v;
31
-
32
- /**
33
- * Constructor
34
- *
35
- * @param string $plugin_name Plugin name.
36
- * @param string $version Plugin version.
37
- */
38
- function __construct( $plugin_name, $version ) {
39
- $this->_n = $plugin_name;
40
- $this->_v = $version;
41
- $this->load_function();
42
- }
43
-
44
- /**
45
- * Load function
46
- */
47
- function load_function() {
48
-
49
- }
50
-
51
- /**
52
- * Formated admin url
53
- *
54
- * @param string $page Page title.
55
- * @param string $cat Category title.
56
- * @param array $arg Arguments array.
57
- * @return string
58
- */
59
- public function admin_url( $page, $cat = '', $arg = array() ) {
60
- $protocol = is_ssl() ? 'https' : 'http';
61
- $glue = '-';
62
- $params = array(
63
- 'page' => implode( $glue, array_filter( array( $this->_n, $page ) ) ),
64
- 'cat' => $cat,
65
- );
66
- if ( is_array( $arg ) ) {
67
- $params = array_merge( $params, $arg );
68
- }
69
- $params = array_filter( $params );
70
- $params = http_build_query( $params );
71
- if ( is_string( $arg ) ) {
72
- $params = $params . '&' . $arg;
73
- }
74
-
75
- return admin_url( sprintf( 'admin.php?%s', $params ), $protocol );
76
- }
77
-
78
- /**
79
- * Basic print admin page. By attributes page and cat, determined sub function for print
80
- *
81
- * @return boolean
82
- */
83
- public function _print_() {
84
- $default = 'general';
85
- $params = filter_input_array( INPUT_GET, array(
86
- 'page' => FILTER_SANITIZE_STRING,
87
- 'cat' => FILTER_SANITIZE_STRING,
88
- 'id' => FILTER_VALIDATE_INT,
89
- ) );
90
- extract( $params ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.extract
91
-
92
- $glue = '-';
93
- $page = explode( $glue, $page );
94
- $page_last = array_shift( $page );
95
- if ( $this->_n != $page_last ) { // WPCS: loose comparison ok.
96
- return false;
97
- }
98
-
99
- $cat = empty( $cat ) ? $default : $cat;
100
- $glue = '_';
101
- array_push( $page, $cat );
102
- $cat = implode( $glue, $page );
103
- $function_name = __FUNCTION__ . $cat;
104
-
105
- if ( method_exists( $this, $function_name ) && __FUNCTION__ != $function_name ) { // WPCS: loose comparison ok.
106
- return $this->$function_name( $id );
107
- } else {
108
- $function_name = __FUNCTION__ . $default;
109
- if ( method_exists( $this, $function_name ) ) {
110
- return $this->$function_name( $id, $cat );
111
- }
112
- }
113
- return false;
114
- }
115
- }
1
+ <?php
2
+ /**
3
+ * Basic admin helper class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin\Helper
7
+ */
8
+
9
+ // If this file is called directly, abort.
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ die;
12
+ }
13
+
14
+ /**
15
+ * Basic admin helper class
16
+ */
17
+ abstract class TInvWL_Admin_Base {
18
+
19
+ /**
20
+ * Plugin name
21
+ *
22
+ * @var string
23
+ */
24
+ public $_n;
25
+ /**
26
+ * Plugin version
27
+ *
28
+ * @var string
29
+ */
30
+ public $_v;
31
+
32
+ /**
33
+ * Constructor
34
+ *
35
+ * @param string $plugin_name Plugin name.
36
+ * @param string $version Plugin version.
37
+ */
38
+ function __construct( $plugin_name, $version ) {
39
+ $this->_n = $plugin_name;
40
+ $this->_v = $version;
41
+ $this->load_function();
42
+ }
43
+
44
+ /**
45
+ * Load function
46
+ */
47
+ function load_function() {
48
+
49
+ }
50
+
51
+ /**
52
+ * Formated admin url
53
+ *
54
+ * @param string $page Page title.
55
+ * @param string $cat Category title.
56
+ * @param array $arg Arguments array.
57
+ * @return string
58
+ */
59
+ public function admin_url( $page, $cat = '', $arg = array() ) {
60
+ $protocol = is_ssl() ? 'https' : 'http';
61
+ $glue = '-';
62
+ $params = array(
63
+ 'page' => implode( $glue, array_filter( array( $this->_n, $page ) ) ),
64
+ 'cat' => $cat,
65
+ );
66
+ if ( is_array( $arg ) ) {
67
+ $params = array_merge( $params, $arg );
68
+ }
69
+ $params = array_filter( $params );
70
+ $params = http_build_query( $params );
71
+ if ( is_string( $arg ) ) {
72
+ $params = $params . '&' . $arg;
73
+ }
74
+
75
+ return admin_url( sprintf( 'admin.php?%s', $params ), $protocol );
76
+ }
77
+
78
+ /**
79
+ * Basic print admin page. By attributes page and cat, determined sub function for print
80
+ *
81
+ * @return boolean
82
+ */
83
+ public function _print_() {
84
+ $default = 'general';
85
+ $params = filter_input_array( INPUT_GET, array(
86
+ 'page' => FILTER_SANITIZE_STRING,
87
+ 'cat' => FILTER_SANITIZE_STRING,
88
+ 'id' => FILTER_VALIDATE_INT,
89
+ ) );
90
+ extract( $params ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.extract
91
+
92
+ $glue = '-';
93
+ $page = explode( $glue, $page );
94
+ $page_last = array_shift( $page );
95
+ if ( $this->_n != $page_last ) { // WPCS: loose comparison ok.
96
+ return false;
97
+ }
98
+
99
+ $cat = empty( $cat ) ? $default : $cat;
100
+ $glue = '_';
101
+ array_push( $page, $cat );
102
+ $cat = implode( $glue, $page );
103
+ $function_name = __FUNCTION__ . $cat;
104
+
105
+ if ( method_exists( $this, $function_name ) && __FUNCTION__ != $function_name ) { // WPCS: loose comparison ok.
106
+ return $this->$function_name( $id );
107
+ } else {
108
+ $function_name = __FUNCTION__ . $default;
109
+ if ( method_exists( $this, $function_name ) ) {
110
+ return $this->$function_name( $id, $cat );
111
+ }
112
+ }
113
+ return false;
114
+ }
115
+ }
admin/basesection.helper.php CHANGED
@@ -1,209 +1,209 @@
1
- <?php
2
- /**
3
- * Basic admin sectin helper class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin\Helper
7
- */
8
-
9
- // If this file is called directly, abort.
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- die;
12
- }
13
-
14
- /**
15
- * Basic admin sectin helper class
16
- */
17
- abstract class TInvWL_Admin_BaseSection extends TInvWL_Admin_Base {
18
-
19
- /**
20
- * Priority for admin menu
21
- *
22
- * @var integer
23
- */
24
- public $priority = 10;
25
-
26
- /**
27
- * Constructor
28
- *
29
- * @param string $plugin_name Plugin name.
30
- * @param string $version Plugin version.
31
- */
32
- function __construct( $plugin_name, $version ) {
33
- $this->_n = $plugin_name;
34
- $this->_v = $version;
35
- $menu = $this->menu();
36
- if ( ! empty( $menu ) ) {
37
- add_action( $this->_n . '_admin_menu', array( $this, 'adminmenu' ), $this->priority );
38
- }
39
- $this->load_function();
40
- }
41
-
42
- /**
43
- * Add item to admin menu
44
- *
45
- * @param array $data Menu.
46
- * @return array
47
- */
48
- function adminmenu( $data ) {
49
- $data[] = $this->menu();
50
- return $data;
51
- }
52
-
53
- /**
54
- * Menu array
55
- */
56
- function menu() {
57
-
58
- }
59
-
60
- /**
61
- * Load function. Default load form for sections
62
- */
63
- function load_function() {
64
- $this->form();
65
- }
66
-
67
- /**
68
- * General print
69
- *
70
- * @param integer $id Id parameter.
71
- * @param string $cat Category parameter.
72
- */
73
- function _print_general( $id = 0, $cat = '' ) {
74
- $title = $this->menu();
75
- $slug = $title['slug'];
76
- $title = isset( $title['page_title'] ) ? $title['page_title'] : $title['title'];
77
- $data = array(
78
- '_header' => $title,
79
- );
80
- $method = $cat . '_data';
81
- if ( ! method_exists( $this, $method ) ) {
82
- $method = 'constructor_data';
83
- }
84
-
85
- $data = apply_filters( "{$this->_n}_{$cat}_data", $data );
86
- if ( method_exists( $this, $method ) ) {
87
- $sections = apply_filters( 'tinwl_prepare_admsections_' . $method, $this->$method() );
88
- $sections = apply_filters( 'tinwl_prepare_admsections', $sections );
89
- $view = new TInvWL_ViewSection( $this->_n, $this->_v );
90
- $view->load_data( $sections );
91
- $method = $cat . '_save';
92
- if ( ! method_exists( $this, $method ) ) {
93
- $method = 'constructor_save';
94
- }
95
- if ( method_exists( $this, $method ) ) {
96
- $this->$method( apply_filters( 'tinwl_prepare_admsections_' . $method, $view->post_form() ) );
97
- }
98
- $method = $cat . '_load';
99
- if ( ! method_exists( $this, $method ) ) {
100
- $method = 'constructor_load';
101
- }
102
- if ( method_exists( $this, $method ) ) {
103
- $view->load_value( apply_filters( 'tinwl_prepare_admsections_' . $method, $this->$method( $sections ) ) );
104
- }
105
- TInvWL_View::render( $view, $view->form_data( $data ) );
106
- } else {
107
- TInvWL_View::render( $slug, $data );
108
- }
109
- }
110
-
111
- /**
112
- * Method for default settings array
113
- *
114
- * @param array $sections Sections array.
115
- * @return array
116
- */
117
- function get_defaults( $sections ) {
118
- $defaults = array();
119
- if ( ! is_array( $sections ) ) {
120
- return $defaults;
121
- }
122
- $sections = apply_filters( 'tinwl_prepare_admsections', $sections );
123
- foreach ( $sections as $section ) {
124
- if ( array_key_exists( 'noform', $section ) && $section['noform'] ) {
125
- continue;
126
- }
127
- $fields = array();
128
- if ( array_key_exists( 'fields', $section ) ) {
129
- $fields = $section['fields'];
130
- } else {
131
- continue;
132
- }
133
- $id = array_key_exists( 'id', $section ) ? $section['id'] : '';
134
- if ( ! array_key_exists( $id, $defaults ) ) {
135
- $defaults[ $id ] = array();
136
- }
137
- foreach ( $fields as $field ) {
138
- $name = array_key_exists( 'name', $field ) ? $field['name'] : '';
139
- $std = array_key_exists( 'std', $field ) ? $field['std'] : '';
140
-
141
- $defaults[ $id ][ $name ] = $std;
142
- }
143
- if ( array_key_exists( '', $defaults[ $id ] ) ) {
144
- unset( $defaults[ $id ][''] );
145
- }
146
- }
147
- return $defaults;
148
- }
149
-
150
- /**
151
- * Form for section
152
- */
153
- function form() {
154
- add_filter( $this->_n . '_section_before', array( $this, 'start_form' ) );
155
- add_filter( $this->_n . '_section_after', array( $this, 'end_form' ) );
156
- }
157
-
158
- /**
159
- * Form start for section
160
- *
161
- * @param string $content Sections content.
162
- * @return string
163
- */
164
- function start_form( $content ) {
165
- $content .= '<form method="POST" autocomplete="off">';
166
- return $content;
167
- }
168
-
169
- /**
170
- * Form end for section
171
- *
172
- * @param string $content Sections content.
173
- * @return string
174
- */
175
- function end_form( $content ) {
176
- $content .= '</form>';
177
- return $content;
178
- }
179
-
180
- /**
181
- * Load value from database
182
- *
183
- * @param array $sections Sections array.
184
- * @return array
185
- */
186
- function constructor_load( $sections ) {
187
- $sections = $this->get_defaults( $sections );
188
- $sections = array_keys( $sections );
189
- $data = array();
190
- foreach ( $sections as $section ) {
191
- $data[ $section ] = tinv_get_option( $section );
192
- }
193
- return $data;
194
- }
195
-
196
- /**
197
- * Save value to database
198
- *
199
- * @param array $data Post section data.
200
- */
201
- function constructor_save( $data ) {
202
- if ( empty( $data ) || ! is_array( $data ) ) {
203
- return false;
204
- }
205
- foreach ( $data as $key => $value ) {
206
- tinv_update_option( $key, '', $value );
207
- }
208
- }
209
- }
1
+ <?php
2
+ /**
3
+ * Basic admin sectin helper class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin\Helper
7
+ */
8
+
9
+ // If this file is called directly, abort.
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ die;
12
+ }
13
+
14
+ /**
15
+ * Basic admin sectin helper class
16
+ */
17
+ abstract class TInvWL_Admin_BaseSection extends TInvWL_Admin_Base {
18
+
19
+ /**
20
+ * Priority for admin menu
21
+ *
22
+ * @var integer
23
+ */
24
+ public $priority = 10;
25
+
26
+ /**
27
+ * Constructor
28
+ *
29
+ * @param string $plugin_name Plugin name.
30
+ * @param string $version Plugin version.
31
+ */
32
+ function __construct( $plugin_name, $version ) {
33
+ $this->_n = $plugin_name;
34
+ $this->_v = $version;
35
+ $menu = $this->menu();
36
+ if ( ! empty( $menu ) ) {
37
+ add_action( $this->_n . '_admin_menu', array( $this, 'adminmenu' ), $this->priority );
38
+ }
39
+ $this->load_function();
40
+ }
41
+
42
+ /**
43
+ * Add item to admin menu
44
+ *
45
+ * @param array $data Menu.
46
+ * @return array
47
+ */
48
+ function adminmenu( $data ) {
49
+ $data[] = $this->menu();
50
+ return $data;
51
+ }
52
+
53
+ /**
54
+ * Menu array
55
+ */
56
+ function menu() {
57
+
58
+ }
59
+
60
+ /**
61
+ * Load function. Default load form for sections
62
+ */
63
+ function load_function() {
64
+ $this->form();
65
+ }
66
+
67
+ /**
68
+ * General print
69
+ *
70
+ * @param integer $id Id parameter.
71
+ * @param string $cat Category parameter.
72
+ */
73
+ function _print_general( $id = 0, $cat = '' ) {
74
+ $title = $this->menu();
75
+ $slug = $title['slug'];
76
+ $title = isset( $title['page_title'] ) ? $title['page_title'] : $title['title'];
77
+ $data = array(
78
+ '_header' => $title,
79
+ );
80
+ $method = $cat . '_data';
81
+ if ( ! method_exists( $this, $method ) ) {
82
+ $method = 'constructor_data';
83
+ }
84
+
85
+ $data = apply_filters( "{$this->_n}_{$cat}_data", $data );
86
+ if ( method_exists( $this, $method ) ) {
87
+ $sections = apply_filters( 'tinwl_prepare_admsections_' . $method, $this->$method() );
88
+ $sections = apply_filters( 'tinwl_prepare_admsections', $sections );
89
+ $view = new TInvWL_ViewSection( $this->_n, $this->_v );
90
+ $view->load_data( $sections );
91
+ $method = $cat . '_save';
92
+ if ( ! method_exists( $this, $method ) ) {
93
+ $method = 'constructor_save';
94
+ }
95
+ if ( method_exists( $this, $method ) ) {
96
+ $this->$method( apply_filters( 'tinwl_prepare_admsections_' . $method, $view->post_form() ) );
97
+ }
98
+ $method = $cat . '_load';
99
+ if ( ! method_exists( $this, $method ) ) {
100
+ $method = 'constructor_load';
101
+ }
102
+ if ( method_exists( $this, $method ) ) {
103
+ $view->load_value( apply_filters( 'tinwl_prepare_admsections_' . $method, $this->$method( $sections ) ) );
104
+ }
105
+ TInvWL_View::render( $view, $view->form_data( $data ) );
106
+ } else {
107
+ TInvWL_View::render( $slug, $data );
108
+ }
109
+ }
110
+
111
+ /**
112
+ * Method for default settings array
113
+ *
114
+ * @param array $sections Sections array.
115
+ * @return array
116
+ */
117
+ function get_defaults( $sections ) {
118
+ $defaults = array();
119
+ if ( ! is_array( $sections ) ) {
120
+ return $defaults;
121
+ }
122
+ $sections = apply_filters( 'tinwl_prepare_admsections', $sections );
123
+ foreach ( $sections as $section ) {
124
+ if ( array_key_exists( 'noform', $section ) && $section['noform'] ) {
125
+ continue;
126
+ }
127
+ $fields = array();
128
+ if ( array_key_exists( 'fields', $section ) ) {
129
+ $fields = $section['fields'];
130
+ } else {
131
+ continue;
132
+ }
133
+ $id = array_key_exists( 'id', $section ) ? $section['id'] : '';
134
+ if ( ! array_key_exists( $id, $defaults ) ) {
135
+ $defaults[ $id ] = array();
136
+ }
137
+ foreach ( $fields as $field ) {
138
+ $name = array_key_exists( 'name', $field ) ? $field['name'] : '';
139
+ $std = array_key_exists( 'std', $field ) ? $field['std'] : '';
140
+
141
+ $defaults[ $id ][ $name ] = $std;
142
+ }
143
+ if ( array_key_exists( '', $defaults[ $id ] ) ) {
144
+ unset( $defaults[ $id ][''] );
145
+ }
146
+ }
147
+ return $defaults;
148
+ }
149
+
150
+ /**
151
+ * Form for section
152
+ */
153
+ function form() {
154
+ add_filter( $this->_n . '_section_before', array( $this, 'start_form' ) );
155
+ add_filter( $this->_n . '_section_after', array( $this, 'end_form' ) );
156
+ }
157
+
158
+ /**
159
+ * Form start for section
160
+ *
161
+ * @param string $content Sections content.
162
+ * @return string
163
+ */
164
+ function start_form( $content ) {
165
+ $content .= '<form method="POST" autocomplete="off">';
166
+ return $content;
167
+ }
168
+
169
+ /**
170
+ * Form end for section
171
+ *
172
+ * @param string $content Sections content.
173
+ * @return string
174
+ */
175
+ function end_form( $content ) {
176
+ $content .= '</form>';
177
+ return $content;
178
+ }
179
+
180
+ /**
181
+ * Load value from database
182
+ *
183
+ * @param array $sections Sections array.
184
+ * @return array
185
+ */
186
+ function constructor_load( $sections ) {
187
+ $sections = $this->get_defaults( $sections );
188
+ $sections = array_keys( $sections );
189
+ $data = array();
190
+ foreach ( $sections as $section ) {
191
+ $data[ $section ] = tinv_get_option( $section );
192
+ }
193
+ return $data;
194
+ }
195
+
196
+ /**
197
+ * Save value to database
198
+ *
199
+ * @param array $data Post section data.
200
+ */
201
+ function constructor_save( $data ) {
202
+ if ( empty( $data ) || ! is_array( $data ) ) {
203
+ return false;
204
+ }
205
+ foreach ( $data as $key => $value ) {
206
+ tinv_update_option( $key, '', $value );
207
+ }
208
+ }
209
+ }
admin/basestyle.helper.php CHANGED
@@ -1,268 +1,268 @@
1
- <?php
2
- /**
3
- * Basic admin style helper class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin\Helper
7
- */
8
-
9
- // If this file is called directly, abort.
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- die;
12
- }
13
-
14
- /**
15
- * Basic admin style helper class
16
- */
17
- abstract class TInvWL_Admin_BaseStyle extends TInvWL_Admin_BaseSection {
18
-
19
- /**
20
- * Prepare sections for template attributes
21
- *
22
- * @return array
23
- */
24
- function prepare_sections() {
25
- $fields_data = array();
26
- $fields = $this->default_style_settings();
27
- $theme_file = TINVWL_PATH . implode( DIRECTORY_SEPARATOR, array( 'asset', 'css', 'theme.css' ) );
28
- if ( file_exists( $theme_file ) ) {
29
- $fields_data = $this->break_css( file_get_contents( $theme_file ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.file_get_contents
30
- }
31
- $_fields = $this->prepare_fields( $fields, $fields_data );
32
- foreach ( $_fields as &$_field ) {
33
- if ( ! array_key_exists( 'skin', $_field ) ) {
34
- switch ( $_field['type'] ) {
35
- case 'group':
36
- case 'groupHTML':
37
- $_field['skin'] = 'section-group-style';
38
- break;
39
- default:
40
- $_field['skin'] = 'section-field-style';
41
- break;
42
- }
43
- }
44
- }
45
- return $_fields;
46
- }
47
-
48
- /**
49
- * Create Scetions for this settings
50
- *
51
- * @return array
52
- */
53
- function constructor_data() {
54
- return array(
55
- array(
56
- 'id' => 'style',
57
- 'title' => __( 'Templates', 'ti-woocommerce-wishlist' ),
58
- 'desc' => '',
59
- 'show_names' => false,
60
- 'fields' => array(
61
- array(
62
- 'type' => 'checkboxonoff',
63
- 'name' => 'customstyle',
64
- 'text' => __( 'Use Theme style', 'ti-woocommerce-wishlist' ),
65
- 'std' => true,
66
- 'extra' => array( 'tiwl-hide' => '.tinvwl-style-options' ),
67
- 'class' => 'tinvwl-header-row',
68
- ),
69
- ),
70
- ),
71
- array(
72
- 'id' => 'style_options',
73
- 'title' => __( 'Template Options', 'ti-woocommerce-wishlist' ),
74
- 'show_names' => true,
75
- 'class' => 'tinvwl-style-options',
76
- 'fields' => $this->prepare_sections(),
77
- 'skin' => 'section-general',
78
- ),
79
- array(
80
- 'id' => 'style_plain',
81
- 'title' => __( 'Template Custom CSS', 'ti-woocommerce-wishlist' ),
82
- 'desc' => '',
83
- 'show_names' => false,
84
- 'fields' => array(
85
- array(
86
- 'type' => 'checkboxonoff',
87
- 'name' => 'allow',
88
- 'text' => __( 'Template Custom CSS', 'ti-woocommerce-wishlist' ),
89
- 'std' => true,
90
- 'extra' => array( 'tiwl-show' => '.tiwl-style-custom-allow' ),
91
- 'class' => 'tinvwl-header-row',
92
- ),
93
- array(
94
- 'type' => 'group',
95
- 'id' => 'custom',
96
- 'class' => 'tiwl-style-custom-allow',
97
- ),
98
- array(
99
- 'type' => 'textarea',
100
- 'name' => 'css',
101
- 'text' => '',
102
- 'std' => '',
103
- ),
104
- ),
105
- ),
106
- array(
107
- 'id' => 'save_buttons',
108
- 'class' => 'only-button',
109
- 'noform' => true,
110
- 'fields' => array(
111
- array(
112
- 'type' => 'button_submit',
113
- 'name' => 'setting_save',
114
- 'std' => '<span><i class="fa fa-check"></i></span>' . __( 'Save Settings', 'ti-woocommerce-wishlist' ),
115
- 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok' ),
116
- ),
117
- array(
118
- 'type' => 'button_submit_quick',
119
- 'name' => 'setting_save_quick',
120
- 'std' => '<span><i class="fa fa-floppy-o"></i></span>' . __( 'Save', 'ti-woocommerce-wishlist' ),
121
- ),
122
- ),
123
- ),
124
- );
125
- }
126
-
127
- /**
128
- * Basic function for default theme fields
129
- *
130
- * @return array
131
- */
132
- function default_style_settings() {
133
- return array();
134
- }
135
-
136
- /**
137
- * Prepare style fields for sections fields
138
- *
139
- * @param array $fields Array of fields list.
140
- * @param array $data Array of default values for fields.
141
- * @return array
142
- */
143
- function prepare_fields( $fields = array(), $data = array() ) {
144
- foreach ( $fields as &$field ) {
145
- if ( ! array_key_exists( 'selector', $field ) || ! array_key_exists( 'element', $field ) ) {
146
- continue;
147
- }
148
- $field['name'] = $this->create_selectorkey( $field['selector'], $field['element'] );
149
- if ( ! array_key_exists( 'std', $field ) ) {
150
- $field['std'] = '';
151
- }
152
- if ( isset( $data[ $field['selector'] ][ $field['element'] ] ) ) {
153
- $value = $data[ $field['selector'] ][ $field['element'] ];
154
- if ( array_key_exists( 'format', (array) $field ) ) {
155
- $pregx = preg_replace( '/(\[|\]|\\|\/|\^|\$|\%|\.|\||\?|\*|\+|\(|\)|\{|\})/', '\\\${1}', $field['format'] );
156
- $pregx = str_replace( '\{0\}', '(.*?)', $pregx );
157
- $pregx = '/^' . $pregx . '$/i';
158
- if ( preg_match( $pregx, $value, $matches ) ) {
159
- if ( isset( $matches[1] ) ) {
160
- $field['std'] = trim( $matches[1] );
161
- $field['std'] = preg_replace( '/^\.\.\//', TINVWL_URL . 'asset/', $field['std'] );
162
- }
163
- }
164
- } else {
165
- $field['std'] = $value;
166
- }
167
- }
168
- unset( $field['selector'], $field['element'], $field['format'] );
169
- }
170
- return $fields;
171
- }
172
-
173
- /**
174
- * Save value to database
175
- *
176
- * @param array $data Post section data.
177
- * @return boolean
178
- */
179
- function constructor_save( $data ) {
180
- if ( empty( $data ) || ! is_array( $data ) ) {
181
- return false;
182
- }
183
- if ( array_key_exists( 'style', (array) $data ) && array_key_exists( 'style_options', (array) $data ) ) {
184
- if ( false === $data['style']['customstyle'] ) {
185
- $data['style_options']['css'] = $this->convert_styles( $data['style_options'] );
186
- } else {
187
- $data['style_options'] = array();
188
- }
189
- delete_transient( $this->_n . '_dynamic_' );
190
- }
191
- if ( array_key_exists( 'style_plain', (array) $data ) ) {
192
- if ( ! $data['style_plain']['allow'] ) {
193
- $data['style_plain']['css'] = '';
194
- }
195
- if ( empty( $data['style_plain']['css'] ) ) {
196
- $data['style_plain']['allow'] = false;
197
- }
198
- }
199
- parent::constructor_save( $data );
200
- }
201
-
202
- /**
203
- * Generate fields name for form
204
- *
205
- * @param string $selector Selector for fields.
206
- * @param string $element Attribute name.
207
- * @return string
208
- */
209
- function create_selectorkey( $selector, $element ) {
210
- return md5( $selector . '||' . $element );
211
- }
212
-
213
- /**
214
- * Create array of css attributes
215
- *
216
- * @param string $css CSS content.
217
- * @return array
218
- */
219
- function break_css( $css ) {
220
- $results = array();
221
- $css = preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css );
222
- $css = preg_replace( '/(\r|\n|\t| {2,})/', '', $css );
223
- $css = str_replace( array( '{', '}' ), array( ' { ', ' } ' ), $css );
224
- preg_match_all( '/(.+?)\s*?\{\s*?(.+?)\s*?\}/', $css, $matches );
225
- foreach ( $matches[0] as $i => $original ) {
226
- foreach ( explode( ';', $matches[2][ $i ] ) as $attr ) {
227
- if ( strlen( trim( $attr ) ) > 0 ) {
228
- list($name, $value) = explode( ':', $attr );
229
- $results[ trim( $matches[1][ $i ] ) ][ trim( $name ) ] = trim( $value );
230
- }
231
- }
232
- }
233
- return $results;
234
- }
235
-
236
- /**
237
- * Convert settings to css
238
- *
239
- * @param array $style Array of style attributes.
240
- * @return string
241
- */
242
- function convert_styles( $style = array() ) {
243
- $fields = $this->default_style_settings();
244
- $styles = array();
245
- foreach ( $fields as $field ) {
246
- if ( ! array_key_exists( 'selector', $field ) || ! array_key_exists( 'element', $field ) ) {
247
- continue;
248
- }
249
- $key = $this->create_selectorkey( $field['selector'], $field['element'] );
250
- if ( array_key_exists( $key, (array) $style ) ) {
251
- $value = $style[ $key ];
252
- if ( array_key_exists( 'format', $field ) ) {
253
- $value = str_replace( '{0}', $value, $field['format'] );
254
- }
255
- $styles[ $field['selector'] ][ $field['element'] ] = $value;
256
- }
257
- }
258
- foreach ( $styles as $selector => &$elements ) {
259
- foreach ( $elements as $key => &$element ) {
260
- $element = sprintf( '%s:%s;', $key, $element );
261
- }
262
- $elements = implode( '', $elements );
263
- $elements = sprintf( '%s {%s}', $selector, $elements );
264
- }
265
- $styles = implode( ' ', $styles );
266
- return $styles;
267
- }
268
- }
1
+ <?php
2
+ /**
3
+ * Basic admin style helper class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin\Helper
7
+ */
8
+
9
+ // If this file is called directly, abort.
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ die;
12
+ }
13
+
14
+ /**
15
+ * Basic admin style helper class
16
+ */
17
+ abstract class TInvWL_Admin_BaseStyle extends TInvWL_Admin_BaseSection {
18
+
19
+ /**
20
+ * Prepare sections for template attributes
21
+ *
22
+ * @return array
23
+ */
24
+ function prepare_sections() {
25
+ $fields_data = array();
26
+ $fields = $this->default_style_settings();
27
+ $theme_file = TINVWL_PATH . implode( DIRECTORY_SEPARATOR, array( 'asset', 'css', 'theme.css' ) );
28
+ if ( file_exists( $theme_file ) ) {
29
+ $fields_data = $this->break_css( file_get_contents( $theme_file ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.file_get_contents
30
+ }
31
+ $_fields = $this->prepare_fields( $fields, $fields_data );
32
+ foreach ( $_fields as &$_field ) {
33
+ if ( ! array_key_exists( 'skin', $_field ) ) {
34
+ switch ( $_field['type'] ) {
35
+ case 'group':
36
+ case 'groupHTML':
37
+ $_field['skin'] = 'section-group-style';
38
+ break;
39
+ default:
40
+ $_field['skin'] = 'section-field-style';
41
+ break;
42
+ }
43
+ }
44
+ }
45
+ return $_fields;
46
+ }
47
+
48
+ /**
49
+ * Create Scetions for this settings
50
+ *
51
+ * @return array
52
+ */
53
+ function constructor_data() {
54
+ return array(
55
+ array(
56
+ 'id' => 'style',
57
+ 'title' => __( 'Templates', 'ti-woocommerce-wishlist' ),
58
+ 'desc' => '',
59
+ 'show_names' => false,
60
+ 'fields' => array(
61
+ array(
62
+ 'type' => 'checkboxonoff',
63
+ 'name' => 'customstyle',
64
+ 'text' => __( 'Use Theme style', 'ti-woocommerce-wishlist' ),
65
+ 'std' => true,
66
+ 'extra' => array( 'tiwl-hide' => '.tinvwl-style-options' ),
67
+ 'class' => 'tinvwl-header-row',
68
+ ),
69
+ ),
70
+ ),
71
+ array(
72
+ 'id' => 'style_options',
73
+ 'title' => __( 'Template Options', 'ti-woocommerce-wishlist' ),
74
+ 'show_names' => true,
75
+ 'class' => 'tinvwl-style-options',
76
+ 'fields' => $this->prepare_sections(),
77
+ 'skin' => 'section-general',
78
+ ),
79
+ array(
80
+ 'id' => 'style_plain',
81
+ 'title' => __( 'Template Custom CSS', 'ti-woocommerce-wishlist' ),
82
+ 'desc' => '',
83
+ 'show_names' => false,
84
+ 'fields' => array(
85
+ array(
86
+ 'type' => 'checkboxonoff',
87
+ 'name' => 'allow',
88
+ 'text' => __( 'Template Custom CSS', 'ti-woocommerce-wishlist' ),
89
+ 'std' => true,
90
+ 'extra' => array( 'tiwl-show' => '.tiwl-style-custom-allow' ),
91
+ 'class' => 'tinvwl-header-row',
92
+ ),
93
+ array(
94
+ 'type' => 'group',
95
+ 'id' => 'custom',
96
+ 'class' => 'tiwl-style-custom-allow',
97
+ ),
98
+ array(
99
+ 'type' => 'textarea',
100
+ 'name' => 'css',
101
+ 'text' => '',
102
+ 'std' => '',
103
+ ),
104
+ ),
105
+ ),
106
+ array(
107
+ 'id' => 'save_buttons',
108
+ 'class' => 'only-button',
109
+ 'noform' => true,
110
+ 'fields' => array(
111
+ array(
112
+ 'type' => 'button_submit',
113
+ 'name' => 'setting_save',
114
+ 'std' => '<span><i class="fa fa-check"></i></span>' . __( 'Save Settings', 'ti-woocommerce-wishlist' ),
115
+ 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok' ),
116
+ ),
117
+ array(
118
+ 'type' => 'button_submit_quick',
119
+ 'name' => 'setting_save_quick',
120
+ 'std' => '<span><i class="fa fa-floppy-o"></i></span>' . __( 'Save', 'ti-woocommerce-wishlist' ),
121
+ ),
122
+ ),
123
+ ),
124
+ );
125
+ }
126
+
127
+ /**
128
+ * Basic function for default theme fields
129
+ *
130
+ * @return array
131
+ */
132
+ function default_style_settings() {
133
+ return array();
134
+ }
135
+
136
+ /**
137
+ * Prepare style fields for sections fields
138
+ *
139
+ * @param array $fields Array of fields list.
140
+ * @param array $data Array of default values for fields.
141
+ * @return array
142
+ */
143
+ function prepare_fields( $fields = array(), $data = array() ) {
144
+ foreach ( $fields as &$field ) {
145
+ if ( ! array_key_exists( 'selector', $field ) || ! array_key_exists( 'element', $field ) ) {
146
+ continue;
147
+ }
148
+ $field['name'] = $this->create_selectorkey( $field['selector'], $field['element'] );
149
+ if ( ! array_key_exists( 'std', $field ) ) {
150
+ $field['std'] = '';
151
+ }
152
+ if ( isset( $data[ $field['selector'] ][ $field['element'] ] ) ) {
153
+ $value = $data[ $field['selector'] ][ $field['element'] ];
154
+ if ( array_key_exists( 'format', (array) $field ) ) {
155
+ $pregx = preg_replace( '/(\[|\]|\\|\/|\^|\$|\%|\.|\||\?|\*|\+|\(|\)|\{|\})/', '\\\${1}', $field['format'] );
156
+ $pregx = str_replace( '\{0\}', '(.*?)', $pregx );
157
+ $pregx = '/^' . $pregx . '$/i';
158
+ if ( preg_match( $pregx, $value, $matches ) ) {
159
+ if ( isset( $matches[1] ) ) {
160
+ $field['std'] = trim( $matches[1] );
161
+ $field['std'] = preg_replace( '/^\.\.\//', TINVWL_URL . 'asset/', $field['std'] );
162
+ }
163
+ }
164
+ } else {
165
+ $field['std'] = $value;
166
+ }
167
+ }
168
+ unset( $field['selector'], $field['element'], $field['format'] );
169
+ }
170
+ return $fields;
171
+ }
172
+
173
+ /**
174
+ * Save value to database
175
+ *
176
+ * @param array $data Post section data.
177
+ * @return boolean
178
+ */
179
+ function constructor_save( $data ) {
180
+ if ( empty( $data ) || ! is_array( $data ) ) {
181
+ return false;
182
+ }
183
+ if ( array_key_exists( 'style', (array) $data ) && array_key_exists( 'style_options', (array) $data ) ) {
184
+ if ( false === $data['style']['customstyle'] ) {
185
+ $data['style_options']['css'] = $this->convert_styles( $data['style_options'] );
186
+ } else {
187
+ $data['style_options'] = array();
188
+ }
189
+ delete_transient( $this->_n . '_dynamic_' );
190
+ }
191
+ if ( array_key_exists( 'style_plain', (array) $data ) ) {
192
+ if ( ! $data['style_plain']['allow'] ) {
193
+ $data['style_plain']['css'] = '';
194
+ }
195
+ if ( empty( $data['style_plain']['css'] ) ) {
196
+ $data['style_plain']['allow'] = false;
197
+ }
198
+ }
199
+ parent::constructor_save( $data );
200
+ }
201
+
202
+ /**
203
+ * Generate fields name for form
204
+ *
205
+ * @param string $selector Selector for fields.
206
+ * @param string $element Attribute name.
207
+ * @return string
208
+ */
209
+ function create_selectorkey( $selector, $element ) {
210
+ return md5( $selector . '||' . $element );
211
+ }
212
+
213
+ /**
214
+ * Create array of css attributes
215
+ *
216
+ * @param string $css CSS content.
217
+ * @return array
218
+ */
219
+ function break_css( $css ) {
220
+ $results = array();
221
+ $css = preg_replace( '!/\*[^*]*\*+([^/][^*]*\*+)*/!', '', $css );
222
+ $css = preg_replace( '/(\r|\n|\t| {2,})/', '', $css );
223
+ $css = str_replace( array( '{', '}' ), array( ' { ', ' } ' ), $css );
224
+ preg_match_all( '/(.+?)\s*?\{\s*?(.+?)\s*?\}/', $css, $matches );
225
+ foreach ( $matches[0] as $i => $original ) {
226
+ foreach ( explode( ';', $matches[2][ $i ] ) as $attr ) {
227
+ if ( strlen( trim( $attr ) ) > 0 ) {
228
+ list($name, $value) = explode( ':', $attr );
229
+ $results[ trim( $matches[1][ $i ] ) ][ trim( $name ) ] = trim( $value );
230
+ }
231
+ }
232
+ }
233
+ return $results;
234
+ }
235
+
236
+ /**
237
+ * Convert settings to css
238
+ *
239
+ * @param array $style Array of style attributes.
240
+ * @return string
241
+ */
242
+ function convert_styles( $style = array() ) {
243
+ $fields = $this->default_style_settings();
244
+ $styles = array();
245
+ foreach ( $fields as $field ) {
246
+ if ( ! array_key_exists( 'selector', $field ) || ! array_key_exists( 'element', $field ) ) {
247
+ continue;
248
+ }
249
+ $key = $this->create_selectorkey( $field['selector'], $field['element'] );
250
+ if ( array_key_exists( $key, (array) $style ) ) {
251
+ $value = $style[ $key ];
252
+ if ( array_key_exists( 'format', $field ) ) {
253
+ $value = str_replace( '{0}', $value, $field['format'] );
254
+ }
255
+ $styles[ $field['selector'] ][ $field['element'] ] = $value;
256
+ }
257
+ }
258
+ foreach ( $styles as $selector => &$elements ) {
259
+ foreach ( $elements as $key => &$element ) {
260
+ $element = sprintf( '%s:%s;', $key, $element );
261
+ }
262
+ $elements = implode( '', $elements );
263
+ $elements = sprintf( '%s {%s}', $selector, $elements );
264
+ }
265
+ $styles = implode( ' ', $styles );
266
+ return $styles;
267
+ }
268
+ }
admin/index.php CHANGED
@@ -1,3 +1,3 @@
1
- <?php
2
- // @codingStandardsIgnoreFile
3
- // Silence is golden.
1
+ <?php
2
+ // @codingStandardsIgnoreFile
3
+ // Silence is golden.
admin/settings/general.class.php CHANGED
@@ -1,443 +1,443 @@
1
- <?php
2
- /**
3
- * Admin settings class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin
7
- * @subpackage Settings
8
- */
9
-
10
- // If this file is called directly, abort.
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- die;
13
- }
14
-
15
- /**
16
- * Admin settings class
17
- */
18
- class TInvWL_Admin_Settings_General extends TInvWL_Admin_BaseSection {
19
-
20
- /**
21
- * Priority for admin menu
22
- *
23
- * @var integer
24
- */
25
- public $priority = 20;
26
-
27
- /**
28
- * Menu array
29
- *
30
- * @return array
31
- */
32
- function menu() {
33
- return array(
34
- 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
35
- 'method' => array( $this, '_print_' ),
36
- 'slug' => '',
37
- );
38
- }
39
-
40
- /**
41
- * Create Scetions for this settings
42
- *
43
- * @return array
44
- */
45
- function constructor_data() {
46
- add_action( $this->_n . '_section_general_before', array( $this, 'premium_features' ) );
47
- $lists = get_pages( array( 'number' => 999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
48
- $page_list = array( '' => '' );
49
- foreach ( $lists as $list ) {
50
- $page_list[ $list->ID ] = $list->post_title;
51
- }
52
- return array(
53
- array(
54
- 'id' => 'general',
55
- 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
56
- 'desc' => __( 'Wishlist page need to be selected so the plugin knows where it is. This page should have been created upon installation of the plugin, if not you will need to create it manually.', 'ti-woocommerce-wishlist' ),
57
- 'show_names' => true,
58
- 'fields' => array(
59
- array(
60
- 'type' => 'text',
61
- 'name' => 'default_title',
62
- 'text' => __( 'Default Wishlist Name', 'ti-woocommerce-wishlist' ),
63
- 'std' => 'Default wishlist',
64
- ),
65
- array(
66
- 'type' => 'select',
67
- 'name' => 'page_wishlist',
68
- 'text' => __( 'Wishlist Page', 'ti-woocommerce-wishlist' ),
69
- 'std' => '',
70
- 'options' => $page_list,
71
- 'validate' => FILTER_VALIDATE_INT,
72
- ),
73
- array(
74
- 'type' => 'checkboxonoff',
75
- 'name' => 'link_in_myaccount',
76
- 'text' => __( 'Show Link to Wishlist in my account', 'ti-woocommerce-wishlist-premium' ),
77
- 'std' => true,
78
- ),
79
- array(
80
- 'type' => 'checkboxonoff',
81
- 'name' => 'processing_autoremove',
82
- 'text' => __( 'Remove Product from Wishlist if added to cart', 'ti-woocommerce-wishlist' ),
83
- 'std' => true,
84
- ),
85
- ),
86
- ),
87
- array(
88
- 'id' => 'page',
89
- 'title' => __( 'Wishlist Page Options', 'ti-woocommerce-wishlist' ),
90
- 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ),
91
- 'show_names' => true,
92
- 'style' => 'display:none;',
93
- 'fields' => array(
94
- array(
95
- 'type' => 'select',
96
- 'name' => 'wishlist',
97
- 'text' => __( 'My Wishlist', 'ti-woocommerce-wishlist' ),
98
- 'std' => '',
99
- 'options' => $page_list,
100
- 'validate' => FILTER_VALIDATE_INT,
101
- ),
102
- ),
103
- ),
104
- array(
105
- 'id' => 'processing',
106
- 'title' => __( 'Wishlist Processing Options', 'ti-woocommerce-wishlist' ),
107
- 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ),
108
- 'style' => 'display:none;',
109
- 'show_names' => true,
110
- 'fields' => array(
111
- array(
112
- 'type' => 'checkboxonoff',
113
- 'name' => 'autoremove',
114
- 'text' => __( 'Automatic removal', 'ti-woocommerce-wishlist' ),
115
- 'std' => true,
116
- 'extra' => array( 'tiwl-show' => '.tiwl-processing-autoremove' ),
117
- ),
118
- array(
119
- 'type' => 'select',
120
- 'name' => 'autoremove_status',
121
- 'text' => __( 'Remove condition', 'ti-woocommerce-wishlist' ),
122
- 'std' => 'tinvwl-addcart',
123
- 'options' => array(
124
- 'tinvwl-addcart' => __( 'Add to Card', 'ti-woocommerce-wishlist' ),
125
- ),
126
- 'class' => 'tiwl-processing-autoremove',
127
- ),
128
- ),
129
- ),
130
- array(
131
- 'id' => 'add_to_wishlist',
132
- 'title' => __( 'Product page "Add to Wishlist" Button Settings', 'ti-woocommerce-wishlist' ),
133
- 'show_names' => true,
134
- 'fields' => array(
135
- array(
136
- 'type' => 'select',
137
- 'name' => 'position',
138
- 'text' => __( 'Button position', 'ti-woocommerce-wishlist' ),
139
- 'desc' => __( 'Add this shortcode <code>[ti_wishlists_addtowishlist]</code> anywhere on product page, if you have chosen custom position for product button. You will have to do this for each product.', 'ti-woocommerce-wishlist' ),
140
- 'std' => 'after',
141
- 'options' => array(
142
- 'after' => __( 'After "Add to Cart" button', 'ti-woocommerce-wishlist' ),
143
- 'before' => __( 'Before "Add to Cart" button', 'ti-woocommerce-wishlist' ),
144
- 'shortcode' => __( 'Custom position with code', 'ti-woocommerce-wishlist' ),
145
- ),
146
- ),
147
- array(
148
- 'type' => 'select',
149
- 'name' => 'type',
150
- 'text' => __( 'Button type', 'ti-woocommerce-wishlist' ),
151
- 'std' => 'link',
152
- 'options' => array(
153
- 'link' => __( 'Link', 'ti-woocommerce-wishlist' ),
154
- 'button' => __( 'Button', 'ti-woocommerce-wishlist' ),
155
- ),
156
- ),
157
- array(
158
- 'type' => 'select',
159
- 'name' => 'icon',
160
- 'text' => __( '"Add to Wishlist" Icon', 'ti-woocommerce-wishlist' ),
161
- 'desc' => __( 'You can choose from our predefined icons or upload your custom icon. Custom icon size is limited to 16x16 px.', 'ti-woocommerce-wishlist' ),
162
- 'std' => '',
163
- 'options' => array(
164
- '' => __( 'None', 'ti-woocommerce-wishlist' ),
165
- 'heart' => __( 'Heart', 'ti-woocommerce-wishlist' ),
166
- 'heart-plus' => __( 'Heart+', 'ti-woocommerce-wishlist' ),
167
- 'custom' => __( 'Custom', 'ti-woocommerce-wishlist' ),
168
- ),
169
- 'extra' => array(
170
- 'class' => 'tiwl-button-icon',
171
- 'tiwl-show' => '.tiwl-button-icon-custom',
172
- 'tiwl-hide' => '.tiwl-button-icon-style',
173
- 'tiwl-value' => 'custom',
174
- ),
175
- ),
176
- array(
177
- 'type' => 'uploadfile',
178
- 'name' => 'icon_upload',
179
- 'std' => '',
180
- 'text' => ' ',
181
- 'class' => 'tiwl-button-icon-custom',
182
- 'extra' => array(
183
- 'button' => array(
184
- 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ),
185
- ),
186
- 'type' => array( 'image' ),
187
- ),
188
- ),
189
- array(
190
- 'type' => 'select',
191
- 'name' => 'icon_style',
192
- 'std' => 'black',
193
- 'text' => __( '"Add to Wishlist" Icon Color', 'ti-woocommerce-wishlist' ),
194
- 'options' => array(
195
- 'black' => __( 'Black', 'ti-woocommerce-wishlist' ),
196
- 'white' => __( 'White', 'ti-woocommerce-wishlist' ),
197
- ),
198
- 'class' => 'tiwl-button-icon-style',
199
- ),
200
- array(
201
- 'type' => 'text',
202
- 'name' => 'text',
203
- 'text' => __( '"Add to Wishlist" button Text', 'ti-woocommerce-wishlist' ),
204
- 'std' => 'Add to Wishlist',
205
- ),
206
- array(
207
- 'type' => 'text',
208
- 'name' => 'text_browse',
209
- 'text' => __( '"View Wishlist" button Text', 'ti-woocommerce-wishlist' ),
210
- 'std' => 'View Wishlist',
211
- ),
212
- array(
213
- 'type' => 'checkboxonoff',
214
- 'name' => 'redirect',
215
- 'text' => __( 'Redirect to Wishlist', 'ti-woocommerce-wishlist' ),
216
- 'desc' => __( 'If enabled, user will be redirected to wishlist page after 5 sec from adding product to wishlist.', 'ti-woocommerce-wishlist' ),
217
- 'std' => true,
218
- ),
219
- array(
220
- 'type' => 'text',
221
- 'name' => 'text_already_in',
222
- 'text' => __( '"Product already in Wishlist" Text', 'ti-woocommerce-wishlist' ),
223
- 'desc' => __( 'This notification will be shown if user will try to add product that already in wishlist when quantity on wishlist page is disabled.', 'ti-woocommerce-wishlist' ),
224
- 'std' => 'Product already in Wishlist',
225
- ),
226
- array(
227
- 'type' => 'text',
228
- 'name' => 'text_added_to',
229
- 'text' => __( '"Product added to Wishlist" Text', 'ti-woocommerce-wishlist' ),
230
- 'std' => 'Product added to Wishlist',
231
- ),
232
- ),
233
- ),
234
- array(
235
- 'id' => 'product_table',
236
- 'title' => __( 'Wishlist Product Settings', 'ti-woocommerce-wishlist' ),
237
- 'desc' => __( 'Following options allows you to choose what information/functionality to show/enable in wishlist table on wishlist page.', 'ti-woocommerce-wishlist' ),
238
- 'show_names' => true,
239
- 'fields' => array(
240
- array(
241
- 'type' => 'checkboxonoff',
242
- 'name' => 'add_to_card',
243
- 'text' => __( 'Show "Add to Cart" button', 'ti-woocommerce-wishlist' ),
244
- 'std' => true,
245
- 'extra' => array( 'tiwl-show' => '.tiwl-table-action-addcart' ),
246
- ),
247
- array(
248
- 'type' => 'text',
249
- 'name' => 'text_add_to_card',
250
- 'text' => __( '"Add to Cart" Text', 'ti-woocommerce-wishlist' ),
251
- 'std' => 'Add to Cart',
252
- 'class' => 'tiwl-table-action-addcart',
253
- ),
254
- array(
255
- 'type' => 'checkboxonoff',
256
- 'name' => 'colm_price',
257
- 'text' => __( 'Show Unit price', 'ti-woocommerce-wishlist' ),
258
- 'std' => true,
259
- ),
260
- array(
261
- 'type' => 'checkboxonoff',
262
- 'name' => 'colm_stock',
263
- 'text' => __( 'Show Stock status', 'ti-woocommerce-wishlist' ),
264
- 'std' => true,
265
- ),
266
- array(
267
- 'type' => 'checkboxonoff',
268
- 'name' => 'colm_date',
269
- 'text' => __( 'Show Date of addition', 'ti-woocommerce-wishlist' ),
270
- 'std' => true,
271
- ),
272
- ),
273
- ),
274
- array(
275
- 'id' => 'table',
276
- 'title' => __( 'Wishlist Table Settings', 'ti-woocommerce-wishlist' ),
277
- 'desc' => __( 'Following options will help user to manage and add products to cart from wishlist table in bulk.', 'ti-woocommerce-wishlist' ),
278
- 'show_names' => true,
279
- 'fields' => array(
280
- array(
281
- 'type' => 'checkboxonoff',
282
- 'name' => 'colm_checkbox',
283
- 'text' => __( 'Show Checkboxes', 'ti-woocommerce-wishlist' ),
284
- 'std' => true,
285
- 'extra' => array( 'tiwl-show' => '.tiwl-table-cb-button' ),
286
- ),
287
- array(
288
- 'type' => 'group',
289
- 'id' => 'cb_button',
290
- 'class' => 'tiwl-table-cb-button',
291
- ),
292
- array(
293
- 'type' => 'checkboxonoff',
294
- 'name' => 'colm_actions',
295
- 'text' => __( 'Show Actions button', 'ti-woocommerce-wishlist' ),
296
- 'desc' => __( 'Bulk actions drop down at the bottom of wishlist table', 'ti-woocommerce-wishlist' ),
297
- 'std' => true,
298
- ),
299
- array(
300
- 'type' => 'checkboxonoff',
301
- 'name' => 'add_select_to_card',
302
- 'text' => __( 'Show "Add Selected to Cart" button', 'ti-woocommerce-wishlist' ),
303
- 'std' => true,
304
- 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-sel' ),
305
- ),
306
- array(
307
- 'type' => 'text',
308
- 'name' => 'text_add_select_to_card',
309
- 'text' => __( '"Add Selected to Cart" Button Text', 'ti-woocommerce-wishlist' ),
310
- 'std' => 'Add Selected to Cart',
311
- 'class' => 'tiwl-table-addcart-sel',
312
- ),
313
- array(
314
- 'type' => 'group',
315
- 'id' => '_button',
316
- ),
317
- array(
318
- 'type' => 'checkboxonoff',
319
- 'name' => 'add_all_to_card',
320
- 'text' => __( 'Show "Add All to Cart" button', 'ti-woocommerce-wishlist' ),
321
- 'std' => true,
322
- 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-all' ),
323
- ),
324
- array(
325
- 'type' => 'text',
326
- 'name' => 'text_add_all_to_card',
327
- 'text' => __( '"Add All to Cart" Button Text', 'ti-woocommerce-wishlist' ),
328
- 'std' => 'Add All to Cart',
329
- 'class' => 'tiwl-table-addcart-all',
330
- ),
331
- ),
332
- ),
333
- array(
334
- 'id' => 'social',
335
- 'show_names' => true,
336
- 'fields' => array(
337
- array(
338
- 'type' => 'group',
339
- 'id' => 'social',
340
- 'desc' => __( 'Following options enable/disable Social share icons below wishlist table on wishlist page. Wishlist owner can easily share their wishlists using this button on social networks. Wishlist privacy should be set to public or shared status, private wishlists can\'t be shared.', 'ti-woocommerce-wishlist' ),
341
- 'class' => 'tinvwl-info-top',
342
- ),
343
- array(
344
- 'type' => 'html',
345
- 'name' => 'social',
346
- 'text' => __( 'Social Networks Sharing Options', 'ti-woocommerce-wishlist' ),
347
- 'class' => 'tinvwl-header-row tinvwl-line-border',
348
- ),
349
- array(
350
- 'type' => 'checkboxonoff',
351
- 'name' => 'facebook',
352
- 'text' => __( 'Show "Share on Facebook" Button', 'ti-woocommerce-wishlist' ),
353
- 'std' => true,
354
- ),
355
- array(
356
- 'type' => 'checkboxonoff',
357
- 'name' => 'twitter',
358
- 'text' => __( 'Show "Tweet on Twitter" Button', 'ti-woocommerce-wishlist' ),
359
- 'std' => true,
360
- ),
361
- array(
362
- 'type' => 'checkboxonoff',
363
- 'name' => 'pinterest',
364
- 'text' => __( 'Show "Pin on Pinterest" Button', 'ti-woocommerce-wishlist' ),
365
- 'std' => true,
366
- ),
367
- array(
368
- 'type' => 'checkboxonoff',
369
- 'name' => 'google',
370
- 'text' => __( 'Show "Share on Google+" Button', 'ti-woocommerce-wishlist' ),
371
- 'std' => true,
372
- ),
373
- array(
374
- 'type' => 'checkboxonoff',
375
- 'name' => 'email',
376
- 'text' => __( 'Show "Share on Email" Button', 'ti-woocommerce-wishlist' ),
377
- 'std' => true,
378
- ),
379
- array(
380
- 'type' => 'text',
381
- 'name' => 'share_on',
382
- 'text' => __( '"Share on" Text', 'ti-woocommerce-wishlist' ),
383
- 'std' => 'Share on',
384
- ),
385
- ),
386
- ),
387
- array(
388
- 'id' => 'save_buttons',
389
- 'class' => 'only-button',
390
- 'noform' => true,
391
- 'fields' => array(
392
- array(
393
- 'type' => 'button_submit',
394
- 'name' => 'setting_save',
395
- 'std' => '<span><i class="fa fa-check"></i></span>' . __( 'Save Settings', 'ti-woocommerce-wishlist' ),
396
- 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok' ),
397
- ),
398
- array(
399
- 'type' => 'button_submit_quick',
400
- 'name' => 'setting_save_quick',
401
- 'std' => '<span><i class="fa fa-floppy-o"></i></span>' . __( 'Save', 'ti-woocommerce-wishlist' ),
402
- ),
403
- ),
404
- ),
405
- );
406
- }
407
-
408
- /**
409
- * Load value from database
410
- *
411
- * @param array $sections Sections array.
412
- * @return array
413
- */
414
- function constructor_load( $sections ) {
415
- $data = parent::constructor_load( $sections );
416
- $data['general']['page_wishlist'] = $data['page']['wishlist'];
417
- $data['general']['processing_autoremove'] = $data['processing']['autoremove'];
418
- return $data;
419
- }
420
-
421
- /**
422
- * Save value to database and flush rewrite.
423
- *
424
- * @param array $data Post section data.
425
- */
426
- function constructor_save( $data ) {
427
- parent::constructor_save( $data );
428
- if ( empty( $data ) || ! is_array( $data ) ) {
429
- return false;
430
- }
431
- tinv_update_option( 'page', 'wishlist', $data['general']['page_wishlist'] );
432
- tinv_update_option( 'processing', 'autoremove', $data['general']['processing_autoremove'] );
433
- tinv_update_option( 'processing', 'autoremove_status', 'tinvwl-addcart' );
434
- TInvWL_Public_TInvWL::update_rewrite_rules();
435
- }
436
-
437
- /**
438
- * Show Premium Features sections
439
- */
440
- function premium_features() {
441
- TInvWL_View::view( 'premium-features' );
442
- }
443
- }
1
+ <?php
2
+ /**
3
+ * Admin settings class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin
7
+ * @subpackage Settings
8
+ */
9
+
10
+ // If this file is called directly, abort.
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ die;
13
+ }
14
+
15
+ /**
16
+ * Admin settings class
17
+ */
18
+ class TInvWL_Admin_Settings_General extends TInvWL_Admin_BaseSection {
19
+
20
+ /**
21
+ * Priority for admin menu
22
+ *
23
+ * @var integer
24
+ */
25
+ public $priority = 20;
26
+
27
+ /**
28
+ * Menu array
29
+ *
30
+ * @return array
31
+ */
32
+ function menu() {
33
+ return array(
34
+ 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
35
+ 'method' => array( $this, '_print_' ),
36
+ 'slug' => '',
37
+ );
38
+ }
39
+
40
+ /**
41
+ * Create Scetions for this settings
42
+ *
43
+ * @return array
44
+ */
45
+ function constructor_data() {
46
+ add_action( $this->_n . '_section_general_before', array( $this, 'premium_features' ) );
47
+ $lists = get_pages( array( 'number' => 999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
48
+ $page_list = array( '' => '' );
49
+ foreach ( $lists as $list ) {
50
+ $page_list[ $list->ID ] = $list->post_title;
51
+ }
52
+ return array(
53
+ array(
54
+ 'id' => 'general',
55
+ 'title' => __( 'General Settings', 'ti-woocommerce-wishlist' ),
56
+ 'desc' => __( 'Wishlist page need to be selected so the plugin knows where it is. This page should have been created upon installation of the plugin, if not you will need to create it manually.', 'ti-woocommerce-wishlist' ),
57
+ 'show_names' => true,
58
+ 'fields' => array(
59
+ array(
60
+ 'type' => 'text',
61
+ 'name' => 'default_title',
62
+ 'text' => __( 'Default Wishlist Name', 'ti-woocommerce-wishlist' ),
63
+ 'std' => 'Default wishlist',
64
+ ),
65
+ array(
66
+ 'type' => 'select',
67
+ 'name' => 'page_wishlist',
68
+ 'text' => __( 'Wishlist Page', 'ti-woocommerce-wishlist' ),
69
+ 'std' => '',
70
+ 'options' => $page_list,
71
+ 'validate' => FILTER_VALIDATE_INT,
72
+ ),
73
+ array(
74
+ 'type' => 'checkboxonoff',
75
+ 'name' => 'link_in_myaccount',
76
+ 'text' => __( 'Show Link to Wishlist in my account', 'ti-woocommerce-wishlist-premium' ),
77
+ 'std' => true,
78
+ ),
79
+ array(
80
+ 'type' => 'checkboxonoff',
81
+ 'name' => 'processing_autoremove',
82
+ 'text' => __( 'Remove Product from Wishlist if added to cart', 'ti-woocommerce-wishlist' ),
83
+ 'std' => true,
84
+ ),
85
+ ),
86
+ ),
87
+ array(
88
+ 'id' => 'page',
89
+ 'title' => __( 'Wishlist Page Options', 'ti-woocommerce-wishlist' ),
90
+ 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ),
91
+ 'show_names' => true,
92
+ 'style' => 'display:none;',
93
+ 'fields' => array(
94
+ array(
95
+ 'type' => 'select',
96
+ 'name' => 'wishlist',
97
+ 'text' => __( 'My Wishlist', 'ti-woocommerce-wishlist' ),
98
+ 'std' => '',
99
+ 'options' => $page_list,
100
+ 'validate' => FILTER_VALIDATE_INT,
101
+ ),
102
+ ),
103
+ ),
104
+ array(
105
+ 'id' => 'processing',
106
+ 'title' => __( 'Wishlist Processing Options', 'ti-woocommerce-wishlist' ),
107
+ 'desc' => __( 'Coming soon', 'ti-woocommerce-wishlist' ),
108
+ 'style' => 'display:none;',
109
+ 'show_names' => true,
110
+ 'fields' => array(
111
+ array(
112
+ 'type' => 'checkboxonoff',
113
+ 'name' => 'autoremove',
114
+ 'text' => __( 'Automatic removal', 'ti-woocommerce-wishlist' ),
115
+ 'std' => true,
116
+ 'extra' => array( 'tiwl-show' => '.tiwl-processing-autoremove' ),
117
+ ),
118
+ array(
119
+ 'type' => 'select',
120
+ 'name' => 'autoremove_status',
121
+ 'text' => __( 'Remove condition', 'ti-woocommerce-wishlist' ),
122
+ 'std' => 'tinvwl-addcart',
123
+ 'options' => array(
124
+ 'tinvwl-addcart' => __( 'Add to Card', 'ti-woocommerce-wishlist' ),
125
+ ),
126
+ 'class' => 'tiwl-processing-autoremove',
127
+ ),
128
+ ),
129
+ ),
130
+ array(
131
+ 'id' => 'add_to_wishlist',
132
+ 'title' => __( 'Product page "Add to Wishlist" Button Settings', 'ti-woocommerce-wishlist' ),
133
+ 'show_names' => true,
134
+ 'fields' => array(
135
+ array(
136
+ 'type' => 'select',
137
+ 'name' => 'position',
138
+ 'text' => __( 'Button position', 'ti-woocommerce-wishlist' ),
139
+ 'desc' => __( 'Add this shortcode <code>[ti_wishlists_addtowishlist]</code> anywhere on product page, if you have chosen custom position for product button. You will have to do this for each product.', 'ti-woocommerce-wishlist' ),
140
+ 'std' => 'after',
141
+ 'options' => array(
142
+ 'after' => __( 'After "Add to Cart" button', 'ti-woocommerce-wishlist' ),
143
+ 'before' => __( 'Before "Add to Cart" button', 'ti-woocommerce-wishlist' ),
144
+ 'shortcode' => __( 'Custom position with code', 'ti-woocommerce-wishlist' ),
145
+ ),
146
+ ),
147
+ array(
148
+ 'type' => 'select',
149
+ 'name' => 'type',
150
+ 'text' => __( 'Button type', 'ti-woocommerce-wishlist' ),
151
+ 'std' => 'link',
152
+ 'options' => array(
153
+ 'link' => __( 'Link', 'ti-woocommerce-wishlist' ),
154
+ 'button' => __( 'Button', 'ti-woocommerce-wishlist' ),
155
+ ),
156
+ ),
157
+ array(
158
+ 'type' => 'select',
159
+ 'name' => 'icon',
160
+ 'text' => __( '"Add to Wishlist" Icon', 'ti-woocommerce-wishlist' ),
161
+ 'desc' => __( 'You can choose from our predefined icons or upload your custom icon. Custom icon size is limited to 16x16 px.', 'ti-woocommerce-wishlist' ),
162
+ 'std' => '',
163
+ 'options' => array(
164
+ '' => __( 'None', 'ti-woocommerce-wishlist' ),
165
+ 'heart' => __( 'Heart', 'ti-woocommerce-wishlist' ),
166
+ 'heart-plus' => __( 'Heart+', 'ti-woocommerce-wishlist' ),
167
+ 'custom' => __( 'Custom', 'ti-woocommerce-wishlist' ),
168
+ ),
169
+ 'extra' => array(
170
+ 'class' => 'tiwl-button-icon',
171
+ 'tiwl-show' => '.tiwl-button-icon-custom',
172
+ 'tiwl-hide' => '.tiwl-button-icon-style',
173
+ 'tiwl-value' => 'custom',
174
+ ),
175
+ ),
176
+ array(
177
+ 'type' => 'uploadfile',
178
+ 'name' => 'icon_upload',
179
+ 'std' => '',
180
+ 'text' => ' ',
181
+ 'class' => 'tiwl-button-icon-custom',
182
+ 'extra' => array(
183
+ 'button' => array(
184
+ 'value' => __( 'Upload', 'ti-woocommerce-wishlist' ),
185
+ ),
186
+ 'type' => array( 'image' ),
187
+ ),
188
+ ),
189
+ array(
190
+ 'type' => 'select',
191
+ 'name' => 'icon_style',
192
+ 'std' => 'black',
193
+ 'text' => __( '"Add to Wishlist" Icon Color', 'ti-woocommerce-wishlist' ),
194
+ 'options' => array(
195
+ 'black' => __( 'Black', 'ti-woocommerce-wishlist' ),
196
+ 'white' => __( 'White', 'ti-woocommerce-wishlist' ),
197
+ ),
198
+ 'class' => 'tiwl-button-icon-style',
199
+ ),
200
+ array(
201
+ 'type' => 'text',
202
+ 'name' => 'text',
203
+ 'text' => __( '"Add to Wishlist" button Text', 'ti-woocommerce-wishlist' ),
204
+ 'std' => 'Add to Wishlist',
205
+ ),
206
+ array(
207
+ 'type' => 'text',
208
+ 'name' => 'text_browse',
209
+ 'text' => __( '"View Wishlist" button Text', 'ti-woocommerce-wishlist' ),
210
+ 'std' => 'View Wishlist',
211
+ ),
212
+ array(
213
+ 'type' => 'checkboxonoff',
214
+ 'name' => 'redirect',
215
+ 'text' => __( 'Redirect to Wishlist', 'ti-woocommerce-wishlist' ),
216
+ 'desc' => __( 'If enabled, user will be redirected to wishlist page after 5 sec from adding product to wishlist.', 'ti-woocommerce-wishlist' ),
217
+ 'std' => true,
218
+ ),
219
+ array(
220
+ 'type' => 'text',
221
+ 'name' => 'text_already_in',
222
+ 'text' => __( '"Product already in Wishlist" Text', 'ti-woocommerce-wishlist' ),
223
+ 'desc' => __( 'This notification will be shown if user will try to add product that already in wishlist when quantity on wishlist page is disabled.', 'ti-woocommerce-wishlist' ),
224
+ 'std' => 'Product already in Wishlist',
225
+ ),
226
+ array(
227
+ 'type' => 'text',
228
+ 'name' => 'text_added_to',
229
+ 'text' => __( '"Product added to Wishlist" Text', 'ti-woocommerce-wishlist' ),
230
+ 'std' => 'Product added to Wishlist',
231
+ ),
232
+ ),
233
+ ),
234
+ array(
235
+ 'id' => 'product_table',
236
+ 'title' => __( 'Wishlist Product Settings', 'ti-woocommerce-wishlist' ),
237
+ 'desc' => __( 'Following options allows you to choose what information/functionality to show/enable in wishlist table on wishlist page.', 'ti-woocommerce-wishlist' ),
238
+ 'show_names' => true,
239
+ 'fields' => array(
240
+ array(
241
+ 'type' => 'checkboxonoff',
242
+ 'name' => 'add_to_card',
243
+ 'text' => __( 'Show "Add to Cart" button', 'ti-woocommerce-wishlist' ),
244
+ 'std' => true,
245
+ 'extra' => array( 'tiwl-show' => '.tiwl-table-action-addcart' ),
246
+ ),
247
+ array(
248
+ 'type' => 'text',
249
+ 'name' => 'text_add_to_card',
250
+ 'text' => __( '"Add to Cart" Text', 'ti-woocommerce-wishlist' ),
251
+ 'std' => 'Add to Cart',
252
+ 'class' => 'tiwl-table-action-addcart',
253
+ ),
254
+ array(
255
+ 'type' => 'checkboxonoff',
256
+ 'name' => 'colm_price',
257
+ 'text' => __( 'Show Unit price', 'ti-woocommerce-wishlist' ),
258
+ 'std' => true,
259
+ ),
260
+ array(
261
+ 'type' => 'checkboxonoff',
262
+ 'name' => 'colm_stock',
263
+ 'text' => __( 'Show Stock status', 'ti-woocommerce-wishlist' ),
264
+ 'std' => true,
265
+ ),
266
+ array(
267
+ 'type' => 'checkboxonoff',
268
+ 'name' => 'colm_date',
269
+ 'text' => __( 'Show Date of addition', 'ti-woocommerce-wishlist' ),
270
+ 'std' => true,
271
+ ),
272
+ ),
273
+ ),
274
+ array(
275
+ 'id' => 'table',
276
+ 'title' => __( 'Wishlist Table Settings', 'ti-woocommerce-wishlist' ),
277
+ 'desc' => __( 'Following options will help user to manage and add products to cart from wishlist table in bulk.', 'ti-woocommerce-wishlist' ),
278
+ 'show_names' => true,
279
+ 'fields' => array(
280
+ array(
281
+ 'type' => 'checkboxonoff',
282
+ 'name' => 'colm_checkbox',
283
+ 'text' => __( 'Show Checkboxes', 'ti-woocommerce-wishlist' ),
284
+ 'std' => true,
285
+ 'extra' => array( 'tiwl-show' => '.tiwl-table-cb-button' ),
286
+ ),
287
+ array(
288
+ 'type' => 'group',
289
+ 'id' => 'cb_button',
290
+ 'class' => 'tiwl-table-cb-button',
291
+ ),
292
+ array(
293
+ 'type' => 'checkboxonoff',
294
+ 'name' => 'colm_actions',
295
+ 'text' => __( 'Show Actions button', 'ti-woocommerce-wishlist' ),
296
+ 'desc' => __( 'Bulk actions drop down at the bottom of wishlist table', 'ti-woocommerce-wishlist' ),
297
+ 'std' => true,
298
+ ),
299
+ array(
300
+ 'type' => 'checkboxonoff',
301
+ 'name' => 'add_select_to_card',
302
+ 'text' => __( 'Show "Add Selected to Cart" button', 'ti-woocommerce-wishlist' ),
303
+ 'std' => true,
304
+ 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-sel' ),
305
+ ),
306
+ array(
307
+ 'type' => 'text',
308
+ 'name' => 'text_add_select_to_card',
309
+ 'text' => __( '"Add Selected to Cart" Button Text', 'ti-woocommerce-wishlist' ),
310
+ 'std' => 'Add Selected to Cart',
311
+ 'class' => 'tiwl-table-addcart-sel',
312
+ ),
313
+ array(
314
+ 'type' => 'group',
315
+ 'id' => '_button',
316
+ ),
317
+ array(
318
+ 'type' => 'checkboxonoff',
319
+ 'name' => 'add_all_to_card',
320
+ 'text' => __( 'Show "Add All to Cart" button', 'ti-woocommerce-wishlist' ),
321
+ 'std' => true,
322
+ 'extra' => array( 'tiwl-show' => '.tiwl-table-addcart-all' ),
323
+ ),
324
+ array(
325
+ 'type' => 'text',
326
+ 'name' => 'text_add_all_to_card',
327
+ 'text' => __( '"Add All to Cart" Button Text', 'ti-woocommerce-wishlist' ),
328
+ 'std' => 'Add All to Cart',
329
+ 'class' => 'tiwl-table-addcart-all',
330
+ ),
331
+ ),
332
+ ),
333
+ array(
334
+ 'id' => 'social',
335
+ 'show_names' => true,
336
+ 'fields' => array(
337
+ array(
338
+ 'type' => 'group',
339
+ 'id' => 'social',
340
+ 'desc' => __( 'Following options enable/disable Social share icons below wishlist table on wishlist page. Wishlist owner can easily share their wishlists using this button on social networks. Wishlist privacy should be set to public or shared status, private wishlists can\'t be shared.', 'ti-woocommerce-wishlist' ),
341
+ 'class' => 'tinvwl-info-top',
342
+ ),
343
+ array(
344
+ 'type' => 'html',
345
+ 'name' => 'social',
346
+ 'text' => __( 'Social Networks Sharing Options', 'ti-woocommerce-wishlist' ),
347
+ 'class' => 'tinvwl-header-row tinvwl-line-border',
348
+ ),
349
+ array(
350
+ 'type' => 'checkboxonoff',
351
+ 'name' => 'facebook',
352
+ 'text' => __( 'Show "Share on Facebook" Button', 'ti-woocommerce-wishlist' ),
353
+ 'std' => true,
354
+ ),
355
+ array(
356
+ 'type' => 'checkboxonoff',
357
+ 'name' => 'twitter',
358
+ 'text' => __( 'Show "Tweet on Twitter" Button', 'ti-woocommerce-wishlist' ),
359
+ 'std' => true,
360
+ ),
361
+ array(
362
+ 'type' => 'checkboxonoff',
363
+ 'name' => 'pinterest',
364
+ 'text' => __( 'Show "Pin on Pinterest" Button', 'ti-woocommerce-wishlist' ),
365
+ 'std' => true,
366
+ ),
367
+ array(
368
+ 'type' => 'checkboxonoff',
369
+ 'name' => 'google',
370
+ 'text' => __( 'Show "Share on Google+" Button', 'ti-woocommerce-wishlist' ),
371
+ 'std' => true,
372
+ ),
373
+ array(
374
+ 'type' => 'checkboxonoff',
375
+ 'name' => 'email',
376
+ 'text' => __( 'Show "Share on Email" Button', 'ti-woocommerce-wishlist' ),
377
+ 'std' => true,
378
+ ),
379
+ array(
380
+ 'type' => 'text',
381
+ 'name' => 'share_on',
382
+ 'text' => __( '"Share on" Text', 'ti-woocommerce-wishlist' ),
383
+ 'std' => 'Share on',
384
+ ),
385
+ ),
386
+ ),
387
+ array(
388
+ 'id' => 'save_buttons',
389
+ 'class' => 'only-button',
390
+ 'noform' => true,
391
+ 'fields' => array(
392
+ array(
393
+ 'type' => 'button_submit',
394
+ 'name' => 'setting_save',
395
+ 'std' => '<span><i class="fa fa-check"></i></span>' . __( 'Save Settings', 'ti-woocommerce-wishlist' ),
396
+ 'extra' => array( 'class' => 'tinvwl-btn split status-btn-ok' ),
397
+ ),
398
+ array(
399
+ 'type' => 'button_submit_quick',
400
+ 'name' => 'setting_save_quick',
401
+ 'std' => '<span><i class="fa fa-floppy-o"></i></span>' . __( 'Save', 'ti-woocommerce-wishlist' ),
402
+ ),
403
+ ),
404
+ ),
405
+ );
406
+ }
407
+
408
+ /**
409
+ * Load value from database
410
+ *
411
+ * @param array $sections Sections array.
412
+ * @return array
413
+ */
414
+ function constructor_load( $sections ) {
415
+ $data = parent::constructor_load( $sections );
416
+ $data['general']['page_wishlist'] = $data['page']['wishlist'];
417
+ $data['general']['processing_autoremove'] = $data['processing']['autoremove'];
418
+ return $data;
419
+ }
420
+
421
+ /**
422
+ * Save value to database and flush rewrite.
423
+ *
424
+ * @param array $data Post section data.
425
+ */
426
+ function constructor_save( $data ) {
427
+ parent::constructor_save( $data );
428
+ if ( empty( $data ) || ! is_array( $data ) ) {
429
+ return false;
430
+ }
431
+ tinv_update_option( 'page', 'wishlist', $data['general']['page_wishlist'] );
432
+ tinv_update_option( 'processing', 'autoremove', $data['general']['processing_autoremove'] );
433
+ tinv_update_option( 'processing', 'autoremove_status', 'tinvwl-addcart' );
434
+ TInvWL_Public_TInvWL::update_rewrite_rules();
435
+ }
436
+
437
+ /**
438
+ * Show Premium Features sections
439
+ */
440
+ function premium_features() {
441
+ TInvWL_View::view( 'premium-features' );
442
+ }
443
+ }
admin/settings/index.php CHANGED
@@ -1,3 +1,3 @@
1
- <?php
2
- // @codingStandardsIgnoreFile
3
  // Silence is golden.
1
+ <?php
2
+ // @codingStandardsIgnoreFile
3
  // Silence is golden.
admin/settings/style.class.php CHANGED
@@ -1,636 +1,636 @@
1
- <?php
2
- /**
3
- * Admin settings class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin
7
- * @subpackage Settings
8
- */
9
-
10
- // If this file is called directly, abort.
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- die;
13
- }
14
-
15
- /**
16
- * Admin settings class
17
- */
18
- class TInvWL_Admin_Settings_Style extends TInvWL_Admin_BaseStyle {
19
-
20
- /**
21
- * Priority for admin menu
22
- *
23
- * @var integer
24
- */
25
- public $priority = 100;
26
-
27
- /**
28
- * Menu array
29
- *
30
- * @return array
31
- */
32
- function menu() {
33
- return array(
34
- 'title' => __( 'Style Options', 'ti-woocommerce-wishlist' ),
35
- 'page_title' => __( 'Wishlist Style Options', 'ti-woocommerce-wishlist' ),
36
- 'method' => array( $this, '_print_' ),
37
- 'slug' => 'style-settings',
38
- );
39
- }
40
-
41
- /**
42
- * The modifiable attributes for the Default theme
43
- *
44
- * @return array
45
- */
46
- function default_style_settings() {
47
- $font_family = apply_filters( 'tinwl_prepare_fonts', array(
48
- 'inherit' => __( 'Use Default Font', 'ti-woocommerce-wishlist' ),
49
- 'Georgia, serif' => __( 'Georgia', 'ti-woocommerce-wishlist' ),
50
- "'Times New Roman', Times, serif" => __( 'Times New Roman, Times', 'ti-woocommerce-wishlist' ),
51
- 'Arial, Helvetica, sans-serif' => __( 'Arial, Helvetica', 'ti-woocommerce-wishlist' ),
52
- "'Courier New', Courier, monospace" => __( 'Courier New, Courier', 'ti-woocommerce-wishlist' ),
53
- "Georgia, 'Times New Roman', Times, serif" => __( 'Georgia, Times New Roman, Times', 'ti-woocommerce-wishlist' ),
54
- 'Verdana, Arial, Helvetica, sans-serif' => __( 'Verdana, Arial, Helvetica', 'ti-woocommerce-wishlist' ),
55
- 'Geneva, Arial, Helvetica, sans-serif' => __( 'Geneva, Arial, Helvetica', 'ti-woocommerce-wishlist' ),
56
- "'Source Sans Pro', 'Open Sans', sans-serif" => __( 'Source Sans Pro, Open Sans', 'ti-woocommerce-wishlist' ),
57
- "'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif" => __( 'Helvetica Neue, Helvetica, Roboto, Arial', 'ti-woocommerce-wishlist' ),
58
- 'Arial, sans-serif' => __( 'Arial', 'ti-woocommerce-wishlist' ),
59
- "'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif" => __( 'Lucida Grande, Verdana, Arial, Bitstream Vera Sans', 'ti-woocommerce-wishlist' ),
60
- ) );
61
- return array(
62
- array(
63
- 'type' => 'group',
64
- 'title' => __( 'text', 'ti-woocommerce-wishlist' ),
65
- 'show_names' => true,
66
- ),
67
- array(
68
- 'type' => 'color',
69
- 'selector' => '.tinv-wishlist .tinv-header h2',
70
- 'element' => 'color',
71
- 'text' => __( 'Title Color', 'ti-woocommerce-wishlist' ),
72
- ),
73
- array(
74
- 'type' => 'text',
75
- 'selector' => '.tinv-wishlist .tinv-header h2',
76
- 'element' => 'font-size',
77
- 'text' => __( 'Title Font Size', 'ti-woocommerce-wishlist' ),
78
- ),
79
- array(
80
- 'type' => 'color',
81
- 'selector' => '.tinv-wishlist',
82
- 'element' => 'color',
83
- 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
84
- ),
85
- array(
86
- 'type' => 'select',
87
- 'selector' => '.tinv-wishlist,.tinv-wishlist button,.tinv-wishlist input,.tinv-wishlist select,.tinv-wishlist textarea,.tinv-wishlist button,.tinv-wishlist input[type="button"],.tinv-wishlist input[type="reset"],.tinv-wishlist input[type="submit"]',
88
- 'element' => 'font-family',
89
- 'text' => __( 'Font', 'tinvwl' ),
90
- 'options' => $font_family,
91
- ),
92
-
93
- array(
94
- 'type' => 'group',
95
- 'title' => __( 'links', 'ti-woocommerce-wishlist' ),
96
- 'show_names' => true,
97
- ),
98
- array(
99
- 'type' => 'color',
100
- 'selector' => '.tinv-wishlist a:not(.button)',
101
- 'element' => 'color',
102
- 'text' => __( 'Color', 'ti-woocommerce-wishlist' ),
103
- ),
104
- array(
105
- 'type' => 'color',
106
- 'selector' => '.tinv-wishlist a:not(.button):hover,.tinv-wishlist a:not(.button):active,.tinv-wishlist a:not(.button):focus',
107
- 'element' => 'color',
108
- 'text' => __( 'Hover Color', 'ti-woocommerce-wishlist' ),
109
- ),
110
- array(
111
- 'type' => 'select',
112
- 'selector' => '.tinv-wishlist a:not(.button)',
113
- 'element' => 'text-decoration',
114
- 'text' => __( 'Underline', 'ti-woocommerce-wishlist' ),
115
- 'options' => array(
116
- 'underline' => __( 'Yes', 'ti-woocommerce-wishlist' ),
117
- 'none !important' => __( 'No', 'ti-woocommerce-wishlist' ),
118
- ),
119
- ),
120
- array(
121
- 'type' => 'select',
122
- 'selector' => '.tinv-wishlist a:not(.button)',
123
- 'element' => 'font-family',
124
- 'text' => __( 'Font', 'tinvwl' ),
125
- 'options' => $font_family,
126
- ),
127
-
128
- array(
129
- 'type' => 'group',
130
- 'title' => __( 'fields', 'ti-woocommerce-wishlist' ),
131
- 'show_names' => true,
132
- ),
133
- array(
134
- 'type' => 'color',
135
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
136
- 'element' => 'background-color',
137
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
138
- ),
139
- array(
140
- 'type' => 'color',
141
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
142
- 'element' => 'border-color',
143
- 'text' => __( 'Border Color', 'ti-woocommerce-wishlist' ),
144
- ),
145
- array(
146
- 'type' => 'text',
147
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
148
- 'element' => 'border-radius',
149
- 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
150
- ),
151
- array(
152
- 'type' => 'color',
153
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
154
- 'element' => 'color',
155
- 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
156
- ),
157
- array(
158
- 'type' => 'select',
159
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
160
- 'element' => 'font-family',
161
- 'text' => __( 'Font', 'tinvwl' ),
162
- 'options' => $font_family,
163
- ),
164
- array(
165
- 'type' => 'text',
166
- 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist .product-quantity input[type="text"].qty',
167
- 'element' => 'font-size',
168
- 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
169
- ),
170
- array(
171
- 'type' => 'text',
172
- 'selector' => '.tinv-wishlist select',
173
- 'element' => 'font-size',
174
- 'text' => __( 'Select Font Size', 'ti-woocommerce-wishlist' ),
175
- ),
176
-
177
- array(
178
- 'type' => 'group',
179
- 'title' => __( 'add to wishlist product page button', 'ti-woocommerce-wishlist' ),
180
- 'show_names' => true,
181
- ),
182
- array(
183
- 'type' => 'color',
184
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
185
- 'element' => 'background-color',
186
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
187
- ),
188
- array(
189
- 'type' => 'color',
190
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:focus',
191
- 'element' => 'background-color',
192
- 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
193
- ),
194
- array(
195
- 'type' => 'color',
196
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
197
- 'element' => 'color',
198
- 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
199
- ),
200
- array(
201
- 'type' => 'color',
202
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
203
- 'element' => 'color',
204
- 'text' => __( 'Button Text Color', 'ti-woocommerce-wishlist' ),
205
- ),
206
- array(
207
- 'type' => 'color',
208
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:focus',
209
- 'element' => 'color',
210
- 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
211
- ),
212
- array(
213
- 'type' => 'color',
214
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:focus',
215
- 'element' => 'color',
216
- 'text' => __( 'Button Text Hover Color', 'ti-woocommerce-wishlist' ),
217
- ),
218
- array(
219
- 'type' => 'select',
220
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
221
- 'element' => 'font-family',
222
- 'text' => __( 'Font', 'tinvwl' ),
223
- 'options' => $font_family,
224
- ),
225
- array(
226
- 'type' => 'text',
227
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
228
- 'element' => 'font-size',
229
- 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
230
- ),
231
- array(
232
- 'type' => 'text',
233
- 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
234
- 'element' => 'border-radius',
235
- 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
236
- ),
237
-
238
- array(
239
- 'type' => 'group',
240
- 'title' => __( 'accent buttons style', 'ti-woocommerce-wishlist' ),
241
- 'show_names' => true,
242
- ),
243
- array(
244
- 'type' => 'color',
245
- 'selector' => '.tinv-wishlist button',
246
- 'element' => 'background-color',
247
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
248
- ),
249
- array(
250
- 'type' => 'color',
251
- 'selector' => '.tinv-wishlist button:hover,.tinv-wishlist button:focus,.tinv-wishlist input[type="button"]:hover,.tinv-wishlist input[type="button"]:focus,.tinv-wishlist input[type="reset"]:hover,.tinv-wishlist input[type="reset"]:focus,.tinv-wishlist input[type="submit"]:hover,.tinv-wishlist input[type="submit"]:focus',
252
- 'element' => 'background-color',
253
- 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
254
- ),
255
- array(
256
- 'type' => 'color',
257
- 'selector' => '.tinv-wishlist button',
258
- 'element' => 'color',
259
- 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
260
- ),
261
- array(
262
- 'type' => 'color',
263
- 'selector' => '.tinv-wishlist button:hover,.tinv-wishlist button:focus,.tinv-wishlist input[type="button"]:hover,.tinv-wishlist input[type="button"]:focus,.tinv-wishlist input[type="reset"]:hover,.tinv-wishlist input[type="reset"]:focus,.tinv-wishlist input[type="submit"]:hover,.tinv-wishlist input[type="submit"]:focus',
264
- 'element' => 'color',
265
- 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
266
- ),
267
- array(
268
- 'type' => 'select',
269
- 'selector' => '.tinv-wishlist button',
270
- 'element' => 'font-family',
271
- 'text' => __( 'Font', 'tinvwl' ),
272
- 'options' => $font_family,
273
- ),
274
- array(
275
- 'type' => 'text',
276
- 'selector' => '.tinv-wishlist button',
277
- 'element' => 'font-size',
278
- 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
279
- ),
280
- array(
281
- 'type' => 'text',
282
- 'selector' => '.widget .tinvwl-search-submit:before',
283
- 'element' => 'font-size',
284
- 'text' => __( 'Search Widget Font Size', 'tinvwl' ),
285
- ),
286
- array(
287
- 'type' => 'text',
288
- 'selector' => '.tinv-wishlist button',
289
- 'element' => 'border-radius',
290
- 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
291
- ),
292
-
293
- array(
294
- 'type' => 'group',
295
- 'title' => __( 'normal buttons style', 'ti-woocommerce-wishlist' ),
296
- 'show_names' => true,
297
- ),
298
- array(
299
- 'type' => 'color',
300
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
301
- 'element' => 'background-color',
302
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
303
- ),
304
- array(
305
- 'type' => 'color',
306
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit:hover,.woocommerce.tinv-wishlist a.button:hover,.woocommerce.tinv-wishlist button.button:hover,.woocommerce.tinv-wishlist input.button:hover',
307
- 'element' => 'background-color',
308
- 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
309
- ),
310
- array(
311
- 'type' => 'color',
312
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
313
- 'element' => 'color',
314
- 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
315
- ),
316
- array(
317
- 'type' => 'color',
318
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit:hover,.woocommerce.tinv-wishlist a.button:hover,.woocommerce.tinv-wishlist button.button:hover,.woocommerce.tinv-wishlist input.button:hover',
319
- 'element' => 'color',
320
- 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
321
- ),
322
- array(
323
- 'type' => 'select',
324
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
325
- 'element' => 'font-family',
326
- 'text' => __( 'Font', 'tinvwl' ),
327
- 'options' => $font_family,
328
- ),
329
- array(
330
- 'type' => 'text',
331
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
332
- 'element' => 'font-size',
333
- 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
334
- ),
335
- array(
336
- 'type' => 'text',
337
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
338
- 'element' => 'border-radius',
339
- 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
340
- ),
341
-
342
- array(
343
- 'type' => 'group',
344
- 'title' => __( 'add to cart button', 'ti-woocommerce-wishlist' ),
345
- 'show_names' => true,
346
- ),
347
- array(
348
- 'type' => 'color',
349
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
350
- 'element' => 'background-color',
351
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
352
- ),
353
- array(
354
- 'type' => 'color',
355
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt:hover,.woocommerce.tinv-wishlist a.button.alt:hover,.woocommerce.tinv-wishlist button.button.alt:hover,.woocommerce.tinv-wishlist input.button.alt:hover',
356
- 'element' => 'background-color',
357
- 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
358
- ),
359
- array(
360
- 'type' => 'color',
361
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
362
- 'element' => 'color',
363
- 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
364
- ),
365
- array(
366
- 'type' => 'color',
367
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt:hover,.woocommerce.tinv-wishlist a.button.alt:hover,.woocommerce.tinv-wishlist button.button.alt:hover,.woocommerce.tinv-wishlist input.button.alt:hover',
368
- 'element' => 'color',
369
- 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
370
- ),
371
- array(
372
- 'type' => 'select',
373
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
374
- 'element' => 'font-family',
375
- 'text' => __( 'Font', 'tinvwl' ),
376
- 'options' => $font_family,
377
- ),
378
- array(
379
- 'type' => 'text',
380
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
381
- 'element' => 'font-size',
382
- 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
383
- ),
384
- array(
385
- 'type' => 'text',
386
- 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
387
- 'element' => 'border-radius',
388
- 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
389
- ),
390
-
391
- array(
392
- 'type' => 'group',
393
- 'title' => __( 'table', 'ti-woocommerce-wishlist' ),
394
- 'show_names' => true,
395
- ),
396
- array(
397
- 'type' => 'color',
398
- 'selector' => '.tinv-wishlist table,.tinv-wishlist table td',
399
- 'element' => 'background-color',
400
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
401
- ),
402
- array(
403
- 'type' => 'color',
404
- 'selector' => '.tinv-wishlist table,.tinv-wishlist table th,.tinv-wishlist table td',
405
- 'element' => 'border-color',
406
- 'text' => __( 'Border Color', 'ti-woocommerce-wishlist' ),
407
- ),
408
- array(
409
- 'type' => 'color',
410
- 'selector' => '.tinv-wishlist table th',
411
- 'element' => 'background-color',
412
- 'text' => __( 'Table Head Background Color', 'ti-woocommerce-wishlist' ),
413
- ),
414
- array(
415
- 'type' => 'color',
416
- 'selector' => '.tinv-wishlist table th',
417
- 'element' => 'color',
418
- 'text' => __( 'Table Head Text Color', 'ti-woocommerce-wishlist' ),
419
- ),
420
- array(
421
- 'type' => 'select',
422
- 'selector' => '.tinv-wishlist table th',
423
- 'element' => 'font-family',
424
- 'text' => __( 'Table Head Font', 'tinvwl' ),
425
- 'options' => $font_family,
426
- ),
427
- array(
428
- 'type' => 'text',
429
- 'selector' => '.tinv-wishlist table th',
430
- 'element' => 'font-size',
431
- 'text' => __( 'Table Head Font Size', 'ti-woocommerce-wishlist' ),
432
- ),
433
- array(
434
- 'type' => 'color',
435
- 'selector' => '.tinv-wishlist table td',
436
- 'element' => 'color',
437
- 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
438
- ),
439
- array(
440
- 'type' => 'select',
441
- 'selector' => '.tinv-wishlist table td',
442
- 'element' => 'font-family',
443
- 'text' => __( 'Content Text Font', 'tinvwl' ),
444
- 'options' => $font_family,
445
- ),
446
- array(
447
- 'type' => 'text',
448
- 'selector' => '.tinv-wishlist table td',
449
- 'element' => 'font-size',
450
- 'text' => __( 'Content Text Font Size', 'ti-woocommerce-wishlist' ),
451
- ),
452
- array(
453
- 'type' => 'color',
454
- 'selector' => '.tinv-wishlist td.product-price',
455
- 'element' => 'color',
456
- 'text' => __( 'Price Color', 'ti-woocommerce-wishlist' ),
457
- ),
458
- array(
459
- 'type' => 'select',
460
- 'selector' => '.tinv-wishlist td.product-price',
461
- 'element' => 'font-family',
462
- 'text' => __( 'Price Font', 'tinvwl' ),
463
- 'options' => $font_family,
464
- ),
465
- array(
466
- 'type' => 'text',
467
- 'selector' => '.tinv-wishlist td.product-price',
468
- 'element' => 'font-size',
469
- 'text' => __( 'Price Font Size', 'ti-woocommerce-wishlist' ),
470
- ),
471
- array(
472
- 'type' => 'color',
473
- 'selector' => '.tinv-wishlist td.product-price ins span.amount',
474
- 'element' => 'color',
475
- 'text' => __( 'Special Price Color', 'ti-woocommerce-wishlist' ),
476
- ),
477
- array(
478
- 'type' => 'color',
479
- 'selector' => '.tinv-wishlist td.product-price ins span.amount',
480
- 'element' => 'background-color',
481
- 'text' => __( 'Special Price Background Color', 'ti-woocommerce-wishlist' ),
482
- ),
483
- array(
484
- 'type' => 'color',
485
- 'selector' => '.tinv-wishlist .social-buttons li a',
486
- 'element' => 'background-color',
487
- 'text' => __( 'Social Icons Background Color', 'ti-woocommerce-wishlist' ),
488
- ),
489
- array(
490
- 'type' => 'color',
491
- 'selector' => '.tinv-wishlist .social-buttons li a:hover',
492
- 'element' => 'background-color',
493
- 'text' => __( 'Social Icons Background Hover Color', 'ti-woocommerce-wishlist' ),
494
- ),
495
- array(
496
- 'type' => 'select',
497
- 'selector' => '.tinv-wishlist .social-buttons li a',
498
- 'element' => '-ti-background',
499
- 'text' => __( 'Social Icons Color', 'ti-woocommerce-wishlist' ),
500
- 'options' => array(
501
- 'dark' => __( 'Dark', 'ti-woocommerce-wishlist' ),
502
- 'white' => __( 'White', 'ti-woocommerce-wishlist' ),
503
- ),
504
- 'validate' => FILTER_DEFAULT,
505
- ),
506
-
507
- array(
508
- 'type' => 'group',
509
- 'title' => __( 'popups', 'ti-woocommerce-wishlist' ),
510
- 'show_names' => true,
511
- ),
512
- array(
513
- 'type' => 'color',
514
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner',
515
- 'element' => 'background-color',
516
- 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
517
- ),
518
- array(
519
- 'type' => 'color',
520
- 'selector' => '.tinv-wishlist .tinv-modal h2',
521
- 'element' => 'color',
522
- 'text' => __( 'Title Color', 'ti-woocommerce-wishlist' ),
523
- ),
524
- array(
525
- 'type' => 'select',
526
- 'selector' => '.tinv-wishlist .tinv-modal h2',
527
- 'element' => 'font-family',
528
- 'text' => __( 'Title Font', 'tinvwl' ),
529
- 'options' => $font_family,
530
- ),
531
- array(
532
- 'type' => 'text',
533
- 'selector' => '.tinv-wishlist .tinv-modal h2',
534
- 'element' => 'font-size',
535
- 'text' => __( 'Title Font Size', 'ti-woocommerce-wishlist' ),
536
- ),
537
- array(
538
- 'type' => 'color',
539
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner',
540
- 'element' => 'color',
541
- 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
542
- ),
543
- array(
544
- 'type' => 'select',
545
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
546
- 'element' => 'font-family',
547
- 'text' => __( 'Content Text Font', 'tinvwl' ),
548
- 'options' => $font_family,
549
- ),
550
- array(
551
- 'type' => 'text',
552
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
553
- 'element' => 'font-size',
554
- 'text' => __( 'Content Text Font Size', 'ti-woocommerce-wishlist' ),
555
- ),
556
- array(
557
- 'type' => 'color',
558
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
559
- 'element' => 'background-color',
560
- 'text' => __( 'Fields Background Color', 'ti-woocommerce-wishlist' ),
561
- ),
562
- array(
563
- 'type' => 'color',
564
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
565
- 'element' => 'border-color',
566
- 'text' => __( 'Fields Border Color', 'ti-woocommerce-wishlist' ),
567
- ),
568
- array(
569
- 'type' => 'text',
570
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
571
- 'element' => 'border-radius',
572
- 'text' => __( 'Fields Border Radius', 'ti-woocommerce-wishlist' ),
573
- ),
574
- array(
575
- 'type' => 'color',
576
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
577
- 'element' => 'color',
578
- 'text' => __( 'Fields Text Color', 'ti-woocommerce-wishlist' ),
579
- ),
580
- array(
581
- 'type' => 'color',
582
- 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input::-webkit-input-placeholder',
583
- 'element' => 'color',
584
- 'text' => __( 'Fields Placeholder Text Color', 'ti-woocommerce-wishlist' ),
585
- ),
586
- array(
587
- 'type' => 'color',
588
- 'selector' => '.tinv-wishlist .tinv-modal button.button,.tinv-wishlist .tinv-modal .tinv-close-modal',
589
- 'element' => 'background-color',
590
- 'text' => __( 'Normal Buttons Background Color', 'ti-woocommerce-wishlist' ),
591
- ),
592
- array(
593
- 'type' => 'color',
594
- 'selector' => '.tinv-wishlist .tinv-modal button.button:hover,.tinv-wishlist .tinv-modal .tinv-close-modal:hover',
595
- 'element' => 'background-color',
596
- 'text' => __( 'Normal Buttons Background Hover Color', 'ti-woocommerce-wishlist' ),
597
- ),
598
- array(
599
- 'type' => 'color',
600
- 'selector' => '.tinv-wishlist .tinv-modal button.button,.tinv-wishlist .tinv-modal .tinv-close-modal',
601
- 'element' => 'color',
602
- 'text' => __( 'Normal Buttons Text Color', 'ti-woocommerce-wishlist' ),
603
- ),
604
- array(
605
- 'type' => 'color',
606
- 'selector' => '.tinv-wishlist .tinv-modal button.button:hover,.tinv-wishlist .tinv-modal .tinv-close-modal:hover',
607
- 'element' => 'color',
608
- 'text' => __( 'Normal Buttons Text Hover Color', 'ti-woocommerce-wishlist' ),
609
- ),
610
- array(
611
- 'type' => 'color',
612
- 'selector' => '.tinv-wishlist .tinv-modal button:not(.button)',
613
- 'element' => 'background-color',
614
- 'text' => __( 'Accent Buttons Background Color', 'ti-woocommerce-wishlist' ),
615
- ),
616
- array(
617
- 'type' => 'color',
618
- 'selector' => '.tinv-wishlist .tinv-modal button:not(.button):hover,.tinv-wishlist .tinv-modal button:not(.button):active,.tinv-wishlist .tinv-modal button:not(.button):focus',
619
- 'element' => 'background-color',
620
- 'text' => __( 'Accent Buttons Background Hover Color', 'ti-woocommerce-wishlist' ),
621
- ),
622
- array(
623
- 'type' => 'color',
624
- 'selector' => '.tinv-wishlist .tinv-modal button:not(.button)',
625
- 'element' => 'color',
626
- 'text' => __( 'Accent Buttons Text Color', 'ti-woocommerce-wishlist' ),
627
- ),
628
- array(
629
- 'type' => 'color',
630
- 'selector' => '.tinv-wishlist .tinv-modal button:not(.button):hover,.tinv-wishlist .tinv-modal button:not(.button):active,.tinv-wishlist .tinv-modal button:not(.button):focus',
631
- 'element' => 'color',
632
- 'text' => __( 'Accent Buttons Text Hover Color', 'ti-woocommerce-wishlist' ),
633
- ),
634
- );
635
- }
636
- }
1
+ <?php
2
+ /**
3
+ * Admin settings class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin
7
+ * @subpackage Settings
8
+ */
9
+
10
+ // If this file is called directly, abort.
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ die;
13
+ }
14
+
15
+ /**
16
+ * Admin settings class
17
+ */
18
+ class TInvWL_Admin_Settings_Style extends TInvWL_Admin_BaseStyle {
19
+
20
+ /**
21
+ * Priority for admin menu
22
+ *
23
+ * @var integer
24
+ */
25
+ public $priority = 100;
26
+
27
+ /**
28
+ * Menu array
29
+ *
30
+ * @return array
31
+ */
32
+ function menu() {
33
+ return array(
34
+ 'title' => __( 'Style Options', 'ti-woocommerce-wishlist' ),
35
+ 'page_title' => __( 'Wishlist Style Options', 'ti-woocommerce-wishlist' ),
36
+ 'method' => array( $this, '_print_' ),
37
+ 'slug' => 'style-settings',
38
+ );
39
+ }
40
+
41
+ /**
42
+ * The modifiable attributes for the Default theme
43
+ *
44
+ * @return array
45
+ */
46
+ function default_style_settings() {
47
+ $font_family = apply_filters( 'tinwl_prepare_fonts', array(
48
+ 'inherit' => __( 'Use Default Font', 'ti-woocommerce-wishlist' ),
49
+ 'Georgia, serif' => __( 'Georgia', 'ti-woocommerce-wishlist' ),
50
+ "'Times New Roman', Times, serif" => __( 'Times New Roman, Times', 'ti-woocommerce-wishlist' ),
51
+ 'Arial, Helvetica, sans-serif' => __( 'Arial, Helvetica', 'ti-woocommerce-wishlist' ),
52
+ "'Courier New', Courier, monospace" => __( 'Courier New, Courier', 'ti-woocommerce-wishlist' ),
53
+ "Georgia, 'Times New Roman', Times, serif" => __( 'Georgia, Times New Roman, Times', 'ti-woocommerce-wishlist' ),
54
+ 'Verdana, Arial, Helvetica, sans-serif' => __( 'Verdana, Arial, Helvetica', 'ti-woocommerce-wishlist' ),
55
+ 'Geneva, Arial, Helvetica, sans-serif' => __( 'Geneva, Arial, Helvetica', 'ti-woocommerce-wishlist' ),
56
+ "'Source Sans Pro', 'Open Sans', sans-serif" => __( 'Source Sans Pro, Open Sans', 'ti-woocommerce-wishlist' ),
57
+ "'Helvetica Neue', Helvetica, Roboto, Arial, sans-serif" => __( 'Helvetica Neue, Helvetica, Roboto, Arial', 'ti-woocommerce-wishlist' ),
58
+ 'Arial, sans-serif' => __( 'Arial', 'ti-woocommerce-wishlist' ),
59
+ "'Lucida Grande', Verdana, Arial, 'Bitstream Vera Sans', sans-serif" => __( 'Lucida Grande, Verdana, Arial, Bitstream Vera Sans', 'ti-woocommerce-wishlist' ),
60
+ ) );
61
+ return array(
62
+ array(
63
+ 'type' => 'group',
64
+ 'title' => __( 'text', 'ti-woocommerce-wishlist' ),
65
+ 'show_names' => true,
66
+ ),
67
+ array(
68
+ 'type' => 'color',
69
+ 'selector' => '.tinv-wishlist .tinv-header h2',
70
+ 'element' => 'color',
71
+ 'text' => __( 'Title Color', 'ti-woocommerce-wishlist' ),
72
+ ),
73
+ array(
74
+ 'type' => 'text',
75
+ 'selector' => '.tinv-wishlist .tinv-header h2',
76
+ 'element' => 'font-size',
77
+ 'text' => __( 'Title Font Size', 'ti-woocommerce-wishlist' ),
78
+ ),
79
+ array(
80
+ 'type' => 'color',
81
+ 'selector' => '.tinv-wishlist',
82
+ 'element' => 'color',
83
+ 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
84
+ ),
85
+ array(
86
+ 'type' => 'select',
87
+ 'selector' => '.tinv-wishlist,.tinv-wishlist button,.tinv-wishlist input,.tinv-wishlist select,.tinv-wishlist textarea,.tinv-wishlist button,.tinv-wishlist input[type="button"],.tinv-wishlist input[type="reset"],.tinv-wishlist input[type="submit"]',
88
+ 'element' => 'font-family',
89
+ 'text' => __( 'Font', 'tinvwl' ),
90
+ 'options' => $font_family,
91
+ ),
92
+
93
+ array(
94
+ 'type' => 'group',
95
+ 'title' => __( 'links', 'ti-woocommerce-wishlist' ),
96
+ 'show_names' => true,
97
+ ),
98
+ array(
99
+ 'type' => 'color',
100
+ 'selector' => '.tinv-wishlist a:not(.button)',
101
+ 'element' => 'color',
102
+ 'text' => __( 'Color', 'ti-woocommerce-wishlist' ),
103
+ ),
104
+ array(
105
+ 'type' => 'color',
106
+ 'selector' => '.tinv-wishlist a:not(.button):hover,.tinv-wishlist a:not(.button):active,.tinv-wishlist a:not(.button):focus',
107
+ 'element' => 'color',
108
+ 'text' => __( 'Hover Color', 'ti-woocommerce-wishlist' ),
109
+ ),
110
+ array(
111
+ 'type' => 'select',
112
+ 'selector' => '.tinv-wishlist a:not(.button)',
113
+ 'element' => 'text-decoration',
114
+ 'text' => __( 'Underline', 'ti-woocommerce-wishlist' ),
115
+ 'options' => array(
116
+ 'underline' => __( 'Yes', 'ti-woocommerce-wishlist' ),
117
+ 'none !important' => __( 'No', 'ti-woocommerce-wishlist' ),
118
+ ),
119
+ ),
120
+ array(
121
+ 'type' => 'select',
122
+ 'selector' => '.tinv-wishlist a:not(.button)',
123
+ 'element' => 'font-family',
124
+ 'text' => __( 'Font', 'tinvwl' ),
125
+ 'options' => $font_family,
126
+ ),
127
+
128
+ array(
129
+ 'type' => 'group',
130
+ 'title' => __( 'fields', 'ti-woocommerce-wishlist' ),
131
+ 'show_names' => true,
132
+ ),
133
+ array(
134
+ 'type' => 'color',
135
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
136
+ 'element' => 'background-color',
137
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
138
+ ),
139
+ array(
140
+ 'type' => 'color',
141
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
142
+ 'element' => 'border-color',
143
+ 'text' => __( 'Border Color', 'ti-woocommerce-wishlist' ),
144
+ ),
145
+ array(
146
+ 'type' => 'text',
147
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
148
+ 'element' => 'border-radius',
149
+ 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
150
+ ),
151
+ array(
152
+ 'type' => 'color',
153
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
154
+ 'element' => 'color',
155
+ 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
156
+ ),
157
+ array(
158
+ 'type' => 'select',
159
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist select,.tinv-wishlist .product-quantity input[type="text"].qty',
160
+ 'element' => 'font-family',
161
+ 'text' => __( 'Font', 'tinvwl' ),
162
+ 'options' => $font_family,
163
+ ),
164
+ array(
165
+ 'type' => 'text',
166
+ 'selector' => '.tinv-wishlist input[type="text"],.tinv-wishlist input[type="email"],.tinv-wishlist input[type="url"],.tinv-wishlist input[type="password"],.tinv-wishlist input[type="search"],.tinv-wishlist input[type="tel"],.tinv-wishlist input[type="number"],.tinv-wishlist textarea,.tinv-wishlist .product-quantity input[type="text"].qty',
167
+ 'element' => 'font-size',
168
+ 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
169
+ ),
170
+ array(
171
+ 'type' => 'text',
172
+ 'selector' => '.tinv-wishlist select',
173
+ 'element' => 'font-size',
174
+ 'text' => __( 'Select Font Size', 'ti-woocommerce-wishlist' ),
175
+ ),
176
+
177
+ array(
178
+ 'type' => 'group',
179
+ 'title' => __( 'add to wishlist product page button', 'ti-woocommerce-wishlist' ),
180
+ 'show_names' => true,
181
+ ),
182
+ array(
183
+ 'type' => 'color',
184
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
185
+ 'element' => 'background-color',
186
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
187
+ ),
188
+ array(
189
+ 'type' => 'color',
190
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:focus',
191
+ 'element' => 'background-color',
192
+ 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
193
+ ),
194
+ array(
195
+ 'type' => 'color',
196
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
197
+ 'element' => 'color',
198
+ 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
199
+ ),
200
+ array(
201
+ 'type' => 'color',
202
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
203
+ 'element' => 'color',
204
+ 'text' => __( 'Button Text Color', 'ti-woocommerce-wishlist' ),
205
+ ),
206
+ array(
207
+ 'type' => 'color',
208
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button:focus',
209
+ 'element' => 'color',
210
+ 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
211
+ ),
212
+ array(
213
+ 'type' => 'color',
214
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:hover,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:active,.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button:focus',
215
+ 'element' => 'color',
216
+ 'text' => __( 'Button Text Hover Color', 'ti-woocommerce-wishlist' ),
217
+ ),
218
+ array(
219
+ 'type' => 'select',
220
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
221
+ 'element' => 'font-family',
222
+ 'text' => __( 'Font', 'tinvwl' ),
223
+ 'options' => $font_family,
224
+ ),
225
+ array(
226
+ 'type' => 'text',
227
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button',
228
+ 'element' => 'font-size',
229
+ 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
230
+ ),
231
+ array(
232
+ 'type' => 'text',
233
+ 'selector' => '.woocommerce div.product form.cart .tinvwl_add_to_wishlist_button.button',
234
+ 'element' => 'border-radius',
235
+ 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
236
+ ),
237
+
238
+ array(
239
+ 'type' => 'group',
240
+ 'title' => __( 'accent buttons style', 'ti-woocommerce-wishlist' ),
241
+ 'show_names' => true,
242
+ ),
243
+ array(
244
+ 'type' => 'color',
245
+ 'selector' => '.tinv-wishlist button',
246
+ 'element' => 'background-color',
247
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
248
+ ),
249
+ array(
250
+ 'type' => 'color',
251
+ 'selector' => '.tinv-wishlist button:hover,.tinv-wishlist button:focus,.tinv-wishlist input[type="button"]:hover,.tinv-wishlist input[type="button"]:focus,.tinv-wishlist input[type="reset"]:hover,.tinv-wishlist input[type="reset"]:focus,.tinv-wishlist input[type="submit"]:hover,.tinv-wishlist input[type="submit"]:focus',
252
+ 'element' => 'background-color',
253
+ 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
254
+ ),
255
+ array(
256
+ 'type' => 'color',
257
+ 'selector' => '.tinv-wishlist button',
258
+ 'element' => 'color',
259
+ 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
260
+ ),
261
+ array(
262
+ 'type' => 'color',
263
+ 'selector' => '.tinv-wishlist button:hover,.tinv-wishlist button:focus,.tinv-wishlist input[type="button"]:hover,.tinv-wishlist input[type="button"]:focus,.tinv-wishlist input[type="reset"]:hover,.tinv-wishlist input[type="reset"]:focus,.tinv-wishlist input[type="submit"]:hover,.tinv-wishlist input[type="submit"]:focus',
264
+ 'element' => 'color',
265
+ 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
266
+ ),
267
+ array(
268
+ 'type' => 'select',
269
+ 'selector' => '.tinv-wishlist button',
270
+ 'element' => 'font-family',
271
+ 'text' => __( 'Font', 'tinvwl' ),
272
+ 'options' => $font_family,
273
+ ),
274
+ array(
275
+ 'type' => 'text',
276
+ 'selector' => '.tinv-wishlist button',
277
+ 'element' => 'font-size',
278
+ 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
279
+ ),
280
+ array(
281
+ 'type' => 'text',
282
+ 'selector' => '.widget .tinvwl-search-submit:before',
283
+ 'element' => 'font-size',
284
+ 'text' => __( 'Search Widget Font Size', 'tinvwl' ),
285
+ ),
286
+ array(
287
+ 'type' => 'text',
288
+ 'selector' => '.tinv-wishlist button',
289
+ 'element' => 'border-radius',
290
+ 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
291
+ ),
292
+
293
+ array(
294
+ 'type' => 'group',
295
+ 'title' => __( 'normal buttons style', 'ti-woocommerce-wishlist' ),
296
+ 'show_names' => true,
297
+ ),
298
+ array(
299
+ 'type' => 'color',
300
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
301
+ 'element' => 'background-color',
302
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
303
+ ),
304
+ array(
305
+ 'type' => 'color',
306
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit:hover,.woocommerce.tinv-wishlist a.button:hover,.woocommerce.tinv-wishlist button.button:hover,.woocommerce.tinv-wishlist input.button:hover',
307
+ 'element' => 'background-color',
308
+ 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
309
+ ),
310
+ array(
311
+ 'type' => 'color',
312
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
313
+ 'element' => 'color',
314
+ 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
315
+ ),
316
+ array(
317
+ 'type' => 'color',
318
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit:hover,.woocommerce.tinv-wishlist a.button:hover,.woocommerce.tinv-wishlist button.button:hover,.woocommerce.tinv-wishlist input.button:hover',
319
+ 'element' => 'color',
320
+ 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
321
+ ),
322
+ array(
323
+ 'type' => 'select',
324
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
325
+ 'element' => 'font-family',
326
+ 'text' => __( 'Font', 'tinvwl' ),
327
+ 'options' => $font_family,
328
+ ),
329
+ array(
330
+ 'type' => 'text',
331
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
332
+ 'element' => 'font-size',
333
+ 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
334
+ ),
335
+ array(
336
+ 'type' => 'text',
337
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit,.woocommerce.tinv-wishlist a.button,.woocommerce.tinv-wishlist button.button,.woocommerce.tinv-wishlist input.button',
338
+ 'element' => 'border-radius',
339
+ 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
340
+ ),
341
+
342
+ array(
343
+ 'type' => 'group',
344
+ 'title' => __( 'add to cart button', 'ti-woocommerce-wishlist' ),
345
+ 'show_names' => true,
346
+ ),
347
+ array(
348
+ 'type' => 'color',
349
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
350
+ 'element' => 'background-color',
351
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
352
+ ),
353
+ array(
354
+ 'type' => 'color',
355
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt:hover,.woocommerce.tinv-wishlist a.button.alt:hover,.woocommerce.tinv-wishlist button.button.alt:hover,.woocommerce.tinv-wishlist input.button.alt:hover',
356
+ 'element' => 'background-color',
357
+ 'text' => __( 'Background Hover Color', 'ti-woocommerce-wishlist' ),
358
+ ),
359
+ array(
360
+ 'type' => 'color',
361
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
362
+ 'element' => 'color',
363
+ 'text' => __( 'Text Color', 'ti-woocommerce-wishlist' ),
364
+ ),
365
+ array(
366
+ 'type' => 'color',
367
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt:hover,.woocommerce.tinv-wishlist a.button.alt:hover,.woocommerce.tinv-wishlist button.button.alt:hover,.woocommerce.tinv-wishlist input.button.alt:hover',
368
+ 'element' => 'color',
369
+ 'text' => __( 'Text Hover Color', 'ti-woocommerce-wishlist' ),
370
+ ),
371
+ array(
372
+ 'type' => 'select',
373
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
374
+ 'element' => 'font-family',
375
+ 'text' => __( 'Font', 'tinvwl' ),
376
+ 'options' => $font_family,
377
+ ),
378
+ array(
379
+ 'type' => 'text',
380
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
381
+ 'element' => 'font-size',
382
+ 'text' => __( 'Font Size', 'ti-woocommerce-wishlist' ),
383
+ ),
384
+ array(
385
+ 'type' => 'text',
386
+ 'selector' => '.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt',
387
+ 'element' => 'border-radius',
388
+ 'text' => __( 'Border Radius', 'ti-woocommerce-wishlist' ),
389
+ ),
390
+
391
+ array(
392
+ 'type' => 'group',
393
+ 'title' => __( 'table', 'ti-woocommerce-wishlist' ),
394
+ 'show_names' => true,
395
+ ),
396
+ array(
397
+ 'type' => 'color',
398
+ 'selector' => '.tinv-wishlist table,.tinv-wishlist table td',
399
+ 'element' => 'background-color',
400
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
401
+ ),
402
+ array(
403
+ 'type' => 'color',
404
+ 'selector' => '.tinv-wishlist table,.tinv-wishlist table th,.tinv-wishlist table td',
405
+ 'element' => 'border-color',
406
+ 'text' => __( 'Border Color', 'ti-woocommerce-wishlist' ),
407
+ ),
408
+ array(
409
+ 'type' => 'color',
410
+ 'selector' => '.tinv-wishlist table th',
411
+ 'element' => 'background-color',
412
+ 'text' => __( 'Table Head Background Color', 'ti-woocommerce-wishlist' ),
413
+ ),
414
+ array(
415
+ 'type' => 'color',
416
+ 'selector' => '.tinv-wishlist table th',
417
+ 'element' => 'color',
418
+ 'text' => __( 'Table Head Text Color', 'ti-woocommerce-wishlist' ),
419
+ ),
420
+ array(
421
+ 'type' => 'select',
422
+ 'selector' => '.tinv-wishlist table th',
423
+ 'element' => 'font-family',
424
+ 'text' => __( 'Table Head Font', 'tinvwl' ),
425
+ 'options' => $font_family,
426
+ ),
427
+ array(
428
+ 'type' => 'text',
429
+ 'selector' => '.tinv-wishlist table th',
430
+ 'element' => 'font-size',
431
+ 'text' => __( 'Table Head Font Size', 'ti-woocommerce-wishlist' ),
432
+ ),
433
+ array(
434
+ 'type' => 'color',
435
+ 'selector' => '.tinv-wishlist table td',
436
+ 'element' => 'color',
437
+ 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
438
+ ),
439
+ array(
440
+ 'type' => 'select',
441
+ 'selector' => '.tinv-wishlist table td',
442
+ 'element' => 'font-family',
443
+ 'text' => __( 'Content Text Font', 'tinvwl' ),
444
+ 'options' => $font_family,
445
+ ),
446
+ array(
447
+ 'type' => 'text',
448
+ 'selector' => '.tinv-wishlist table td',
449
+ 'element' => 'font-size',
450
+ 'text' => __( 'Content Text Font Size', 'ti-woocommerce-wishlist' ),
451
+ ),
452
+ array(
453
+ 'type' => 'color',
454
+ 'selector' => '.tinv-wishlist td.product-price',
455
+ 'element' => 'color',
456
+ 'text' => __( 'Price Color', 'ti-woocommerce-wishlist' ),
457
+ ),
458
+ array(
459
+ 'type' => 'select',
460
+ 'selector' => '.tinv-wishlist td.product-price',
461
+ 'element' => 'font-family',
462
+ 'text' => __( 'Price Font', 'tinvwl' ),
463
+ 'options' => $font_family,
464
+ ),
465
+ array(
466
+ 'type' => 'text',
467
+ 'selector' => '.tinv-wishlist td.product-price',
468
+ 'element' => 'font-size',
469
+ 'text' => __( 'Price Font Size', 'ti-woocommerce-wishlist' ),
470
+ ),
471
+ array(
472
+ 'type' => 'color',
473
+ 'selector' => '.tinv-wishlist td.product-price ins span.amount',
474
+ 'element' => 'color',
475
+ 'text' => __( 'Special Price Color', 'ti-woocommerce-wishlist' ),
476
+ ),
477
+ array(
478
+ 'type' => 'color',
479
+ 'selector' => '.tinv-wishlist td.product-price ins span.amount',
480
+ 'element' => 'background-color',
481
+ 'text' => __( 'Special Price Background Color', 'ti-woocommerce-wishlist' ),
482
+ ),
483
+ array(
484
+ 'type' => 'color',
485
+ 'selector' => '.tinv-wishlist .social-buttons li a',
486
+ 'element' => 'background-color',
487
+ 'text' => __( 'Social Icons Background Color', 'ti-woocommerce-wishlist' ),
488
+ ),
489
+ array(
490
+ 'type' => 'color',
491
+ 'selector' => '.tinv-wishlist .social-buttons li a:hover',
492
+ 'element' => 'background-color',
493
+ 'text' => __( 'Social Icons Background Hover Color', 'ti-woocommerce-wishlist' ),
494
+ ),
495
+ array(
496
+ 'type' => 'select',
497
+ 'selector' => '.tinv-wishlist .social-buttons li a',
498
+ 'element' => '-ti-background',
499
+ 'text' => __( 'Social Icons Color', 'ti-woocommerce-wishlist' ),
500
+ 'options' => array(
501
+ 'dark' => __( 'Dark', 'ti-woocommerce-wishlist' ),
502
+ 'white' => __( 'White', 'ti-woocommerce-wishlist' ),
503
+ ),
504
+ 'validate' => FILTER_DEFAULT,
505
+ ),
506
+
507
+ array(
508
+ 'type' => 'group',
509
+ 'title' => __( 'popups', 'ti-woocommerce-wishlist' ),
510
+ 'show_names' => true,
511
+ ),
512
+ array(
513
+ 'type' => 'color',
514
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner',
515
+ 'element' => 'background-color',
516
+ 'text' => __( 'Background Color', 'ti-woocommerce-wishlist' ),
517
+ ),
518
+ array(
519
+ 'type' => 'color',
520
+ 'selector' => '.tinv-wishlist .tinv-modal h2',
521
+ 'element' => 'color',
522
+ 'text' => __( 'Title Color', 'ti-woocommerce-wishlist' ),
523
+ ),
524
+ array(
525
+ 'type' => 'select',
526
+ 'selector' => '.tinv-wishlist .tinv-modal h2',
527
+ 'element' => 'font-family',
528
+ 'text' => __( 'Title Font', 'tinvwl' ),
529
+ 'options' => $font_family,
530
+ ),
531
+ array(
532
+ 'type' => 'text',
533
+ 'selector' => '.tinv-wishlist .tinv-modal h2',
534
+ 'element' => 'font-size',
535
+ 'text' => __( 'Title Font Size', 'ti-woocommerce-wishlist' ),
536
+ ),
537
+ array(
538
+ 'type' => 'color',
539
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner',
540
+ 'element' => 'color',
541
+ 'text' => __( 'Content Text Color', 'ti-woocommerce-wishlist' ),
542
+ ),
543
+ array(
544
+ 'type' => 'select',
545
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
546
+ 'element' => 'font-family',
547
+ 'text' => __( 'Content Text Font', 'tinvwl' ),
548
+ 'options' => $font_family,
549
+ ),
550
+ array(
551
+ 'type' => 'text',
552
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
553
+ 'element' => 'font-size',
554
+ 'text' => __( 'Content Text Font Size', 'ti-woocommerce-wishlist' ),
555
+ ),
556
+ array(
557
+ 'type' => 'color',
558
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
559
+ 'element' => 'background-color',
560
+ 'text' => __( 'Fields Background Color', 'ti-woocommerce-wishlist' ),
561
+ ),
562
+ array(
563
+ 'type' => 'color',
564
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
565
+ 'element' => 'border-color',
566
+ 'text' => __( 'Fields Border Color', 'ti-woocommerce-wishlist' ),
567
+ ),
568
+ array(
569
+ 'type' => 'text',
570
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select',
571
+ 'element' => 'border-radius',
572
+ 'text' => __( 'Fields Border Radius', 'ti-woocommerce-wishlist' ),
573
+ ),
574
+ array(
575
+ 'type' => 'color',
576
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input,.tinv-wishlist .tinv-modal .tinv-modal-inner select,.tinv-wishlist .tinv-modal .tinv-modal-inner textarea',
577
+ 'element' => 'color',
578
+ 'text' => __( 'Fields Text Color', 'ti-woocommerce-wishlist' ),
579
+ ),
580
+ array(
581
+ 'type' => 'color',
582
+ 'selector' => '.tinv-wishlist .tinv-modal .tinv-modal-inner input::-webkit-input-placeholder',
583
+ 'element' => 'color',
584
+ 'text' => __( 'Fields Placeholder Text Color', 'ti-woocommerce-wishlist' ),
585
+ ),
586
+ array(
587
+ 'type' => 'color',
588
+ 'selector' => '.tinv-wishlist .tinv-modal button.button,.tinv-wishlist .tinv-modal .tinv-close-modal',
589
+ 'element' => 'background-color',
590
+ 'text' => __( 'Normal Buttons Background Color', 'ti-woocommerce-wishlist' ),
591
+ ),
592
+ array(
593
+ 'type' => 'color',
594
+ 'selector' => '.tinv-wishlist .tinv-modal button.button:hover,.tinv-wishlist .tinv-modal .tinv-close-modal:hover',
595
+ 'element' => 'background-color',
596
+ 'text' => __( 'Normal Buttons Background Hover Color', 'ti-woocommerce-wishlist' ),
597
+ ),
598
+ array(
599
+ 'type' => 'color',
600
+ 'selector' => '.tinv-wishlist .tinv-modal button.button,.tinv-wishlist .tinv-modal .tinv-close-modal',
601
+ 'element' => 'color',
602
+ 'text' => __( 'Normal Buttons Text Color', 'ti-woocommerce-wishlist' ),
603
+ ),
604
+ array(
605
+ 'type' => 'color',
606
+ 'selector' => '.tinv-wishlist .tinv-modal button.button:hover,.tinv-wishlist .tinv-modal .tinv-close-modal:hover',
607
+ 'element' => 'color',
608
+ 'text' => __( 'Normal Buttons Text Hover Color', 'ti-woocommerce-wishlist' ),
609
+ ),
610
+ array(
611
+ 'type' => 'color',
612
+ 'selector' => '.tinv-wishlist .tinv-modal button:not(.button)',
613
+ 'element' => 'background-color',
614
+ 'text' => __( 'Accent Buttons Background Color', 'ti-woocommerce-wishlist' ),
615
+ ),
616
+ array(
617
+ 'type' => 'color',
618
+ 'selector' => '.tinv-wishlist .tinv-modal button:not(.button):hover,.tinv-wishlist .tinv-modal button:not(.button):active,.tinv-wishlist .tinv-modal button:not(.button):focus',
619
+ 'element' => 'background-color',
620
+ 'text' => __( 'Accent Buttons Background Hover Color', 'ti-woocommerce-wishlist' ),
621
+ ),
622
+ array(
623
+ 'type' => 'color',
624
+ 'selector' => '.tinv-wishlist .tinv-modal button:not(.button)',
625
+ 'element' => 'color',
626
+ 'text' => __( 'Accent Buttons Text Color', 'ti-woocommerce-wishlist' ),
627
+ ),
628
+ array(
629
+ 'type' => 'color',
630
+ 'selector' => '.tinv-wishlist .tinv-modal button:not(.button):hover,.tinv-wishlist .tinv-modal button:not(.button):active,.tinv-wishlist .tinv-modal button:not(.button):focus',
631
+ 'element' => 'color',
632
+ 'text' => __( 'Accent Buttons Text Hover Color', 'ti-woocommerce-wishlist' ),
633
+ ),
634
+ );
635
+ }
636
+ }
admin/settings/upgrade.class.php CHANGED
@@ -1,40 +1,40 @@
1
- <?php
2
- /**
3
- * Admin settings class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin
7
- * @subpackage Upgrade page
8
- */
9
-
10
- // If this file is called directly, abort.
11
- if ( ! defined( 'ABSPATH' ) ) {
12
- die;
13
- }
14
-
15
- /**
16
- * Admin settings class
17
- */
18
- class TInvWL_Admin_Settings_upgrade extends TInvWL_Admin_BaseSection {
19
-
20
- /**
21
- * Priority for admin menu
22
- *
23
- * @var integer
24
- */
25
- public $priority = 200;
26
-
27
- /**
28
- * Menu array
29
- *
30
- * @return array
31
- */
32
- function menu() {
33
- return array(
34
- 'title' => __( 'Upgrade to Pro', 'ti-woocommerce-wishlist' ),
35
- 'page_title' => __( 'Premium Features', 'ti-woocommerce-wishlist' ),
36
- 'method' => array( $this, '_print_' ),
37
- 'slug' => 'upgrade',
38
- );
39
- }
40
- }
1
+ <?php
2
+ /**
3
+ * Admin settings class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin
7
+ * @subpackage Upgrade page
8
+ */
9
+
10
+ // If this file is called directly, abort.
11
+ if ( ! defined( 'ABSPATH' ) ) {
12
+ die;
13
+ }
14
+
15
+ /**
16
+ * Admin settings class
17
+ */
18
+ class TInvWL_Admin_Settings_upgrade extends TInvWL_Admin_BaseSection {
19
+
20
+ /**
21
+ * Priority for admin menu
22
+ *
23
+ * @var integer
24
+ */
25
+ public $priority = 200;
26
+
27
+ /**
28
+ * Menu array
29
+ *
30
+ * @return array
31
+ */
32
+ function menu() {
33
+ return array(
34
+ 'title' => __( 'Upgrade to Pro', 'ti-woocommerce-wishlist' ),
35
+ 'page_title' => __( 'Premium Features', 'ti-woocommerce-wishlist' ),
36
+ 'method' => array( $this, '_print_' ),
37
+ 'slug' => 'upgrade',
38
+ );
39
+ }
40
+ }
admin/tinvwl.class.php CHANGED
@@ -1,162 +1,162 @@
1
- <?php
2
- /**
3
- * Admin pages class
4
- *
5
- * @since 1.0.0
6
- * @package TInvWishlist\Admin
7
- */
8
-
9
- // If this file is called directly, abort.
10
- if ( ! defined( 'ABSPATH' ) ) {
11
- die;
12
- }
13
-
14
- /**
15
- * Admin pages class
16
- */
17
- class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
18
-
19
- /**
20
- * Constructor
21
- *
22
- * @param string $plugin_name Plugin name.
23
- * @param string $version Plugin version.
24
- */
25
- function __construct( $plugin_name, $version ) {
26
- $this->_n = $plugin_name;
27
- $this->_v = $version;
28
- }
29
-
30
- /**
31
- * Load functions.
32
- * Create Wishlist and Product class.
33
- * Load settings classes.
34
- */
35
- function load_function() {
36
- $this->load_settings();
37
-
38
- $this->define_hooks();
39
- }
40
-
41
- /**
42
- * Load settings classes.
43
- *
44
- * @return boolean
45
- */
46
- function load_settings() {
47
- $dir = TINVWL_PATH . 'admin/settings/';
48
- if ( ! file_exists( $dir ) || ! is_dir( $dir ) ) {
49
- return false;
50
- }
51
- $files = scandir( $dir );
52
- foreach ( $files as $value ) {
53
- if ( preg_match( '/\.class\.php$/i', $value ) ) {
54
- $file = preg_replace( '/\.class\.php$/i', '', $value );
55
- $class = 'TInvWL_Admin_Settings_' . ucfirst( $file );
56
- $settings = new $class( $this->_n, $this->_v );
57
- }
58
- }
59
- return true;
60
- }
61
-
62
- /**
63
- * Define hooks
64
- */
65
- function define_hooks() {
66
- add_action( 'init', array( $this, 'action_session' ), 1 );
67
- add_action( 'admin_menu', array( $this, 'action_menu' ) );
68
- if ( ! tinv_get_option( 'page', 'wishlist' ) ) {
69
- add_action( 'admin_notices', array( $this, 'empty_page_admin_notice' ) );
70
- }
71
- }
72
-
73
- /**
74
- * Error notice if wishlist page not set.
75
- */
76
- function empty_page_admin_notice() {
77
- $message = __( 'Link to Wishlists does not work!', 'ti-woocommerce-wishlist' );
78
- $link_message = __( 'Please enter the page wishlist.', 'ti-woocommerce-wishlist' );
79
- printf( '<div class="notice notice-error"><p>%1$s <a href="%2$s">%3$s</a></p></div>', $message, esc_url( $this->admin_url( '' ) . '#general' ), $link_message ); // WPCS: xss ok.
80
- }
81
-
82
- /**
83
- * Creation mune and sub-menu
84
- */
85
- function action_menu() {
86
- $page = add_menu_page( 'TI Wishlists', 'TI Wishlists', 'manage_options', $this->_n, null, TINVWL_URL . 'asset/img/icon_menu.png', 56 );
87
- add_action( "load-$page", array( $this, 'onload' ) );
88
- $menu = apply_filters( $this->_n . '_admin_menu', array() );
89
- foreach ( $menu as $item ) {
90
- if ( ! array_key_exists( 'page_title', $item ) ) {
91
- $item['page_title'] = $item['title'];
92
- }
93
- if ( ! array_key_exists( 'parent', $item ) ) {
94
- $item['parent'] = $this->_n;
95
- }
96
- if ( ! array_key_exists( 'capability', $item ) ) {
97
- $item['capability'] = 'manage_options';
98
- }
99
- $item['slug'] = implode( '-', array_filter( array( $this->_n, $item['slug'] ) ) );
100
-
101
- $page = add_submenu_page( $item['parent'], $item['page_title'], $item['title'], $item['capability'], $item['slug'], $item['method'] );
102
- add_action( "load-$page", array( $this, 'onload' ) );
103
- }
104
- }
105
-
106
- /**
107
- * Create session for notification
108
- */
109
- function action_session() {
110
- if ( ! session_id() ) { // @codingStandardsIgnoreLine WordPress.VIP.SessionFunctionsUsage.session_id
111
- session_start(); // @codingStandardsIgnoreLine WordPress.VIP.SessionFunctionsUsage.session_start
112
- }
113
- }
114
-
115
- /**
116
- * Load style and javascript
117
- */
118
- function onload() {
119
- add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
120
- add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
121
- add_filter( 'admin_footer_text', array( $this, 'footer_admin' ) );
122
-
123
- add_filter( $this->_n . '_view_panelstatus', array( $this, 'status_panel' ), 9999 );
124
- }
125
-
126
- /**
127
- * Load style
128
- */
129
- function enqueue_styles() {
130
- wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
131
- wp_enqueue_style( $this->_n, TINVWL_URL . 'asset/css/admin.css', array(), $this->_v, 'all' );
132
- wp_enqueue_style( $this->_n . '-font-awesome', TINVWL_URL . 'asset/css/font-awesome.min.css', array(), $this->_v, 'all' );
133
- wp_enqueue_style( $this->_n . '-form', TINVWL_URL . 'asset/css/admin-form.css', array(), $this->_v, 'all' );
134
- }
135
-
136
- /**
137
- * Load javascript
138
- */
139
- function enqueue_scripts() {
140
- $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
141
- wp_enqueue_script( $this->_n . '-bootstrap', TINVWL_URL . 'asset/js/bootstrap' . $suffix . '.js', array( 'jquery' ), $this->_v, 'all' );
142
- wp_enqueue_script( $this->_n, TINVWL_URL . 'asset/js/admin' . $suffix . '.js', array( 'jquery', 'wp-color-picker' ), $this->_v, 'all' );
143
- }
144
-
145
- /**
146
- * Add plugin footer copywriting
147
- */
148
- function footer_admin() {
149
- echo 'Made with <i class="fa fa-heart"></i> by <a href="https://templateinvaders.com/">TemplateInvaders</a><br />If you like TI.Wishlist please leave us a <a href="https://profiles.wordpress.org/templateinvaders"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i></span></a> rating.';
150
- }
151
-
152
- /**
153
- * Create Upgrade button
154
- *
155
- * @param array $panel Panel Button.
156
- * @return array
157
- */
158
- function status_panel( $panel ) {
159
- $panel[] = sprintf( '<a class="tinvwl-btn red w-icon smaller-txt" href="%s"><i class="fa fa-star"></i><span class="tinvwl-txt">%s</span></a>', $this->admin_url( 'upgrade' ), __( 'Upgrade to Pro', 'ti-woocommerce-wishlist' ) );
160
- return $panel;
161
- }
162
- }
1
+ <?php
2
+ /**
3
+ * Admin pages class
4
+ *
5
+ * @since 1.0.0
6
+ * @package TInvWishlist\Admin
7
+ */
8
+
9
+ // If this file is called directly, abort.
10
+ if ( ! defined( 'ABSPATH' ) ) {
11
+ die;
12
+ }
13
+
14
+ /**
15
+ * Admin pages class
16
+ */
17
+ class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
18
+
19
+ /**
20
+ * Constructor
21
+ *
22
+ * @param string $plugin_name Plugin name.
23
+ * @param string $version Plugin version.
24
+ */
25
+ function __construct( $plugin_name, $version ) {
26
+ $this->_n = $plugin_name;
27
+ $this->_v = $version;
28
+ }
29
+
30
+ /**
31
+ * Load functions.
32
+ * Create Wishlist and Product class.
33
+ * Load settings classes.
34
+ */
35
+ function load_function() {
36
+ $this->load_settings();
37
+
38
+ $this->define_hooks();
39
+ }
40
+
41
+ /**
42
+ * Load settings classes.
43
+ *
44
+ * @return boolean
45
+ */
46
+ function load_settings() {
47
+ $dir = TINVWL_PATH . 'admin/settings/';
48
+ if ( ! file_exists( $dir ) || ! is_dir( $dir ) ) {
49
+ return false;
50
+ }
51
+ $files = scandir( $dir );
52
+ foreach ( $files as $value ) {
53
+ if ( preg_match( '/\.class\.php$/i', $value ) ) {
54
+ $file = preg_replace( '/\.class\.php$/i', '', $value );
55
+ $class = 'TInvWL_Admin_Settings_' . ucfirst( $file );
56
+ $settings = new $class( $this->_n, $this->_v );
57
+ }
58
+ }
59
+ return true;
60
+ }
61
+
62
+ /**
63
+ * Define hooks
64
+ */
65
+ function define_hooks() {
66
+ add_action( 'init', array( $this, 'action_session' ), 1 );
67
+ add_action( 'admin_menu', array( $this, 'action_menu' ) );
68
+ if ( ! tinv_get_option( 'page', 'wishlist' ) ) {
69
+ add_action( 'admin_notices', array( $this, 'empty_page_admin_notice' ) );
70
+ }
71
+ }
72
+
73
+ /**
74
+ * Error notice if wishlist page not set.
75
+ */
76
+ function empty_page_admin_notice() {
77
+ $message = __( 'Link to Wishlists does not work!', 'ti-woocommerce-wishlist' );
78
+ $link_message = __( 'Please enter the page wishlist.', 'ti-woocommerce-wishlist' );
79
+ printf( '<div class="notice notice-error"><p>%1$s <a href="%2$s">%3$s</a></p></div>', $message, esc_url( $this->admin_url( '' ) . '#general' ), $link_message ); // WPCS: xss ok.
80
+ }
81
+
82
+ /**
83
+ * Creation mune and sub-menu
84
+ */
85
+ function action_menu() {
86
+ $page = add_menu_page( 'TI Wishlists', 'TI Wishlists', 'manage_options', $this->_n, null, TINVWL_URL . 'asset/img/icon_menu.png', 56 );
87
+ add_action( "load-$page", array( $this, 'onload' ) );
88
+ $menu = apply_filters( $this->_n . '_admin_menu', array() );
89
+ foreach ( $menu as $item ) {
90
+ if ( ! array_key_exists( 'page_title', $item ) ) {
91
+ $item['page_title'] = $item['title'];
92
+ }
93
+ if ( ! array_key_exists( 'parent', $item ) ) {
94
+ $item['parent'] = $this->_n;
95
+ }
96
+ if ( ! array_key_exists( 'capability', $item ) ) {
97
+ $item['capability'] = 'manage_options';
98
+ }
99
+ $item['slug'] = implode( '-', array_filter( array( $this->_n, $item['slug'] ) ) );
100
+
101
+ $page = add_submenu_page( $item['parent'], $item['page_title'], $item['title'], $item['capability'], $item['slug'], $item['method'] );
102
+ add_action( "load-$page", array( $this, 'onload' ) );
103
+ }
104
+ }
105
+
106
+ /**
107
+ * Create session for notification
108
+ */
109
+ function action_session() {
110
+ if ( ! session_id() ) { // @codingStandardsIgnoreLine WordPress.VIP.SessionFunctionsUsage.session_id
111
+ session_start(); // @codingStandardsIgnoreLine WordPress.VIP.SessionFunctionsUsage.session_start
112
+ }
113
+ }
114
+
115
+ /**
116
+ * Load style and javascript
117
+ */
118
+ function onload() {
119
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
120
+ add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_scripts' ) );
121
+ add_filter( 'admin_footer_text', array( $this, 'footer_admin' ) );
122
+
123
+ add_filter( $this->_n . '_view_panelstatus', array( $this, 'status_panel' ), 9999 );
124
+ }
125
+
126
+ /**
127
+ * Load style
128
+ */
129
+ function enqueue_styles() {
130
+ wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
131
+ wp_enqueue_style( $this->_n, TINVWL_URL . 'asset/css/admin.css', array(), $this->_v, 'all' );
132
+ wp_enqueue_style( $this->_n . '-font-awesome', TINVWL_URL . 'asset/css/font-awesome.min.css', array(), $this->_v, 'all' );
133
+ wp_enqueue_style( $this->_n . '-form', TINVWL_URL . 'asset/css/admin-form.css', array(), $this->_v, 'all' );
134
+ }
135
+
136
+ /**
137
+ * Load javascript
138
+ */
139
+ function enqueue_scripts() {
140
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
141
+ wp_enqueue_script( $this->_n . '-bootstrap', TINVWL_URL . 'asset/js/bootstrap' . $suffix . '.js', array( 'jquery' ), $this->_v, 'all' );
142
+ wp_enqueue_script( $this->_n, TINVWL_URL . 'asset/js/admin' . $suffix . '.js', array( 'jquery', 'wp-color-picker' ), $this->_v, 'all' );
143
+ }
144
+
145
+ /**
146
+ * Add plugin footer copywriting
147
+ */
148
+ function footer_admin() {
149
+ echo 'Made with <i class="fa fa-heart"></i> by <a href="https://templateinvaders.com/">TemplateInvaders</a><br />If you like TI.Wishlist please leave us a <a href="https://profiles.wordpress.org/templateinvaders"><span><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i><i class="fa fa-star"></i></span></a> rating.';
150
+ }
151
+
152
+ /**
153
+ * Create Upgrade button
154
+ *
155
+ * @param array $panel Panel Button.
156
+ * @return array
157
+ */
158
+ function status_panel( $panel ) {
159
+ $panel[] = sprintf( '<a class="tinvwl-btn red w-icon smaller-txt" href="%s"><i class="fa fa-star"></i><span class="tinvwl-txt">%s</span></a>', $this->admin_url( 'upgrade' ), __( 'Upgrade to Pro', 'ti-woocommerce-wishlist' ) );
160
+ return $panel;
161
+ }
162
+ }
asset/css/admin-form.css CHANGED
@@ -1,411 +1,411 @@
1
- /*
2
- number input
3
- */
4
- .tiwlform-number-container {
5
- display: inline-block;
6
- margin: 2px;
7
- position: relative;
8
- vertical-align: middle;
9
- }
10
-
11
- .tiwlform-number-container input, .tiwlform-number-container button {
12
- margin: 0;
13
- font-weight: 800;
14
- display: inline-block;
15
- font-size: 14px;
16
- }
17
- .tiwlform-number-container input[type=text] {
18
- width: 50px;
19
- height: 36px;
20
- text-align: right;
21
- border-radius: 5px;
22
- line-height: 26px;
23
- margin: 0;
24
- }
25
- .tiwlform-number-container button {
26
- width: 20px;
27
- height: 38px;
28
- line-height: 38px;
29
- text-align: center;
30
- border-radius: 5px;
31
- margin: 0 2px;
32
- background-color: #f1eee8;
33
- border: 0px;
34
- color: #000;
35
- padding: 0;
36
- cursor: pointer;
37
- }
38
- .tiwlform-number-container button:hover {
39
- background-color: #96b100;
40
- color: #FFF;
41
- }
42
- /*
43
- on off button
44
- */
45
- /*.tiwlform-onoff-container input {
46
- display: none;
47
- }*/
48
- .tiwlform-onoff-container {
49
- cursor: pointer;
50
- position: relative;
51
- display: inline-block;
52
- height: 36px;
53
- width: 132px;
54
- margin: 0;
55
-
56
- -webkit-border-radius: 3px;
57
- -moz-border-radius: 3px;
58
- border-radius: 3px;
59
-
60
- -webkit-box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .16);
61
- box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .16);
62
-
63
- -webkit-transition: all .3s ease-in-out;
64
- -moz-transition: all .3s ease-in-out;
65
- -o-transition: all .3s ease-in-out;
66
- transition: all .3s ease-in-out;
67
-
68
- border: 1px solid #eae6df;
69
- background: #f1eee8;
70
- }
71
- .tiwlform-onoff-container.disabled.checked{
72
- /*-webkit-box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);
73
- box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);*/
74
- border-color: rgba(0,0,0,0.4);
75
- background-color: rgba(0,0,0,0.4);
76
- }
77
- .tiwlform-onoff-container.disabled .tiwlform-onoff-button {
78
- color: rgba(0,0,0,0.4) !important;
79
- }
80
- .tiwlform-onoff-container.checked {
81
- /*-webkit-box-shadow: inset 0 0 0 36px #96b100;
82
- box-shadow: inset 0 0 0 36px #96b100;*/
83
- background: #96b100;
84
- border-color: #96b100;
85
- }
86
- .tiwlform-onoff-container.checked .tiwlform-onoff-button {
87
- left: 4px;
88
- color: #96b100;
89
- }
90
- .tiwlform-onoff-container .tiwlform-onoff-button {
91
- display: inline-block;
92
- /*font-size: 21px;
93
- line-height: 21px;
94
- font-weight: 600;
95
- font-family: dashicons;*/
96
- font: normal normal normal 14px/1 FontAwesome;
97
- font-size: inherit;
98
- text-rendering: auto;
99
- -webkit-font-smoothing: antialiased;
100
- -moz-osx-font-smoothing: grayscale;
101
-
102
- position: absolute;
103
- top: 3px;
104
- left: 66px;
105
- width: 59px;
106
- height: 27px;
107
- line-height: 18px;
108
- padding: 4px;
109
- text-align: center;
110
-
111
- -webkit-border-radius: 3px;
112
- -moz-border-radius: 3px;
113
- border-radius: 3px;
114
-
115
- -webkit-box-shadow: 1px 1px 4px 0px rgba(2, 2, 2, .21);
116
- box-shadow: 1px 1px 4px 0px rgba(2, 2, 2, .21);
117
-
118
- -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
119
- -moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
120
- -o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
121
- transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
122
-
123
- color: #6b625a;
124
- background: #fff;
125
- }
126
- .tiwlform-onoff-container .tiwlform-onoff-button:before {
127
- /*content: "\f335";*/
128
- content: "\f00d";
129
- font-size: 11px;
130
- }
131
- .tiwlform-onoff-container.checked .tiwlform-onoff-button:before {
132
- /*content: "\f147";*/
133
- content: "\f00c";
134
- }
135
- .tiwlform-onoff-container.disabled{
136
- background-color: rgba(0,0,0,0.4);
137
- }
138
- /*
139
- input range
140
- */
141
- .tiwlform-range-container{
142
- padding-top: 25px;
143
- height: 50px;
144
- }
145
- .tiwlform-range-container .range {
146
- width: 100%;
147
- position: relative;
148
- }
149
- .tiwlform-range-container input[type=text]{
150
- display: none;
151
- }
152
- .tiwlform-range-container .line{
153
- margin: 0 5%;
154
- width: 90%;
155
- height: 4px;
156
- top: -14px;
157
- background-color: #ede8df;
158
- position: absolute;
159
-
160
- }
161
- .tiwlform-range-container .line .selector{
162
- position: absolute;
163
- z-index: 100;
164
- width: 15px;
165
- height: 15px;
166
- background: #fff;
167
- border: 5px solid #96b100;
168
- border-radius: 50%;
169
- top: -10px;
170
- right: -12.5px;
171
- cursor: pointer;
172
- }
173
- .tiwlform-range-container .line-selector{
174
- width: 0%;
175
- background-color: #96b100;
176
- height: 6px;
177
- top: -15px;
178
- }
179
- .tiwlform-range-container .label {
180
- display: -webkit-box;
181
- display: -moz-box;
182
- display: -ms-flexbox;
183
- display: -webkit-flex;
184
- display: flex;
185
- list-style: outside none none;
186
- padding: 0;
187
- }
188
- .tiwlform-range-container .label li {
189
- -moz-flex: 1 1;
190
- -webkit-flex: 1 1;
191
- -ms-flex: 1 1;
192
- flex: 1 1;
193
- position: relative;
194
- float: left;
195
- text-align: center;
196
- color: #000;
197
- padding: 10px 0;
198
- font-size: 14px;
199
- line-height: 14px;
200
- cursor: pointer;
201
- margin: 0;
202
- }
203
- .tiwlform-range-container .label li.active{
204
- font-weight: 600;
205
- }
206
- .tiwlform-range-container .label li.preactive::before{
207
- background: #96b100;
208
- width: 25px;
209
- height: 25px;
210
- top: -25px;
211
- }
212
- .tiwlform-range-container .label li::before {
213
- position: absolute;
214
- top: -20px;
215
- right: 0;
216
- left: 0;
217
- content: "";
218
- margin: 0 auto;
219
- width: 15px;
220
- height: 15px;
221
- background: #ede8df;
222
- border-radius: 50%;
223
- }
224
- /*
225
- multi radio box
226
- */
227
- .tiwlform-multirbox input {
228
- display: none;
229
- }
230
- .tiwlform-multirbox {
231
- border-radius: 3px;
232
- border: 1px solid #eae6df;
233
- box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
234
- display: inline-block;
235
- margin: 2px;
236
- position: relative;
237
- }
238
- .tiwlform-multirbox label{
239
- display: inline-block;
240
- font-weight: normal;
241
- color: #948d84;
242
- margin: 0;
243
- line-height: 26px;
244
- vertical-align: middle;
245
- padding: 5px 10px;
246
- height: 26px;
247
- }
248
- .tiwlform-multirbox label.checked{
249
- -webkit-box-shadow: inset 0 0 0 36px #96b100;
250
- box-shadow: inset 0 0 0 36px #96b100;
251
- color: #FFF;
252
- border-radius: 3px;
253
- }
254
- .tiwlform-multirbox label .dashicons{
255
- line-height: 26px;
256
- }
257
-
258
-
259
- .tinvwl-multicheckbox {
260
- border: 1px solid #dbdbdb;
261
- border-radius: 3px;
262
- box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
263
- margin: 2px;
264
- }
265
- .tinvwl-multicheckbox ul{
266
- height: 208px;
267
- overflow: auto;
268
- margin: 0;
269
- padding: 0 12px;
270
- }
271
- .tinvwl-multicheckbox li{
272
- height: 30px;
273
- }
274
- .tinvwl-multicheckbox label {
275
- width: 100%;
276
- display: inline-block;
277
- font-weight: normal;
278
- }
279
- .tinvwl-multicheckbox input {
280
- margin-right: 13px;
281
- }
282
- .tinvwl-multicheckbox > .tinvwl-before {
283
- background-color: #fbfaf9;
284
- border-bottom: 1px solid #dbdbdb;
285
- padding: 7px;
286
- }
287
- .tinvwl-multicheckbox > .tinvwl-after {
288
- background-color: #fbfaf9;
289
- border-top: 1px solid #dbdbdb;
290
- padding: 7px;
291
- }
292
-
293
-
294
- .tinvwl-targeting-box{
295
- display: -webkit-box;
296
- display: -moz-box;
297
- display: -ms-flexbox;
298
- display: -webkit-flex;
299
- display: flex;
300
- padding-top: 28px;
301
- }
302
- .tinvwl-targeting-box-action {
303
- display: none;
304
- }
305
-
306
- .tinvwl-targeting-box .selector {
307
- -moz-flex: 1 1 50%;
308
- -webkit-flex: 1 1 50%;
309
- -ms-flex: 1 1 50%;
310
- flex: 1 1 50%;
311
- padding-right: 20px;
312
- }
313
- .tinvwl-targeting-box .selector div + div {
314
- margin-top: 6px;
315
- }
316
-
317
- .tinvwl-targeting-box .zone {
318
- -moz-flex: 1 1 50%;
319
- -webkit-flex: 1 1 50%;
320
- -ms-flex: 1 1 50%;
321
- flex: 1 1 50%;
322
- background-color: #fbfaf9;
323
- border-radius: 3px;
324
- position: relative;
325
- margin: 2px;
326
- padding: 0;
327
- }
328
- .tinvwl-targeting-box .inner {
329
- margin: 0;
330
- padding: 20px;
331
- overflow: auto;
332
- border-radius: 3px;
333
- min-height: 42px;
334
- }
335
- .tinvwl-targeting-box .filter-field, .tinvwl-targeting-box .tinvwl-multicheckbox {
336
- width: 100%;
337
- }
338
- .tinvwl-targeting-box .zone > .tinvwl-after {
339
- background-color: #f4f2ee;
340
- border-top: 1px solid #fbfaf9;
341
- padding: 7px;
342
- margin: 0;
343
- position: absolute;
344
- border-radius: 0 0 3px 3px;
345
- bottom: 0;
346
- left: 0;
347
- right: 0;
348
- }
349
- .tinvwl-targeting-box .action-bth {
350
- background-color: #FFF;
351
- color: #000;
352
- border: 1px solid #dbdbdb;
353
- font-weight: normal;
354
- text-align: center;
355
- }
356
-
357
- .tinvwl-targeting-box .action-bth:hover {
358
- background-color: #96b100;
359
- color: #FFF;
360
- }
361
-
362
-
363
- .tinvwl-numberrange {
364
- width: 100%;
365
- }
366
- .tinvwl-numberrange .range {
367
- position: relative;
368
- width: 100%;
369
- height: 5px;
370
- }
371
- .tinvwl-dateperiod, .tinvwl-timeperiod {
372
- display: inline-block;
373
- margin: 2px;
374
- word-wrap: normal;
375
- }
376
- .tinvwl-dateperiod input, .tinvwl-dateperiod label {
377
- margin: 0;
378
- line-height: 26px;
379
- }
380
- .tinvwl-dateperiod input[type=text]{
381
- width: 40%;
382
- min-width: 95px;
383
- margin: 0;
384
- }
385
-
386
- .tinvwl-timeperiod select {
387
- width: 40%;
388
- min-width: 70px;
389
- }
390
-
391
- .tinvwl-dateperiod label, .tinvwl-timeperiod label {
392
- width: 48%;
393
- word-wrap: normal;
394
- }
395
-
396
- .tinvwl-timeperiod select, .tinvwl-timeperiod label{
397
- margin: 0;
398
- line-height: 26px;
399
- }
400
-
401
- input[type=text].tinvwl-date {
402
- background: url(../img/calendar.png) 95% / 14% no-repeat #FFF;
403
- padding-right: 35px;
404
-
405
- }
406
-
407
- select.tinvwl-time {
408
- background: url(../img/time.png) 95% / 14% no-repeat #FFF;
409
- padding-right: 25px;
410
-
411
  }
1
+ /*
2
+ number input
3
+ */
4
+ .tiwlform-number-container {
5
+ display: inline-block;
6
+ margin: 2px;
7
+ position: relative;
8
+ vertical-align: middle;
9
+ }
10
+
11
+ .tiwlform-number-container input, .tiwlform-number-container button {
12
+ margin: 0;
13
+ font-weight: 800;
14
+ display: inline-block;
15
+ font-size: 14px;
16
+ }
17
+ .tiwlform-number-container input[type=text] {
18
+ width: 50px;
19
+ height: 36px;
20
+ text-align: right;
21
+ border-radius: 5px;
22
+ line-height: 26px;
23
+ margin: 0;
24
+ }
25
+ .tiwlform-number-container button {
26
+ width: 20px;
27
+ height: 38px;
28
+ line-height: 38px;
29
+ text-align: center;
30
+ border-radius: 5px;
31
+ margin: 0 2px;
32
+ background-color: #f1eee8;
33
+ border: 0px;
34
+ color: #000;
35
+ padding: 0;
36
+ cursor: pointer;
37
+ }
38
+ .tiwlform-number-container button:hover {
39
+ background-color: #96b100;
40
+ color: #FFF;
41
+ }
42
+ /*
43
+ on off button
44
+ */
45
+ /*.tiwlform-onoff-container input {
46
+ display: none;
47
+ }*/
48
+ .tiwlform-onoff-container {
49
+ cursor: pointer;
50
+ position: relative;
51
+ display: inline-block;
52
+ height: 36px;
53
+ width: 132px;
54
+ margin: 0;
55
+
56
+ -webkit-border-radius: 3px;
57
+ -moz-border-radius: 3px;
58
+ border-radius: 3px;
59
+
60
+ -webkit-box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .16);
61
+ box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .16);
62
+
63
+ -webkit-transition: all .3s ease-in-out;
64
+ -moz-transition: all .3s ease-in-out;
65
+ -o-transition: all .3s ease-in-out;
66
+ transition: all .3s ease-in-out;
67
+
68
+ border: 1px solid #eae6df;
69
+ background: #f1eee8;
70
+ }
71
+ .tiwlform-onoff-container.disabled.checked{
72
+ /*-webkit-box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);
73
+ box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);*/
74
+ border-color: rgba(0,0,0,0.4);
75
+ background-color: rgba(0,0,0,0.4);
76
+ }
77
+ .tiwlform-onoff-container.disabled .tiwlform-onoff-button {
78
+ color: rgba(0,0,0,0.4) !important;
79
+ }
80
+ .tiwlform-onoff-container.checked {
81
+ /*-webkit-box-shadow: inset 0 0 0 36px #96b100;
82
+ box-shadow: inset 0 0 0 36px #96b100;*/
83
+ background: #96b100;
84
+ border-color: #96b100;
85
+ }
86
+ .tiwlform-onoff-container.checked .tiwlform-onoff-button {
87
+ left: 4px;
88
+ color: #96b100;
89
+ }
90
+ .tiwlform-onoff-container .tiwlform-onoff-button {
91
+ display: inline-block;
92
+ /*font-size: 21px;
93
+ line-height: 21px;
94
+ font-weight: 600;
95
+ font-family: dashicons;*/
96
+ font: normal normal normal 14px/1 FontAwesome;
97
+ font-size: inherit;
98
+ text-rendering: auto;
99
+ -webkit-font-smoothing: antialiased;
100
+ -moz-osx-font-smoothing: grayscale;
101
+
102
+ position: absolute;
103
+ top: 3px;
104
+ left: 66px;
105
+ width: 59px;
106
+ height: 27px;
107
+ line-height: 18px;
108
+ padding: 4px;
109
+ text-align: center;
110
+
111
+ -webkit-border-radius: 3px;
112
+ -moz-border-radius: 3px;
113
+ border-radius: 3px;
114
+
115
+ -webkit-box-shadow: 1px 1px 4px 0px rgba(2, 2, 2, .21);
116
+ box-shadow: 1px 1px 4px 0px rgba(2, 2, 2, .21);
117
+
118
+ -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
119
+ -moz-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
120
+ -o-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
121
+ transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
122
+
123
+ color: #6b625a;
124
+ background: #fff;
125
+ }
126
+ .tiwlform-onoff-container .tiwlform-onoff-button:before {
127
+ /*content: "\f335";*/
128
+ content: "\f00d";
129
+ font-size: 11px;
130
+ }
131
+ .tiwlform-onoff-container.checked .tiwlform-onoff-button:before {
132
+ /*content: "\f147";*/
133
+ content: "\f00c";
134
+ }
135
+ .tiwlform-onoff-container.disabled{
136
+ background-color: rgba(0,0,0,0.4);
137
+ }
138
+ /*
139
+ input range
140
+ */
141
+ .tiwlform-range-container{
142
+ padding-top: 25px;
143
+ height: 50px;
144
+ }
145
+ .tiwlform-range-container .range {
146
+ width: 100%;
147
+ position: relative;
148
+ }
149
+ .tiwlform-range-container input[type=text]{
150
+ display: none;
151
+ }
152
+ .tiwlform-range-container .line{
153
+ margin: 0 5%;
154
+ width: 90%;
155
+ height: 4px;
156
+ top: -14px;
157
+ background-color: #ede8df;
158
+ position: absolute;
159
+
160
+ }
161
+ .tiwlform-range-container .line .selector{
162
+ position: absolute;
163
+ z-index: 100;
164
+ width: 15px;
165
+ height: 15px;
166
+ background: #fff;
167
+ border: 5px solid #96b100;
168
+ border-radius: 50%;
169
+ top: -10px;
170
+ right: -12.5px;
171
+ cursor: pointer;
172
+ }
173
+ .tiwlform-range-container .line-selector{
174
+ width: 0%;
175
+ background-color: #96b100;
176
+ height: 6px;
177
+ top: -15px;
178
+ }
179
+ .tiwlform-range-container .label {
180
+ display: -webkit-box;
181
+ display: -moz-box;
182
+ display: -ms-flexbox;
183
+ display: -webkit-flex;
184
+ display: flex;
185
+ list-style: outside none none;
186
+ padding: 0;
187
+ }
188
+ .tiwlform-range-container .label li {
189
+ -moz-flex: 1 1;
190
+ -webkit-flex: 1 1;
191
+ -ms-flex: 1 1;
192
+ flex: 1 1;
193
+ position: relative;
194
+ float: left;
195
+ text-align: center;
196
+ color: #000;
197
+ padding: 10px 0;
198
+ font-size: 14px;
199
+ line-height: 14px;
200
+ cursor: pointer;
201
+ margin: 0;
202
+ }
203
+ .tiwlform-range-container .label li.active{
204
+ font-weight: 600;
205
+ }
206
+ .tiwlform-range-container .label li.preactive::before{
207
+ background: #96b100;
208
+ width: 25px;
209
+ height: 25px;
210
+ top: -25px;
211
+ }
212
+ .tiwlform-range-container .label li::before {
213
+ position: absolute;
214
+ top: -20px;
215
+ right: 0;
216
+ left: 0;
217
+ content: "";
218
+ margin: 0 auto;
219
+ width: 15px;
220
+ height: 15px;
221
+ background: #ede8df;
222
+ border-radius: 50%;
223
+ }
224
+ /*
225
+ multi radio box
226
+ */
227
+ .tiwlform-multirbox input {
228
+ display: none;
229
+ }
230
+ .tiwlform-multirbox {
231
+ border-radius: 3px;
232
+ border: 1px solid #eae6df;
233
+ box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
234
+ display: inline-block;
235
+ margin: 2px;
236
+ position: relative;
237
+ }
238
+ .tiwlform-multirbox label{
239
+ display: inline-block;
240
+ font-weight: normal;
241
+ color: #948d84;
242
+ margin: 0;
243
+ line-height: 26px;
244
+ vertical-align: middle;
245
+ padding: 5px 10px;
246
+ height: 26px;
247
+ }
248
+ .tiwlform-multirbox label.checked{
249
+ -webkit-box-shadow: inset 0 0 0 36px #96b100;
250
+ box-shadow: inset 0 0 0 36px #96b100;
251
+ color: #FFF;
252
+ border-radius: 3px;
253
+ }
254
+ .tiwlform-multirbox label .dashicons{
255
+ line-height: 26px;
256
+ }
257
+
258
+
259
+ .tinvwl-multicheckbox {
260
+ border: 1px solid #dbdbdb;
261
+ border-radius: 3px;
262
+ box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
263
+ margin: 2px;
264
+ }
265
+ .tinvwl-multicheckbox ul{
266
+ height: 208px;
267
+ overflow: auto;
268
+ margin: 0;
269
+ padding: 0 12px;
270
+ }
271
+ .tinvwl-multicheckbox li{
272
+ height: 30px;
273
+ }
274
+ .tinvwl-multicheckbox label {
275
+ width: 100%;
276
+ display: inline-block;
277
+ font-weight: normal;
278
+ }
279
+ .tinvwl-multicheckbox input {
280
+ margin-right: 13px;
281
+ }
282
+ .tinvwl-multicheckbox > .tinvwl-before {
283
+ background-color: #fbfaf9;
284
+ border-bottom: 1px solid #dbdbdb;
285
+ padding: 7px;
286
+ }
287
+ .tinvwl-multicheckbox > .tinvwl-after {
288
+ background-color: #fbfaf9;
289
+ border-top: 1px solid #dbdbdb;
290
+ padding: 7px;
291
+ }
292
+
293
+
294
+ .tinvwl-targeting-box{
295
+ display: -webkit-box;
296
+ display: -moz-box;
297
+ display: -ms-flexbox;
298
+ display: -webkit-flex;
299
+ display: flex;
300
+ padding-top: 28px;
301
+ }
302
+ .tinvwl-targeting-box-action {
303
+ display: none;
304
+ }
305
+
306
+ .tinvwl-targeting-box .selector {
307
+ -moz-flex: 1 1 50%;
308
+ -webkit-flex: 1 1 50%;
309
+ -ms-flex: 1 1 50%;
310
+ flex: 1 1 50%;
311
+ padding-right: 20px;
312
+ }
313
+ .tinvwl-targeting-box .selector div + div {
314
+ margin-top: 6px;
315
+ }
316
+
317
+ .tinvwl-targeting-box .zone {
318
+ -moz-flex: 1 1 50%;
319
+ -webkit-flex: 1 1 50%;
320
+ -ms-flex: 1 1 50%;
321
+ flex: 1 1 50%;
322
+ background-color: #fbfaf9;
323
+ border-radius: 3px;
324
+ position: relative;
325
+ margin: 2px;
326
+ padding: 0;
327
+ }
328
+ .tinvwl-targeting-box .inner {
329
+ margin: 0;
330
+ padding: 20px;
331
+ overflow: auto;
332
+ border-radius: 3px;
333
+ min-height: 42px;
334
+ }
335
+ .tinvwl-targeting-box .filter-field, .tinvwl-targeting-box .tinvwl-multicheckbox {
336
+ width: 100%;
337
+ }
338
+ .tinvwl-targeting-box .zone > .tinvwl-after {
339
+ background-color: #f4f2ee;
340
+ border-top: 1px solid #fbfaf9;
341
+ padding: 7px;
342
+ margin: 0;
343
+ position: absolute;
344
+ border-radius: 0 0 3px 3px;
345
+ bottom: 0;
346
+ left: 0;
347
+ right: 0;
348
+ }
349
+ .tinvwl-targeting-box .action-bth {
350
+ background-color: #FFF;
351
+ color: #000;
352
+ border: 1px solid #dbdbdb;
353
+ font-weight: normal;
354
+ text-align: center;
355
+ }
356
+
357
+ .tinvwl-targeting-box .action-bth:hover {
358
+ background-color: #96b100;
359
+ color: #FFF;
360
+ }
361
+
362
+
363
+ .tinvwl-numberrange {
364
+ width: 100%;
365
+ }
366
+ .tinvwl-numberrange .range {
367
+ position: relative;
368
+ width: 100%;
369
+ height: 5px;
370
+ }
371
+ .tinvwl-dateperiod, .tinvwl-timeperiod {
372
+ display: inline-block;
373
+ margin: 2px;
374
+ word-wrap: normal;
375
+ }
376
+ .tinvwl-dateperiod input, .tinvwl-dateperiod label {
377
+ margin: 0;
378
+ line-height: 26px;
379
+ }
380
+ .tinvwl-dateperiod input[type=text]{
381
+ width: 40%;
382
+ min-width: 95px;
383
+ margin: 0;
384
+ }
385
+
386
+ .tinvwl-timeperiod select {
387
+ width: 40%;
388
+ min-width: 70px;
389
+ }
390
+
391
+ .tinvwl-dateperiod label, .tinvwl-timeperiod label {
392
+ width: 48%;
393
+ word-wrap: normal;
394
+ }
395
+
396
+ .tinvwl-timeperiod select, .tinvwl-timeperiod label{
397
+ margin: 0;
398
+ line-height: 26px;
399
+ }
400
+
401
+ input[type=text].tinvwl-date {
402
+ background: url(../img/calendar.png) 95% / 14% no-repeat #FFF;
403
+ padding-right: 35px;
404
+
405
+ }
406
+
407
+ select.tinvwl-time {
408
+ background: url(../img/time.png) 95% / 14% no-repeat #FFF;
409
+ padding-right: 25px;
410
+
411
  }
asset/css/admin-form.min.css CHANGED
@@ -1,2 +1,2 @@
1
-
2
  .tiwlform-number-container{display:inline-block;margin:2px;position:relative;vertical-align:middle}.tiwlform-number-container input,.tiwlform-number-container button{margin:0;font-weight:800;display:inline-block;font-size:14px}.tiwlform-number-container input[type=text]{width:50px;height:36px;text-align:right;border-radius:5px;line-height:26px;margin:0}.tiwlform-number-container button{width:20px;height:38px;line-height:38px;text-align:center;border-radius:5px;margin:0 2px;background-color:#f1eee8;border:0;color:#000;padding:0;cursor:pointer}.tiwlform-number-container button:hover{background-color:#96b100;color:#FFF}.tiwlform-onoff-container{-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-border-radius:3px;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1) inset;-webkit-transition:all .3s ease-in-out;background:#f1eee8;border-radius:3px;border:1px solid #eae6df;box-shadow:0 0 4px rgba(0,0,0,.1) inset;cursor:pointer;display:inline-block;height:36px;margin:2px;position:relative;transition:all .3s ease-in-out;width:132px}.tiwlform-onoff-container.disabled.checked{-webkit-box-shadow:inset 0 0 0 36px rgba(0,0,0,0.4);box-shadow:inset 0 0 0 36px rgba(0,0,0,0.4);border:1px solid rgba(0,0,0,0.4);background-color:#FFF}.tiwlform-onoff-container.disabled .tiwlform-onoff-button{color:rgba(0,0,0,0.4)!important}.tiwlform-onoff-container.checked{-webkit-box-shadow:inset 0 0 0 36px #96b100;box-shadow:inset 0 0 0 36px #96b100;border:1px solid #96b100}.tiwlform-onoff-container.checked .tiwlform-onoff-button{left:4px;color:#96b100}.tiwlform-onoff-container.checked .tiwlform-onoff-button:before{content:"\f147"}.tiwlform-onoff-container .tiwlform-onoff-button:before{content:"\f335"}.tiwlform-onoff-container .tiwlform-onoff-button{width:52px;height:21px;font-size:21px;line-height:21px;font-weight:600;font-family:dashicons;position:absolute;text-align:center;color:#6b625a;top:4px;left:68px;padding:4px;-webkit-border-radius:3px;border-radius:3px;background:white;-webkit-transition:all 350ms cubic-bezier(0,0.89,0.44,1);-moz-transition:all 350ms cubic-bezier(0,0.89,0.44,1);-o-transition:all 350ms cubic-bezier(0,0.89,0.44,1);transition:all 350ms cubic-bezier(0,0.89,0.44,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1);box-shadow:0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1)}.tiwlform-onoff-container.disabled{background-color:rgba(0,0,0,0.4)}.tiwlform-range-container{padding-top:25px;height:50px}.tiwlform-range-container .range{width:100%;position:relative}.tiwlform-range-container input[type=text]{display:none}.tiwlform-range-container .line{margin:0 5%;width:90%;height:4px;top:-14px;background-color:#ede8df;position:absolute}.tiwlform-range-container .line .selector{position:absolute;z-index:100;width:15px;height:15px;background:#fff;border:5px solid #96b100;border-radius:50%;top:-10px;right:-12.5px;cursor:pointer}.tiwlform-range-container .line-selector{width:0;background-color:#96b100;height:6px;top:-15px}.tiwlform-range-container .label{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;list-style:outside none none;padding:0}.tiwlform-range-container .label li{-moz-flex:1 1;-webkit-flex:1 1;-ms-flex:1 1;flex:1 1;position:relative;float:left;text-align:center;color:#000;padding:10px 0;font-size:14px;line-height:14px;cursor:pointer;margin:0}.tiwlform-range-container .label li.active{font-weight:600}.tiwlform-range-container .label li.preactive::before{background:#96b100;width:25px;height:25px;top:-25px}.tiwlform-range-container .label li::before{position:absolute;top:-20px;right:0;left:0;content:"";margin:0 auto;width:15px;height:15px;background:#ede8df;border-radius:50%}.tiwlform-multirbox input{display:none}.tiwlform-multirbox{border-radius:3px;border:1px solid #eae6df;box-shadow:0 0 10px rgba(0,0,0,.1) inset;display:inline-block;margin:2px;position:relative}.tiwlform-multirbox label{display:inline-block;font-weight:normal;color:#948d84;margin:0;line-height:26px;vertical-align:middle;padding:5px 10px;height:26px}.tiwlform-multirbox label.checked{-webkit-box-shadow:inset 0 0 0 36px #96b100;box-shadow:inset 0 0 0 36px #96b100;color:#FFF;border-radius:3px}.tiwlform-multirbox label .dashicons{line-height:26px}.tinvwl-multicheckbox{border:1px solid #dbdbdb;border-radius:3px;box-shadow:0 0 10px rgba(0,0,0,.1) inset;margin:2px}.tinvwl-multicheckbox ul{height:208px;overflow:auto;margin:0;padding:0 12px}.tinvwl-multicheckbox li{height:30px}.tinvwl-multicheckbox label{width:100%;display:inline-block;font-weight:normal}.tinvwl-multicheckbox input{margin-right:13px}.tinvwl-multicheckbox>.tinvwl-before{background-color:#fbfaf9;border-bottom:1px solid #dbdbdb;padding:7px}.tinvwl-multicheckbox>.tinvwl-after{background-color:#fbfaf9;border-top:1px solid #dbdbdb;padding:7px}.tinvwl-targeting-box{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;padding-top:28px}.tinvwl-targeting-box-action{display:none}.tinvwl-targeting-box .selector{-moz-flex:1 1 50%;-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;padding-right:20px}.tinvwl-targeting-box .selector div+div{margin-top:6px}.tinvwl-targeting-box .zone{-moz-flex:1 1 50%;-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;background-color:#fbfaf9;border-radius:3px;position:relative;margin:2px;padding:0}.tinvwl-targeting-box .inner{margin:0;padding:20px;overflow:auto;border-radius:3px;min-height:42px}.tinvwl-targeting-box .filter-field,.tinvwl-targeting-box .tinvwl-multicheckbox{width:100%}.tinvwl-targeting-box .zone>.tinvwl-after{background-color:#f4f2ee;border-top:1px solid #fbfaf9;padding:7px;margin:0;position:absolute;border-radius:0 0 3px 3px;bottom:0;left:0;right:0}.tinvwl-targeting-box .action-bth{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}.tinvwl-targeting-box .action-bth:hover{background-color:#96b100;color:#FFF}.tinvwl-numberrange{width:100%}.tinvwl-numberrange .range{position:relative;width:100%;height:5px}.tinvwl-dateperiod,.tinvwl-timeperiod{display:inline-block;margin:2px;word-wrap:normal}.tinvwl-dateperiod input,.tinvwl-dateperiod label{margin:0;line-height:26px}.tinvwl-dateperiod input[type=text]{width:40%;min-width:95px;margin:0}.tinvwl-timeperiod select{width:40%;min-width:70px}.tinvwl-dateperiod label,.tinvwl-timeperiod label{width:48%;word-wrap:normal}.tinvwl-timeperiod select,.tinvwl-timeperiod label{margin:0;line-height:26px}input[type=text].tinvwl-date{background:url(../img/calendar.png) 95% / 14% no-repeat #FFF;padding-right:35px}select.tinvwl-time{background:url(../img/time.png) 95% / 14% no-repeat #FFF;padding-right:25px}
1
+
2
  .tiwlform-number-container{display:inline-block;margin:2px;position:relative;vertical-align:middle}.tiwlform-number-container input,.tiwlform-number-container button{margin:0;font-weight:800;display:inline-block;font-size:14px}.tiwlform-number-container input[type=text]{width:50px;height:36px;text-align:right;border-radius:5px;line-height:26px;margin:0}.tiwlform-number-container button{width:20px;height:38px;line-height:38px;text-align:center;border-radius:5px;margin:0 2px;background-color:#f1eee8;border:0;color:#000;padding:0;cursor:pointer}.tiwlform-number-container button:hover{background-color:#96b100;color:#FFF}.tiwlform-onoff-container{-moz-transition:all .3s ease-in-out;-ms-transition:all .3s ease-in-out;-o-transition:all .3s ease-in-out;-webkit-border-radius:3px;-webkit-box-shadow:0 0 10px rgba(0,0,0,.1) inset;-webkit-transition:all .3s ease-in-out;background:#f1eee8;border-radius:3px;border:1px solid #eae6df;box-shadow:0 0 4px rgba(0,0,0,.1) inset;cursor:pointer;display:inline-block;height:36px;margin:2px;position:relative;transition:all .3s ease-in-out;width:132px}.tiwlform-onoff-container.disabled.checked{-webkit-box-shadow:inset 0 0 0 36px rgba(0,0,0,0.4);box-shadow:inset 0 0 0 36px rgba(0,0,0,0.4);border:1px solid rgba(0,0,0,0.4);background-color:#FFF}.tiwlform-onoff-container.disabled .tiwlform-onoff-button{color:rgba(0,0,0,0.4)!important}.tiwlform-onoff-container.checked{-webkit-box-shadow:inset 0 0 0 36px #96b100;box-shadow:inset 0 0 0 36px #96b100;border:1px solid #96b100}.tiwlform-onoff-container.checked .tiwlform-onoff-button{left:4px;color:#96b100}.tiwlform-onoff-container.checked .tiwlform-onoff-button:before{content:"\f147"}.tiwlform-onoff-container .tiwlform-onoff-button:before{content:"\f335"}.tiwlform-onoff-container .tiwlform-onoff-button{width:52px;height:21px;font-size:21px;line-height:21px;font-weight:600;font-family:dashicons;position:absolute;text-align:center;color:#6b625a;top:4px;left:68px;padding:4px;-webkit-border-radius:3px;border-radius:3px;background:white;-webkit-transition:all 350ms cubic-bezier(0,0.89,0.44,1);-moz-transition:all 350ms cubic-bezier(0,0.89,0.44,1);-o-transition:all 350ms cubic-bezier(0,0.89,0.44,1);transition:all 350ms cubic-bezier(0,0.89,0.44,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1);box-shadow:0 1px 2px 0 rgba(0,0,0,0.2),0 3px 4px 0 rgba(0,0,0,0.1)}.tiwlform-onoff-container.disabled{background-color:rgba(0,0,0,0.4)}.tiwlform-range-container{padding-top:25px;height:50px}.tiwlform-range-container .range{width:100%;position:relative}.tiwlform-range-container input[type=text]{display:none}.tiwlform-range-container .line{margin:0 5%;width:90%;height:4px;top:-14px;background-color:#ede8df;position:absolute}.tiwlform-range-container .line .selector{position:absolute;z-index:100;width:15px;height:15px;background:#fff;border:5px solid #96b100;border-radius:50%;top:-10px;right:-12.5px;cursor:pointer}.tiwlform-range-container .line-selector{width:0;background-color:#96b100;height:6px;top:-15px}.tiwlform-range-container .label{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;list-style:outside none none;padding:0}.tiwlform-range-container .label li{-moz-flex:1 1;-webkit-flex:1 1;-ms-flex:1 1;flex:1 1;position:relative;float:left;text-align:center;color:#000;padding:10px 0;font-size:14px;line-height:14px;cursor:pointer;margin:0}.tiwlform-range-container .label li.active{font-weight:600}.tiwlform-range-container .label li.preactive::before{background:#96b100;width:25px;height:25px;top:-25px}.tiwlform-range-container .label li::before{position:absolute;top:-20px;right:0;left:0;content:"";margin:0 auto;width:15px;height:15px;background:#ede8df;border-radius:50%}.tiwlform-multirbox input{display:none}.tiwlform-multirbox{border-radius:3px;border:1px solid #eae6df;box-shadow:0 0 10px rgba(0,0,0,.1) inset;display:inline-block;margin:2px;position:relative}.tiwlform-multirbox label{display:inline-block;font-weight:normal;color:#948d84;margin:0;line-height:26px;vertical-align:middle;padding:5px 10px;height:26px}.tiwlform-multirbox label.checked{-webkit-box-shadow:inset 0 0 0 36px #96b100;box-shadow:inset 0 0 0 36px #96b100;color:#FFF;border-radius:3px}.tiwlform-multirbox label .dashicons{line-height:26px}.tinvwl-multicheckbox{border:1px solid #dbdbdb;border-radius:3px;box-shadow:0 0 10px rgba(0,0,0,.1) inset;margin:2px}.tinvwl-multicheckbox ul{height:208px;overflow:auto;margin:0;padding:0 12px}.tinvwl-multicheckbox li{height:30px}.tinvwl-multicheckbox label{width:100%;display:inline-block;font-weight:normal}.tinvwl-multicheckbox input{margin-right:13px}.tinvwl-multicheckbox>.tinvwl-before{background-color:#fbfaf9;border-bottom:1px solid #dbdbdb;padding:7px}.tinvwl-multicheckbox>.tinvwl-after{background-color:#fbfaf9;border-top:1px solid #dbdbdb;padding:7px}.tinvwl-targeting-box{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;padding-top:28px}.tinvwl-targeting-box-action{display:none}.tinvwl-targeting-box .selector{-moz-flex:1 1 50%;-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;padding-right:20px}.tinvwl-targeting-box .selector div+div{margin-top:6px}.tinvwl-targeting-box .zone{-moz-flex:1 1 50%;-webkit-flex:1 1 50%;-ms-flex:1 1 50%;flex:1 1 50%;background-color:#fbfaf9;border-radius:3px;position:relative;margin:2px;padding:0}.tinvwl-targeting-box .inner{margin:0;padding:20px;overflow:auto;border-radius:3px;min-height:42px}.tinvwl-targeting-box .filter-field,.tinvwl-targeting-box .tinvwl-multicheckbox{width:100%}.tinvwl-targeting-box .zone>.tinvwl-after{background-color:#f4f2ee;border-top:1px solid #fbfaf9;padding:7px;margin:0;position:absolute;border-radius:0 0 3px 3px;bottom:0;left:0;right:0}.tinvwl-targeting-box .action-bth{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}.tinvwl-targeting-box .action-bth:hover{background-color:#96b100;color:#FFF}.tinvwl-numberrange{width:100%}.tinvwl-numberrange .range{position:relative;width:100%;height:5px}.tinvwl-dateperiod,.tinvwl-timeperiod{display:inline-block;margin:2px;word-wrap:normal}.tinvwl-dateperiod input,.tinvwl-dateperiod label{margin:0;line-height:26px}.tinvwl-dateperiod input[type=text]{width:40%;min-width:95px;margin:0}.tinvwl-timeperiod select{width:40%;min-width:70px}.tinvwl-dateperiod label,.tinvwl-timeperiod label{width:48%;word-wrap:normal}.tinvwl-timeperiod select,.tinvwl-timeperiod label{margin:0;line-height:26px}input[type=text].tinvwl-date{background:url(../img/calendar.png) 95% / 14% no-repeat #FFF;padding-right:35px}select.tinvwl-time{background:url(../img/time.png) 95% / 14% no-repeat #FFF;padding-right:25px}
asset/css/admin-setup.css CHANGED
@@ -1,348 +1,348 @@
1
- html {
2
- background: #f6f3ed;
3
- }
4
-
5
- .tinvwl-wizard {
6
- max-width: 886px;
7
- margin: 107px auto;
8
- padding: 0;
9
- -webkit-box-shadow: none;
10
- box-shadow: none;
11
- background: none;
12
- }
13
-
14
- .tinvwl-wizard .tinvwl-logo {
15
- text-align: center;
16
- margin-bottom: 10px;
17
- }
18
-
19
- .tinvwl-wizard .tinvwl-logo h2,
20
- .tinvwl-wizard .tinvwl-logo img {
21
- display: inline-block;
22
- vertical-align: middle;
23
- }
24
-
25
- .tinvwl-wizard .tinvwl-logo img + h2 {
26
- margin-left: 15px;
27
- }
28
-
29
- .tinvwl-wizard .tinvwl-logo h2 {
30
- font-size: 18px;
31
- font-weight: bold;
32
- text-transform: uppercase;
33
- line-height: 1.333;
34
- color: #3E3E3E;
35
- }
36
-
37
- .tinvwl-wizard .tinvwl-progress {
38
- text-align: center;
39
- }
40
-
41
- .tinvwl-wizard .tinvwl-progress ul {
42
- list-style: none;
43
- padding: 0;
44
- margin: 0;
45
- }
46
-
47
- .tinvwl-wizard .tinvwl-progress li {
48
- position: relative;
49
- display: inline-block;
50
- font-family: "Open Sans", Arial, sans-serif;
51
- font-size: 14px;
52
- font-weight: bold;
53
- line-height: 1.714;
54
- text-transform: uppercase;
55
- padding: 0 0 4px;
56
- margin-top: 20px;
57
- margin-right: 40px;
58
- color: rgba(62, 62, 62, .4);
59
- }
60
-
61
- .tinvwl-wizard .tinvwl-progress li:before {
62
- content: '';
63
- position: absolute;
64
- left: 0;
65
- bottom: -2px;
66
- width: calc( 100% + 50px );
67
- height: 2px;
68
- background: #e6e6e6;
69
- }
70
-
71
- .tinvwl-wizard .tinvwl-progress li:last-child:before {
72
- width: 100%;
73
- }
74
-
75
- .tinvwl-wizard .tinvwl-progress li.active {
76
- padding-right: 40px;
77
- margin-right: 0;
78
- color: rgb(62, 62, 62);
79
- }
80
-
81
- .tinvwl-wizard .tinvwl-progress li.active.last {
82
- padding-right: 0;
83
- margin-right: 40px;
84
- }
85
-
86
- .tinvwl-wizard .tinvwl-progress li:last-child.last.active {
87
- color: #869a00;
88
- }
89
-
90
- .tinvwl-wizard .tinvwl-progress li.active:after {
91
- content: '';
92
- position: absolute;
93
- left: 0;
94
- bottom: -2px;
95
- width: calc( 100% + 10px );
96
- height: 2px;
97
- background: #a9c203;
98
- }
99
-
100
- .tinvwl-wizard .tinvwl-progress li.last.active:after {
101
- width: 100%;
102
- }
103
-
104
- .tinvwl-wizard .tinvwl-progress li:last-child {
105
- padding-right: 0 !important;
106
- margin-right: 0 !important;
107
- }
108
-
109
- .tinvwl-wizard .tinvwl-content {
110
- font-family: Arial, sans-serif;
111
- font-size: 14px;
112
- line-height: 1.71428571;
113
- color: #4f4639;
114
- }
115
-
116
- .tinvwl-wizard .tinvwl-content .tinwl-inner {
117
- padding: 34px 42px 42px;
118
- margin-top: 36px;
119
- -webkit-border-radius: 5px;
120
- -moz-border-radius: 5px;
121
- border-radius: 5px;
122
- background: #fff;
123
- -webkit-box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
124
- box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
125
- }
126
-
127
- .tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner {
128
- padding: 40px 121px;
129
- }
130
-
131
- .tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner {
132
- padding: 40px 100px;
133
- }
134
-
135
- .tinvwl-wizard h1 {
136
- font-size: 36px;
137
- letter-spacing: -.025em;
138
- text-transform: uppercase;
139
- color: #291C09;
140
- }
141
-
142
- .tinvwl-wizard label {
143
- line-height: 1.429;
144
- }
145
-
146
- @media (min-width: 992px) {
147
- .tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label {
148
- padding-top: 10px;
149
- }
150
- }
151
-
152
- .tinvwl-wizard .tinvwl-title-wrap {
153
- }
154
-
155
- .tinvwl-wizard .tinvwl-title-wrap h1 {
156
- }
157
-
158
- .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-desc {
159
- margin-top: 12px;
160
- }
161
-
162
- .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-separator {
163
- margin-top: 20px;
164
- margin-bottom: 20px;
165
- }
166
-
167
- .tinvwl-wizard .tinvwl-skip {
168
- display: inline-block;
169
- font-size: 14px;
170
- color: rgba(75, 75, 75, 0.722);
171
- text-decoration: underline;
172
- line-height: 1.429;
173
- }
174
-
175
- .tinvwl-wizard .tinvwl-separator {
176
- display: block;
177
- width: 100%;
178
- height: 2px;
179
- margin: 24px 0;
180
- background: #ececec;
181
- }
182
-
183
- .tinvwl-wizard .tinvwl-separator + .form-horizontal,
184
- .tinvwl-wizard .form-horizontal + .tinvwl-separator {
185
- margin-top: 30px;
186
- }
187
-
188
- .tinvwl-wizard .row + .tinvwl-separator {
189
- margin-top: 0;
190
- }
191
-
192
- .tinvwl-wizard .form-group {
193
- margin-bottom: 20px;
194
- }
195
-
196
- .tinvwl-wizard .tinvwl-desc {
197
- font-family: "Open Sans", Arial, sans-serif;
198
- font-size: 16px;
199
- line-height: 1.875;
200
- margin-bottom: 24px;
201
- }
202
-
203
- .tinvwl-wizard .tinvwl-desc a {
204
- color: #4f4639;
205
- text-decoration: underline;
206
- }
207
-
208
- .tinvwl-wizard .tinvwl-desc a:hover,
209
- .tinvwl-wizard .tinvwl-desc a:active,
210
- .tinvwl-wizard .tinvwl-desc a:focus {
211
- color: #000;
212
- }
213
-
214
- .tinvwl-wizard .tinvwl-nav {
215
- margin: 30px 0 0;
216
- }
217
-
218
- .tinvwl-wizard .tinvwl-desc + .tinvwl-nav {
219
- margin: 55px 0 0;
220
- }
221
-
222
- .tinvwl-wizard .tinvwl-nav .tinvwl-btn {
223
- min-width: 147px;
224
- }
225
-
226
- .tinvwl-wizard .tinvwl-nav .tinvwl-next {
227
- float: right;
228
- }
229
-
230
- .tinvwl-wizard .tinvwl-nav .tinvwl-skip + .tinvwl-btn {
231
- margin-left: 26px;
232
- }
233
-
234
- .tinvwl-wizard .tinwl-intro,
235
- .tinvwl-wizard .tinwl-finish {
236
- text-align: center;
237
- }
238
-
239
- .tinvwl-wizard .tinwl-intro .tinvwl-title,
240
- .tinvwl-wizard .tinwl-finish .tinvwl-title {
241
- font-size: 48px;
242
- margin-bottom: 14px;
243
- }
244
-
245
- .tinvwl-wizard .tinwl-finish .tinvwl-title {
246
- margin-bottom: 33px;
247
- }
248
-
249
- .tinvwl-wizard .tinwl-intro .tinvwl-sub-title,
250
- .tinvwl-wizard .tinwl-finish .tinvwl-sub-title {
251
- font-size: 18px;
252
- font-weight: 600;
253
- text-transform: uppercase;
254
- line-height: 1.167;
255
- letter-spacing: -.025em;
256
- margin-bottom: 0;
257
- color: #B2B2B2;
258
- }
259
-
260
- .tinvwl-wizard .tinwl-intro .tinvwl-thumb {
261
- margin-bottom: 16px;
262
- }
263
-
264
- .tinvwl-wizard .tinwl-intro .tinvwl-desc {
265
- margin-bottom: 21px;
266
- }
267
-
268
- .tinvwl-wizard .tinwl-finish .tinvwl-desc {
269
- margin-bottom: 45px;
270
- }
271
-
272
- .tinvwl-wizard .tinwl-intro .tinvwl-skip {
273
- margin-top: 19px;
274
- }
275
-
276
- .tinvwl-wizard .tinwl-finish .tinvwl-more {
277
- display: inline-block;
278
- text-decoration: underline;
279
- margin-top: 35px;
280
- color: #4b4b4b;
281
- }
282
-
283
- .tinvwl-wizard .tinwl-finish .tinvwl-btn {
284
- margin-right: 14px;
285
- padding: 16px 26px;
286
- }
287
-
288
- .tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child {
289
- margin-right: 0;
290
- }
291
-
292
- .tinvwl-error .form-control {
293
- border: 2px solid #ff0000;
294
- }
295
-
296
- .tinvwl-error .tinvwl-error-icon {
297
- position: absolute;
298
- top: 8px;
299
- left: -10px;
300
- color: #ff0000;
301
- }
302
-
303
- .tinvwl-error .tinvwl-error-desc {
304
- line-height: 1.42857143;
305
- margin: 10px 8px 0;
306
- color: #ff0000;
307
- }
308
-
309
- .tinvwl-wizard .tinvwl-return-to-dash {
310
- margin-top: 45px;
311
- text-align: center;
312
- }
313
-
314
- @media screen and (max-width: 1024px) {
315
- .tinvwl-wizard {
316
- margin: 20px auto;
317
- }
318
-
319
- .tinvwl-wizard .tinwl-finish .tinvwl-btn {
320
- display: block;
321
- margin: 0 auto;
322
- }
323
-
324
- .tinvwl-wizard .tinwl-finish .tinvwl-btn + .tinvwl-btn {
325
- margin-top: 15px;
326
- }
327
- }
328
-
329
- @media screen and (max-width: 782px) {
330
- html {
331
- margin: 0;
332
- }
333
-
334
- .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,
335
- .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish {
336
- padding-left: 50px;
337
- padding-right: 50px;
338
- }
339
-
340
- .tinvwl-wizard .tinvwl-nav {
341
- text-align: center;
342
- }
343
-
344
- .tinvwl-wizard .tinvwl-nav .tinvwl-next {
345
- float: none;
346
- text-align: center;
347
- }
348
  }
1
+ html {
2
+ background: #f6f3ed;
3
+ }
4
+
5
+ .tinvwl-wizard {
6
+ max-width: 886px;
7
+ margin: 107px auto;
8
+ padding: 0;
9
+ -webkit-box-shadow: none;
10
+ box-shadow: none;
11
+ background: none;
12
+ }
13
+
14
+ .tinvwl-wizard .tinvwl-logo {
15
+ text-align: center;
16
+ margin-bottom: 10px;
17
+ }
18
+
19
+ .tinvwl-wizard .tinvwl-logo h2,
20
+ .tinvwl-wizard .tinvwl-logo img {
21
+ display: inline-block;
22
+ vertical-align: middle;
23
+ }
24
+
25
+ .tinvwl-wizard .tinvwl-logo img + h2 {
26
+ margin-left: 15px;
27
+ }
28
+
29
+ .tinvwl-wizard .tinvwl-logo h2 {
30
+ font-size: 18px;
31
+ font-weight: bold;
32
+ text-transform: uppercase;
33
+ line-height: 1.333;
34
+ color: #3E3E3E;
35
+ }
36
+
37
+ .tinvwl-wizard .tinvwl-progress {
38
+ text-align: center;
39
+ }
40
+
41
+ .tinvwl-wizard .tinvwl-progress ul {
42
+ list-style: none;
43
+ padding: 0;
44
+ margin: 0;
45
+ }
46
+
47
+ .tinvwl-wizard .tinvwl-progress li {
48
+ position: relative;
49
+ display: inline-block;
50
+ font-family: "Open Sans", Arial, sans-serif;
51
+ font-size: 14px;
52
+ font-weight: bold;
53
+ line-height: 1.714;
54
+ text-transform: uppercase;
55
+ padding: 0 0 4px;
56
+ margin-top: 20px;
57
+ margin-right: 40px;
58
+ color: rgba(62, 62, 62, .4);
59
+ }
60
+
61
+ .tinvwl-wizard .tinvwl-progress li:before {
62
+ content: '';
63
+ position: absolute;
64
+ left: 0;
65
+ bottom: -2px;
66
+ width: calc( 100% + 50px );
67
+ height: 2px;
68
+ background: #e6e6e6;
69
+ }
70
+
71
+ .tinvwl-wizard .tinvwl-progress li:last-child:before {
72
+ width: 100%;
73
+ }
74
+
75
+ .tinvwl-wizard .tinvwl-progress li.active {
76
+ padding-right: 40px;
77
+ margin-right: 0;
78
+ color: rgb(62, 62, 62);
79
+ }
80
+
81
+ .tinvwl-wizard .tinvwl-progress li.active.last {
82
+ padding-right: 0;
83
+ margin-right: 40px;
84
+ }
85
+
86
+ .tinvwl-wizard .tinvwl-progress li:last-child.last.active {
87
+ color: #869a00;
88
+ }
89
+
90
+ .tinvwl-wizard .tinvwl-progress li.active:after {
91
+ content: '';
92
+ position: absolute;
93
+ left: 0;
94
+ bottom: -2px;
95
+ width: calc( 100% + 10px );
96
+ height: 2px;
97
+ background: #a9c203;
98
+ }
99
+
100
+ .tinvwl-wizard .tinvwl-progress li.last.active:after {
101
+ width: 100%;
102
+ }
103
+
104
+ .tinvwl-wizard .tinvwl-progress li:last-child {
105
+ padding-right: 0 !important;
106
+ margin-right: 0 !important;
107
+ }
108
+
109
+ .tinvwl-wizard .tinvwl-content {
110
+ font-family: Arial, sans-serif;
111
+ font-size: 14px;
112
+ line-height: 1.71428571;
113
+ color: #4f4639;
114
+ }
115
+
116
+ .tinvwl-wizard .tinvwl-content .tinwl-inner {
117
+ padding: 34px 42px 42px;
118
+ margin-top: 36px;
119
+ -webkit-border-radius: 5px;
120
+ -moz-border-radius: 5px;
121
+ border-radius: 5px;
122
+ background: #fff;
123
+ -webkit-box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
124
+ box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
125
+ }
126
+
127
+ .tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner {
128
+ padding: 40px 121px;
129
+ }
130
+
131
+ .tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner {
132
+ padding: 40px 100px;
133
+ }
134
+
135
+ .tinvwl-wizard h1 {
136
+ font-size: 36px;
137
+ letter-spacing: -.025em;
138
+ text-transform: uppercase;
139
+ color: #291C09;
140
+ }
141
+
142
+ .tinvwl-wizard label {
143
+ line-height: 1.429;
144
+ }
145
+
146
+ @media (min-width: 992px) {
147
+ .tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label {
148
+ padding-top: 10px;
149
+ }
150
+ }
151
+
152
+ .tinvwl-wizard .tinvwl-title-wrap {
153
+ }
154
+
155
+ .tinvwl-wizard .tinvwl-title-wrap h1 {
156
+ }
157
+
158
+ .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-desc {
159
+ margin-top: 12px;
160
+ }
161
+
162
+ .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-separator {
163
+ margin-top: 20px;
164
+ margin-bottom: 20px;
165
+ }
166
+
167
+ .tinvwl-wizard .tinvwl-skip {
168
+ display: inline-block;
169
+ font-size: 14px;
170
+ color: rgba(75, 75, 75, 0.722);
171
+ text-decoration: underline;
172
+ line-height: 1.429;
173
+ }
174
+
175
+ .tinvwl-wizard .tinvwl-separator {
176
+ display: block;
177
+ width: 100%;
178
+ height: 2px;
179
+ margin: 24px 0;
180
+ background: #ececec;
181
+ }
182
+
183
+ .tinvwl-wizard .tinvwl-separator + .form-horizontal,
184
+ .tinvwl-wizard .form-horizontal + .tinvwl-separator {
185
+ margin-top: 30px;
186
+ }
187
+
188
+ .tinvwl-wizard .row + .tinvwl-separator {
189
+ margin-top: 0;
190
+ }
191
+
192
+ .tinvwl-wizard .form-group {
193
+ margin-bottom: 20px;
194
+ }
195
+
196
+ .tinvwl-wizard .tinvwl-desc {
197
+ font-family: "Open Sans", Arial, sans-serif;
198
+ font-size: 16px;
199
+ line-height: 1.875;
200
+ margin-bottom: 24px;
201
+ }
202
+
203
+ .tinvwl-wizard .tinvwl-desc a {
204
+ color: #4f4639;
205
+ text-decoration: underline;
206
+ }
207
+
208
+ .tinvwl-wizard .tinvwl-desc a:hover,
209
+ .tinvwl-wizard .tinvwl-desc a:active,
210
+ .tinvwl-wizard .tinvwl-desc a:focus {
211
+ color: #000;
212
+ }
213
+
214
+ .tinvwl-wizard .tinvwl-nav {
215
+ margin: 30px 0 0;
216
+ }
217
+
218
+ .tinvwl-wizard .tinvwl-desc + .tinvwl-nav {
219
+ margin: 55px 0 0;
220
+ }
221
+
222
+ .tinvwl-wizard .tinvwl-nav .tinvwl-btn {
223
+ min-width: 147px;
224
+ }
225
+
226
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next {
227
+ float: right;
228
+ }
229
+
230
+ .tinvwl-wizard .tinvwl-nav .tinvwl-skip + .tinvwl-btn {
231
+ margin-left: 26px;
232
+ }
233
+
234
+ .tinvwl-wizard .tinwl-intro,
235
+ .tinvwl-wizard .tinwl-finish {
236
+ text-align: center;
237
+ }
238
+
239
+ .tinvwl-wizard .tinwl-intro .tinvwl-title,
240
+ .tinvwl-wizard .tinwl-finish .tinvwl-title {
241
+ font-size: 48px;
242
+ margin-bottom: 14px;
243
+ }
244
+
245
+ .tinvwl-wizard .tinwl-finish .tinvwl-title {
246
+ margin-bottom: 33px;
247
+ }
248
+
249
+ .tinvwl-wizard .tinwl-intro .tinvwl-sub-title,
250
+ .tinvwl-wizard .tinwl-finish .tinvwl-sub-title {
251
+ font-size: 18px;
252
+ font-weight: 600;
253
+ text-transform: uppercase;
254
+ line-height: 1.167;
255
+ letter-spacing: -.025em;
256
+ margin-bottom: 0;
257
+ color: #B2B2B2;
258
+ }
259
+
260
+ .tinvwl-wizard .tinwl-intro .tinvwl-thumb {
261
+ margin-bottom: 16px;
262
+ }
263
+
264
+ .tinvwl-wizard .tinwl-intro .tinvwl-desc {
265
+ margin-bottom: 21px;
266
+ }
267
+
268
+ .tinvwl-wizard .tinwl-finish .tinvwl-desc {
269
+ margin-bottom: 45px;
270
+ }
271
+
272
+ .tinvwl-wizard .tinwl-intro .tinvwl-skip {
273
+ margin-top: 19px;
274
+ }
275
+
276
+ .tinvwl-wizard .tinwl-finish .tinvwl-more {
277
+ display: inline-block;
278
+ text-decoration: underline;
279
+ margin-top: 35px;
280
+ color: #4b4b4b;
281
+ }
282
+
283
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn {
284
+ margin-right: 14px;
285
+ padding: 16px 26px;
286
+ }
287
+
288
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child {
289
+ margin-right: 0;
290
+ }
291
+
292
+ .tinvwl-error .form-control {
293
+ border: 2px solid #ff0000;
294
+ }
295
+
296
+ .tinvwl-error .tinvwl-error-icon {
297
+ position: absolute;
298
+ top: 8px;
299
+ left: -10px;
300
+ color: #ff0000;
301
+ }
302
+
303
+ .tinvwl-error .tinvwl-error-desc {
304
+ line-height: 1.42857143;
305
+ margin: 10px 8px 0;
306
+ color: #ff0000;
307
+ }
308
+
309
+ .tinvwl-wizard .tinvwl-return-to-dash {
310
+ margin-top: 45px;
311
+ text-align: center;
312
+ }
313
+
314
+ @media screen and (max-width: 1024px) {
315
+ .tinvwl-wizard {
316
+ margin: 20px auto;
317
+ }
318
+
319
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn {
320
+ display: block;
321
+ margin: 0 auto;
322
+ }
323
+
324
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn + .tinvwl-btn {
325
+ margin-top: 15px;
326
+ }
327
+ }
328
+
329
+ @media screen and (max-width: 782px) {
330
+ html {
331
+ margin: 0;
332
+ }
333
+
334
+ .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,
335
+ .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish {
336
+ padding-left: 50px;
337
+ padding-right: 50px;
338
+ }
339
+
340
+ .tinvwl-wizard .tinvwl-nav {
341
+ text-align: center;
342
+ }
343
+
344
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next {
345
+ float: none;
346
+ text-align: center;
347
+ }
348
  }
asset/css/admin.css CHANGED
@@ -1,3282 +1,3282 @@
1
- /* Misc */
2
-
3
- * {
4
- -webkit-box-sizing: border-box;
5
- -moz-box-sizing: border-box;
6
- box-sizing: border-box;
7
- }
8
- *:before,
9
- *:after {
10
- -webkit-box-sizing: border-box;
11
- -moz-box-sizing: border-box;
12
- box-sizing: border-box;
13
- }
14
-
15
- .clearfix:before,
16
- .clearfix:after,
17
- .container:before,
18
- .container:after,
19
- .container-fluid:before,
20
- .container-fluid:after,
21
- .row:before,
22
- .row:after,
23
- .form-horizontal .form-group:before,
24
- .form-horizontal .form-group:after,
25
- .form-group:before,
26
- .form-group:after,
27
- .tablenav:before,
28
- .tablenav:after,
29
- .tinvwl-panel:before,
30
- .tinvwl-panel:after {
31
- display: table;
32
- content: " ";
33
- }
34
- .clearfix:after,
35
- .container:after,
36
- .container-fluid:after,
37
- .row:after,
38
- .form-horizontal .form-group:after,
39
- .form-group:after,
40
- .tablenav:after,
41
- .tinvwl-panel:after {
42
- clear: both;
43
- }
44
-
45
- .tinvwl-header table,
46
- .tinvwl-content table {
47
- border-spacing: 0;
48
- border-collapse: collapse;
49
- width: 100%;
50
- max-width: 100%;
51
- }
52
-
53
- .tinvwl-header td,
54
- .tinvwl-header th,
55
- .tinvwl-content td,
56
- .tinvwl-content th {
57
- padding: 0;
58
- }
59
-
60
- .tinvwl-header img,
61
- .tinvwl-content img {
62
- height: auto;
63
- max-width: 100%;
64
- }
65
-
66
- .tinvwl-header {
67
- /*margin-bottom: 40px;*/
68
- }
69
-
70
- /* General */
71
-
72
- #wpwrap {
73
- background: #f6f3ed;
74
- }
75
-
76
- #wpcontent {
77
- padding-left: 0;
78
- }
79
-
80
- #wpbody-content {
81
- padding-bottom: 135px;
82
- }
83
-
84
- #update-nag,
85
- .update-nag,
86
- .notice,
87
- div.error,
88
- div.updated {
89
- margin: 20px 0 0 40px;
90
- }
91
-
92
- .notice,
93
- div.error,
94
- div.updated {
95
- margin-right: 40px;
96
- }
97
-
98
- body .tinvwl-header,
99
- body .tinvwl-content {
100
- font-family: Arial, sans-serif;
101
- font-size: 14px;
102
- line-height: 1.429;
103
- color: #6b625a;
104
- }
105
-
106
- button,
107
- input,
108
- select,
109
- textarea {
110
- font-family: inherit;
111
- font-size: inherit;
112
- font-weight: inherit;
113
- }
114
-
115
- label,
116
- .tinv-label {
117
- display: block;
118
- font-size: 15px;
119
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
120
- color: #291C09;
121
- font-weight: 600;
122
- margin-bottom: 7px;
123
- }
124
-
125
- h1, h2, h3, h4, h5, h6,
126
- .wrap h1 {
127
- color: #291c09;
128
- font-family: 'Open Sans', Arial, sans-serif;
129
- font-weight: normal;
130
- line-height: 1.313;
131
- padding: 0;
132
- margin: 0;
133
- border: 0;
134
- }
135
-
136
- h1,
137
- .wrap h1 {
138
- font-size: 30px;
139
- }
140
-
141
- h2 {
142
- font-size: 26px;
143
- }
144
-
145
- h3 {
146
- font-size: 22px;
147
- }
148
-
149
- h4 {
150
- font-size: 18px;
151
- }
152
-
153
- h5 {
154
- font-size: 14px;
155
- }
156
-
157
- h6 {
158
- font-size: 12px;
159
- }
160
-
161
- @media screen and (max-width: 1200px) {
162
- #update-nag,
163
- .update-nag,
164
- .notice,
165
- div.error,
166
- div.updated {
167
- margin-top: 20px;
168
- margin-left: 20px;
169
- margin-right: 20px;
170
- }
171
- }
172
-
173
- @media screen and (max-width: 782px) {
174
- .auto-fold #wpcontent {
175
- padding-left: 0;
176
- }
177
-
178
- #update-nag,
179
- .update-nag,
180
- .notice,
181
- div.error,
182
- div.updated {
183
- margin: 20px 0 0 0;
184
- }
185
-
186
- .notice,
187
- div.error,
188
- div.updated {
189
- margin-right: 0;
190
- }
191
- }
192
-
193
- /**
194
- * SubMenu
195
- */
196
- #toplevel_page_tinvwl ul ul{
197
- display:none;
198
- margin-left: 15px;
199
- position:absolute;
200
- }
201
- #toplevel_page_tinvwl ul li:hover ul, #toplevel_page_tinvwl ul li.current ul{
202
- display:block;
203
- left:145px;
204
- margin-left: 15px;
205
- position:absolute;
206
- top:0px;
207
- }
208
- /**
209
- * Header Page
210
- */
211
- /*.tinvwl-header {
212
- background-color: #FFF;
213
- height: 48px;
214
- left: -20px;
215
- margin: 0;
216
- padding: 24px 40px;
217
- position: relative;
218
- right: 0;
219
- width: calc(100% - 60px);
220
- top: 0;
221
- }
222
- .tinvwl-header .title {
223
- font-size: 21px;
224
- line-height: 21px;
225
- font-weight: 400;
226
- float: left;
227
- }*/
228
- /*.tinvwl-header .status-panel {
229
- float: right;
230
- }*/
231
-
232
- /**
233
- * Status Panel
234
- */
235
- .status-panel > div {
236
- display: inline-block;
237
- margin-left: 21px;
238
- }
239
- .status-panel .button-link {
240
- background-color: #FF5739;
241
- color: #FFF;
242
- text-decoration: none;
243
- text-transform: uppercase;
244
- line-height: 10px;
245
- font-weight: 600;
246
- height: 48px;
247
- display: table-cell;
248
- border-radius: 5px;
249
- padding: 0 17px;
250
- vertical-align:middle;
251
- }
252
- .status-panel .button-link span::before {
253
- color: #ffdc00;
254
- display: inline-block;
255
- font: normal 12px/1 'dashicons';
256
- vertical-align: bottom;
257
- -webkit-font-smoothing: antialiased;
258
- content: "\f155";
259
- }
260
- .status-panel .button-round {
261
- border: 2px solid #f1f1f1;
262
- border-radius: 50%;
263
- width: 43px;
264
- padding-top: 5px;
265
- padding-left: 2px;
266
- height: 40px;
267
- display: table-cell;
268
- text-align: center;
269
- vertical-align: middle;
270
- }
271
- .status-panel .status-tutorial span::before {
272
- color: #515151;
273
- display: inline-block;
274
- font: normal 24px/1 'dashicons';
275
- vertical-align: middle;
276
- -webkit-font-smoothing: antialiased;
277
- content: "\f118";
278
- }
279
-
280
- /**
281
- * Message Status
282
- */
283
-
284
- .tinvwl-status-message {
285
- font-family: Arial, sans-serif;
286
- font-size: 14px;
287
- line-height: 1.429;
288
- margin-top: 40px;
289
- color: #6b625a;
290
- border-top: 2px solid #f6f3ed;
291
- }
292
-
293
- .tinvwl-status-message .tinvwl-title {
294
- padding: 13px 20px;
295
- float: left;
296
- width: 142px;
297
- font-weight: bold;
298
- }
299
-
300
- .tinvwl-status-message.type-error .tinvwl-title,
301
- .tinvwl-status-message.type-tip .tinvwl-title {
302
- color: #fff;
303
- }
304
-
305
- .tinvwl-status-message.type-attention .tinvwl-title {
306
- color: #23282d;
307
- }
308
-
309
- .tinvwl-status-message.type-error .tinvwl-title {
310
- background: #ff3814;
311
- }
312
-
313
- .tinvwl-status-message.type-tip .tinvwl-title {
314
- background: #30aec4;
315
- }
316
-
317
- .tinvwl-status-message.type-attention .tinvwl-title {
318
- background: #ffe900;
319
- }
320
-
321
- .tinvwl-status-message .tinvwl-title i {
322
- margin-right: 10px;
323
- }
324
-
325
- .tinvwl-status-message.type-error > .tinvwl-title > i:before {
326
- content: "\f00d";
327
- }
328
- .tinvwl-status-message.type-tip > .tinvwl-title > i:before {
329
- content: "\f05a";
330
- }
331
- .tinvwl-status-message.type-attention > .tinvwl-title > i:before {
332
- content: "\f071";
333
- }
334
-
335
- .tinvwl-status-message .tinvwl-message {
336
- padding: 13px 20px;
337
- overflow: hidden;
338
- height: 100%;
339
- background: #faf9f7;
340
- }
341
-
342
- @media screen and (max-width: 782px) {
343
- .tinvwl-status-message {
344
- margin-top: 20px;
345
- }
346
- }
347
-
348
- /**
349
- * Form Elements
350
- */
351
- .tinvwl-content label {
352
- /*font-size: 14px;
353
- font-weight: 600;
354
- margin: 2px;*/
355
- /*line-height: 42px;*/
356
- }
357
-
358
- .tinvwl-content a {
359
- text-decoration: none;
360
- color: #30aec4;
361
- }
362
-
363
- .tinvwl-content a:hover,
364
- .tinvwl-content a:active,
365
- .tinvwl-content a:focus {
366
- color: #524737;
367
- }
368
-
369
- .tinvwl-content input[type=text],
370
- .tinvwl-content input[type=password],
371
- .tinvwl-content input[type=checkbox],
372
- .tinvwl-content input[type=color],
373
- .tinvwl-content input[type=date],
374
- .tinvwl-content input[type=datetime],
375
- .tinvwl-content input[type=datetime-local],
376
- .tinvwl-content input[type=email],
377
- .tinvwl-content input[type=month],
378
- .tinvwl-content input[type=number],
379
- .tinvwl-content input[type=radio],
380
- .tinvwl-content input[type=tel],
381
- .tinvwl-content input[type=time],
382
- .tinvwl-content input[type=url],
383
- .tinvwl-content input[type=week],
384
- .tinvwl-content input[type=search],
385
- .tinvwl-content select,
386
- .tinvwl-content textarea {
387
- line-height: 1.429;
388
- padding: 9px 13px;
389
- margin: 0;
390
- color: #4f4639;
391
- border: 1px solid rgba(0, 0, 0, .14);
392
- -webkit-box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .14);
393
- box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .14);
394
- }
395
-
396
- .tinvwl-content textarea {
397
- height: 70px;
398
- }
399
-
400
- .tinvwl-content input[type=text],
401
- .tinvwl-content input[type=password],
402
- .tinvwl-content input[type=color],
403
- .tinvwl-content input[type=date],
404
- .tinvwl-content input[type=datetime],
405
- .tinvwl-content input[type=datetime-local],
406
- .tinvwl-content input[type=email],
407
- .tinvwl-content input[type=month],
408
- .tinvwl-content input[type=number],
409
- .tinvwl-content input[type=tel],
410
- .tinvwl-content input[type=time],
411
- .tinvwl-content input[type=url],
412
- .tinvwl-content input[type=week],
413
- .tinvwl-content input[type=search],
414
- .tinvwl-content select {
415
- height: 42px;
416
- -webkit-border-radius: 4px;
417
- -moz-border-radius: 4px;
418
- border-radius: 4px;
419
- }
420
-
421
- .tinvwl-content .tablenav input[type=search] {
422
- height: 35px;
423
- width: 210px;
424
- padding: 9px 13px;
425
- -webkit-box-shadow: none;
426
- box-shadow: none;
427
- border: none;
428
- background: #f4f3ef;
429
- }
430
-
431
- .tinvwl-content .tablenav input[type=search] + input[type=submit],
432
- .tinvwl-content .tablenav input[type=search] + button[type=submit] {
433
- vertical-align: middle;
434
- }
435
-
436
- .tinvwl-content .tablenav .tinvwl-select-wrap + input[type=submit],
437
- .tinvwl-content .tablenav input[type=search] + input[type=submit],
438
- .tinvwl-content .tablenav input[type=search] + button[type=submit] {
439
- float: right;
440
- margin-left: 8px !important;
441
- }
442
-
443
- .tinvwl-content input[type=text]:disabled,
444
- .tinvwl-content input[type=password]:disabled,
445
- .tinvwl-content input[type=color]:disabled,
446
- .tinvwl-content input[type=date]:disabled,
447
- .tinvwl-content input[type=datetime]:disabled,
448
- .tinvwl-content input[type=datetime-local]:disabled,
449
- .tinvwl-content input[type=email]:disabled,
450
- .tinvwl-content input[type=month]:disabled,
451
- .tinvwl-content input[type=number]:disabled,
452
- .tinvwl-content input[type=tel]:disabled,
453
- .tinvwl-content input[type=time]:disabled,
454
- .tinvwl-content input[type=url]:disabled,
455
- .tinvwl-content input[type=week]:disabled,
456
- .tinvwl-content input[type=search]:disabled,
457
- .tinvwl-content select:disabled {
458
- font-size: 15px;
459
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
460
- font-weight: 600;
461
- color: #291C09;
462
- background-color: #f6f3ed;
463
- border-color: #f6f3ed;
464
- }
465
-
466
- .tinvwl-content select {
467
- font-family: Arial, sans-serif;
468
- font-size: 14px;
469
- -webkit-appearance: none;
470
- -moz-appearance: none;
471
- appearance: none;
472
- cursor: pointer;
473
- padding: 9px 40px 9px 13px;
474
- background-color: #fff;
475
- background-image: url(../img/select_caret.png);
476
- background-repeat: no-repeat;
477
- background-position: 96% center;
478
- background-position: calc(100% - 15px) center;
479
- }
480
-
481
- @media screen and (max-width: 782px) {
482
- input, textarea {
483
- font-size: 14px;
484
- }
485
-
486
- #wpbody .tinvwl-content select {
487
- height: 42px;
488
- font-size: 14px;
489
- }
490
- }
491
-
492
- .tinvwl-content select[multiple="multiple"] {
493
- padding: 9px 13px;
494
- background: #fff;
495
- }
496
-
497
- .tinvwl-content .tinvwl-select.grey {
498
- font-size: 14px;
499
- font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
500
- padding: 8px 11px;
501
- height: 35px;
502
- border: none;
503
- color: #5D5D5D;
504
- background: #f4f3ef;
505
- }
506
-
507
- .tinvwl-select-wrap {
508
- position: relative;
509
- display: inline-block;
510
- vertical-align: middle;
511
- cursor: pointer;
512
- }
513
-
514
- .tinvwl-content select.tinvwl-select.grey {
515
- padding-right: 47px;
516
- margin: 0;
517
- -webkit-border-radius: 4px;
518
- -moz-border-radius: 4px;
519
- border-radius: 4px;
520
- }
521
-
522
- .tinvwl-select + .tinvwl-caret {
523
- pointer-events: none;
524
- display: inline-block;
525
- position: absolute;
526
- top: 0;
527
- right: 0;
528
- width: 36px;
529
- height: 36px;
530
- line-height: 36px;
531
- text-align: center;
532
- -webkit-border-radius: 0 4px 4px 0;
533
- -moz-border-radius: 0 4px 4px 0;
534
- border-radius: 0 4px 4px 0;
535
- }
536
-
537
- .tinvwl-select + .tinvwl-caret span {
538
- display: inline-block;
539
- width: 13px;
540
- height: 8px;
541
- background: url(../img/chevron_down.png) no-repeat center;
542
- background-position: 0 -10px;
543
- }
544
-
545
- .tinvwl-select:hover + .tinvwl-caret {
546
- background: #3e3e3e;
547
- }
548
-
549
- .tinvwl-select:hover + .tinvwl-caret span {
550
- background-position: 0 0;
551
- }
552
-
553
-
554
- /* Buttons */
555
-
556
- .tinvwl-content .tinvwl-nav {
557
- margin: 0 40px;
558
- }
559
-
560
- .tinvwl-content .tinvwl-panel + .tinvwl-nav {
561
- margin-top: 40px;
562
- }
563
-
564
- .tinvwl-nav .tinvwl-prev {
565
- float: left;
566
- }
567
-
568
- .tinvwl-nav .tinvwl-prev .tinvwl-btn {
569
- float: left;
570
- }
571
-
572
- .tinvwl-nav .tinvwl-next {
573
- float: right;
574
- text-align: right;
575
- }
576
-
577
- .tinvwl-nav .tinvwl-next .tinvwl-btn {
578
- /*float: right;*/
579
- }
580
-
581
- @media (max-width: 1199px) {
582
- .tinvwl-nav .tinvwl-prev,
583
- .tinvwl-nav .tinvwl-next {
584
- /*float: none;
585
- text-align: left;*/
586
- }
587
- }
588
-
589
- .tinvwl-nav .tinvwl-btn + .tinvwl-btn {
590
- margin-left: 20px;
591
- }
592
-
593
- .tinvwl-panel.only-button.w-bg {
594
- background: none;
595
- overflow: visible;
596
- }
597
-
598
- .tinvwl-panel.only-button.w-shadow {
599
- -webkit-box-shadow: none;
600
- box-shadow: none;
601
- overflow: visible;
602
- }
603
-
604
- .tinvwl-panel.only-button thead,
605
- .tinvwl-panel.only-button tfoot {
606
- display: none;
607
- }
608
-
609
- .tinvwl-panel.only-button .control-label {
610
- display: none;
611
- }
612
-
613
- .tinvwl-panel.only-button .form-group {
614
- margin-bottom: 0;
615
- }
616
-
617
- .tinvwl-panel.only-button .form-control {
618
- display: inline-block;
619
- width: auto;
620
- }
621
-
622
- .tinvwl-panel.only-button .tinvwl-table > tbody > tr > td {
623
- padding: 0;
624
- }
625
-
626
- #doaction,
627
- #doaction2,
628
- #post-query-submit {
629
- margin: 0;
630
- }
631
-
632
- button,
633
- input[type="submit"],
634
- .tinvwl-btn {
635
- display: inline-block;
636
- vertical-align: middle;
637
- margin: 0;
638
- font-family: 'Open Sans', Arial, sans-serif;
639
- font-size: 14px;
640
- line-height: normal;
641
- cursor: pointer;
642
- text-decoration: none;
643
- }
644
-
645
- .tinvwl-btn,
646
- a.tinvwl-btn {
647
- padding: 11px 19px 12px 18px;
648
- font-weight: 800;
649
- text-align: center;
650
- text-transform: uppercase;
651
- letter-spacing: -.025em;
652
- border: none;
653
- -webkit-border-radius: 2px;
654
- -moz-border-radius: 2px;
655
- border-radius: 2px;
656
- color: #fff;
657
- background-color: #96b100;
658
- }
659
-
660
- .tinvwl-btn.large {
661
- padding: 14px 19px 14px 18px;
662
- }
663
-
664
- .tinvwl-btn.small {
665
- padding: 6px 11px 7px;
666
- }
667
-
668
- .tinvwl-btn.smaller {
669
- /*padding: 7px 15px;*/
670
- padding: 11px 18px 12px;
671
- }
672
-
673
- .tinvwl-btn.red,
674
- .tinvwl-btn.green,
675
- .tinvwl-btn.dark-green,
676
- .tinvwl-btn.black {
677
- font-weight: 800;
678
- }
679
-
680
- .tinvwl-btn.grey {
681
- /*padding: 6px 11px 7px;*/
682
- margin: 0;
683
- padding: 8px 12px;
684
- font-weight: bold;
685
- /*letter-spacing: 0;*/
686
- color: #3e3e3e;
687
- background: #F4F3EF;
688
- }
689
-
690
- .tinvwl-btn.grey.large {
691
- font-weight: 800;
692
- padding: 14px 19px 14px 18px;
693
- }
694
-
695
- .tinvwl-btn.grey.w-icon {
696
- letter-spacing: -.025em;
697
- }
698
-
699
- .tinvwl-btn.red {
700
- color: #fff;
701
- background-color: #ff5739;
702
- }
703
-
704
- .tinvwl-btn.orange {
705
- color: #fff;
706
- background-color: #FF9F07;
707
- }
708
-
709
- .tinvwl-btn.dark-green {
710
- /*color: #fff;*/
711
- /*background-color: #96b100;*/
712
- }
713
-
714
- .tinvwl-btn.white.smaller {
715
- font-size: 14px;
716
- font-weight: bold;
717
- letter-spacing: -.05em;
718
- padding: 10px 15px 11px;
719
- border: 1px solid rgba(0,0,0,.14);
720
- box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
721
- }
722
-
723
- .tinvwl-btn.white.small {
724
- font-family: Arial, sans-serif;
725
- font-size: 14px;
726
- text-transform: none;
727
- font-weight: normal;
728
- border: 1px solid rgba(0,0,0,.14);
729
- box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
730
- }
731
-
732
- .tinvwl-btn.white.small {
733
- padding: 9px 18px;
734
- color: #4f4639;
735
- }
736
-
737
- .tinvwl-btn.small.white:hover,
738
- .tinvwl-btn.small.white:active,
739
- .tinvwl-btn.small.white:focus {
740
- color: #fff;
741
- }
742
-
743
- .tinvwl-btn.white {
744
- color: #291c09;
745
- background: #fff;
746
- }
747
-
748
- .tinvwl-btn.white.no-txt {
749
- padding: 12px 16px;
750
- }
751
-
752
- .tinvwl-btn.white.small.no-txt {
753
- padding: 9px 12px;
754
- }
755
-
756
- .tinvwl-btn.white i {
757
- color: #6b625a;
758
- margin-right: 11px;
759
- }
760
-
761
- .tinvwl-btn.w-icon {
762
- font-weight: 800;
763
- }
764
-
765
- .tinvwl-btn.w-icon i {
766
- margin-right: 16px;
767
- }
768
-
769
- .tinvwl-btn.round.w-icon i {
770
- margin-right: 15px;
771
- font-size: 16px;
772
- }
773
-
774
- .tinvwl-btn.w-icon i.fa-graduation-cap {
775
- vertical-align: text-bottom;
776
- }
777
-
778
- .tinvwl-btn.red.w-icon i {
779
- margin-right: 13px;
780
- }
781
-
782
- .tinvwl-btn.xl-icon i,
783
- .tinvwl-btn.round.xl-icon i {
784
- font-size: 17px;
785
- margin-right: 15px;
786
- }
787
-
788
- .tinvwl-btn.lg-icon i {
789
- font-size: 15px;
790
- }
791
-
792
- .tinvwl-btn.md-icon i,
793
- .tinvwl-btn.round.md-icon i {
794
- font-size: 14px;
795
- }
796
-
797
- .tinvwl-btn.sm-icon i {
798
- font-size: 13px;
799
- }
800
-
801
- .tinvwl-btn.xs-icon i {
802
- font-size: 11px;
803
- vertical-align: 1%;
804
- }
805
-
806
- .tinvwl-btn.white.no-txt i {
807
- margin-right: 0;
808
- }
809
-
810
- .tinvwl-btn.white:hover i,
811
- .tinvwl-btn.white:active i,
812
- .tinvwl-btn.white:focus i {
813
- color: #fff;
814
- }
815
-
816
- .tinvwl-btn.green {
817
- color: #fff;
818
- background-color: #a9c203;
819
- }
820
-
821
- .tinvwl-btn.black {
822
- color: #fff;
823
- background-color: #515151;
824
- }
825
-
826
- .tinvwl-btn.smaller-txt {
827
- font-size: 12px;
828
- padding: 15px 20px;
829
- }
830
-
831
- .tinvwl-btn.medium {
832
- letter-spacing: 0;
833
- }
834
-
835
- .tinvwl-btn.medium.smaller-txt {
836
- padding: 9px 16px;
837
- }
838
-
839
- .tinvwl-btn.round {
840
- -webkit-border-radius: 25px;
841
- -moz-border-radius: 25px;
842
- border-radius: 25px;
843
- padding: 15px 28px 16px;
844
- }
845
-
846
- .tinvwl-btn.round.red {
847
- /*padding: 15px 22px 16px;*/
848
- padding: 16px 30px;
849
- }
850
-
851
- .tinvwl-btn.split {
852
- padding: 0 26px 0 0;
853
- }
854
-
855
- .tinvwl-btn.split span {
856
- display: inline-block;
857
- text-align: center;
858
- width: 46px;
859
- padding: 14px 0;
860
- margin-right: 14px;
861
- -webkit-border-radius: 4px 0 0 4px;
862
- -moz-border-radius: 4px 0 0 4px;
863
- border-radius: 4px 0 0 4px;
864
- background: #8aa300;
865
- }
866
-
867
- .tinvwl-btn.split:hover span,
868
- .tinvwl-btn.split:active span,
869
- .tinvwl-btn.split:focus span {
870
- background: #434343;
871
- }
872
-
873
- .tinvwl-btn.split.green span {
874
- background: #b9cf09;
875
- }
876
-
877
- .tinvwl-btn.split.black span {
878
- background: #434343;
879
- }
880
-
881
- .tinvwl-btn.split span i {
882
- font-size: 17px;
883
- }
884
-
885
- .tinvwl-btn:not(:disabled):hover,
886
- .tinvwl-btn:not(:disabled):active,
887
- .tinvwl-btn:not(:disabled):focus,
888
- a.tinvwl-btn:not(:disabled):hover,
889
- a.tinvwl-btn:not(:disabled):active,
890
- a.tinvwl-btn:not(:disabled):focus {
891
- color: #fff;
892
- /*background: #3e3e3e;*/
893
- background-color: #515151;
894
- }
895
-
896
- /* Icons */
897
-
898
- .tinvwl-header .icon.border-grey {
899
- position: relative;
900
- display: inline-block;
901
- width: 45px;
902
- height: 45px;
903
- line-height: 45px;
904
- text-align: center;
905
- background: #fff;
906
- border: 2px solid #f1f1f1;
907
- -webkit-border-radius: 50%;
908
- -moz-border-radius: 50%;
909
- border-radius: 50%;
910
- color: #3e3e3e;
911
- }
912
-
913
- .tinvwl-header .icon.border-grey:hover {
914
- border-color: #515151;
915
- }
916
-
917
- .tinvwl-header .icon.w-lines {
918
- position: relative;
919
- padding: 0 30px;
920
- }
921
-
922
- .tinvwl-header .icon.w-lines:before,
923
- .tinvwl-header .icon.w-lines:after {
924
- content: '';
925
- position: absolute;
926
- top: 50%;
927
- top: calc(50% - 1px);
928
- width: 17px;
929
- height: 1px;
930
- background: rgba(0, 0, 0, .12);
931
- }
932
-
933
- .tinvwl-header .icon.w-lines:before {
934
- left: 0;
935
- }
936
- .tinvwl-header .icon.w-lines:after {
937
- right: 0;
938
- }
939
-
940
- .tinvwl-header .icon .badge {
941
- position: absolute;
942
- top: -5px;
943
- right: -10px;
944
- display: inline-block;
945
- min-width: 26px;
946
- height: 26px;
947
- font-size: 11px;
948
- line-height: 19px;
949
- font-weight: bold;
950
- background: #ff5739;
951
- border: 3px solid #ffffff;
952
- color: #ffffff;
953
- -webkit-border-radius: 50%;
954
- -moz-border-radius: 50%;
955
- border-radius: 50%;
956
- }
957
-
958
- .tinvwl-header {
959
- padding: 21px 40px;
960
- margin-bottom: 40px;
961
- background: #ffffff;
962
- }
963
-
964
- .tinwl-logo-title {
965
- }
966
-
967
- .tinwl-logo i.logo_heart {
968
- min-width: 54px;
969
- }
970
-
971
- .tinwl-logo h2 {
972
- font-size: 18px;
973
- font-weight: bold;
974
- text-transform: uppercase;
975
- line-height: 1;
976
- padding-left: 10px;
977
- }
978
-
979
- .tinvwl-header .tinvwl-title {
980
- padding-left: 28px;
981
- margin-left: 28px;
982
- border-left: 1px solid #dcddde;
983
- }
984
-
985
- .tinvwl-header h1 {
986
- color: #3e3e3e;
987
- padding: 0;
988
- }
989
-
990
- .tinvwl-header .tinvwl-status-panel {
991
- margin-top: -12px;
992
- }
993
-
994
- .tinvwl-header .tinvwl-status-panel > a {
995
- vertical-align: middle;
996
- }
997
-
998
- .tinvwl-header .tinvwl-status-panel > a + a {
999
- margin-left: 15px;
1000
- }
1001
-
1002
- .tinvwl-header .tinvwl-btn {
1003
- margin-top: 15px;
1004
- }
1005
-
1006
- .tinvwl-header .tinvwl-btn {
1007
- margin-top: 18px;
1008
- }
1009
-
1010
- .tinvwl-header .tinvwl-btn.red i {
1011
- color: #ffdc00;
1012
- }
1013
-
1014
- .tinvwl-header .tinvwl-status-panel {
1015
- text-align: right;
1016
- }
1017
-
1018
- .tinvwl-sign-icon {
1019
- font-size: 30px;
1020
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
1021
- color: #948d84;
1022
- }
1023
-
1024
- @media (max-width: 1199px) {
1025
- .tinvwl-header .tinvwl-table,
1026
- .tinvwl-header .tinvwl-cell,
1027
- .tinvwl-header .tinvwl-cell-3 {
1028
- display: block;
1029
- }
1030
-
1031
- .tinvwl-header {
1032
- text-align: center;
1033
- }
1034
-
1035
- .tinvwl-header h1 + .tinvwl-status-panel {
1036
- margin-top: 25px;
1037
- }
1038
-
1039
- .tinvwl-header .tinvwl-status-panel {
1040
- text-align: center;
1041
- }
1042
-
1043
- .tinvwl-header .tinvwl-status-panel {
1044
- margin-top: 15px;
1045
- }
1046
-
1047
- .tinvwl-header .tinvwl-status-panel > a + a {
1048
- margin-left: 9px;
1049
- }
1050
-
1051
- .tinvwl-header {
1052
- padding: 18px 0 25px;
1053
- }
1054
-
1055
- .tinwl-logo, .tinwl-logo h2,
1056
- .tinwl-logo img,
1057
- .tinvwl-header .tinvwl-title {
1058
- display: block;
1059
- margin: 0 auto;
1060
- }
1061
-
1062
- .tinwl-logo h2 {
1063
- padding-left: 0;
1064
- margin-left: 0;
1065
- margin-top: 6px;
1066
- }
1067
-
1068
- .tinvwl-header .tinvwl-title {
1069
- position: relative;
1070
- padding-left: 12px;
1071
- padding-right: 12px;
1072
- padding-top: 13px;
1073
- margin-left: 0;
1074
- margin-top: 16px;
1075
- border-left: 0;
1076
- }
1077
-
1078
- .tinvwl-header .tinvwl-title:before {
1079
- content: '';
1080
- position: absolute;
1081
- top: 0;
1082
- left: 0;
1083
- right: 0;
1084
- width: 40px;
1085
- height: 1px;
1086
- margin: 0 auto;
1087
- background: #dcddde;
1088
- }
1089
- }
1090
-
1091
- @media (max-width: 782px) {
1092
-
1093
- .tinvwl-header .tinvwl-btn .tinvwl-txt {
1094
- display: none;
1095
- }
1096
-
1097
- .tinvwl-header .tinvwl-btn i {
1098
- margin-right: 0 !important;
1099
- }
1100
-
1101
- .tinvwl-header .tinvwl-btn.grey {
1102
- padding-left: 16px;
1103
- padding-right: 16px;
1104
- }
1105
- }
1106
-
1107
- .tinvwl-content h2{
1108
- /*margin: 0;*/
1109
- /*line-height: 40px;*/
1110
- }
1111
-
1112
-
1113
- /* Privacy Navigation */
1114
-
1115
- .tinwl-wishlists-privacy {
1116
- margin: -10px 0 0;
1117
- }
1118
-
1119
- .tinwl-wishlists-privacy li {
1120
- float: left;
1121
- margin: 10px 10px 0 0;
1122
- }
1123
-
1124
- .tinwl-wishlists-privacy li:last-child {
1125
- margin-right: 0;
1126
- }
1127
-
1128
- .tinwl-wishlists-privacy li a {
1129
- display: block;
1130
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
1131
- font-size: 14px;
1132
- font-weight: 600;
1133
- line-height: 1;
1134
- padding: 10px 16px;
1135
- -webkit-border-radius: 3px;
1136
- -moz-border-radius: 3px;
1137
- border-radius: 3px;
1138
- color: #404040;
1139
- background: #ede8df;
1140
- }
1141
-
1142
- .tinwl-wishlists-privacy li.active a,
1143
- .tinwl-wishlists-privacy li a:hover,
1144
- .tinwl-wishlists-privacy li a:active,
1145
- .tinwl-wishlists-privacy li a:focus {
1146
- color: #fff;
1147
- background-color: #96b100;
1148
- }
1149
-
1150
- @media screen and (max-width: 782px) {
1151
- .tinwl-wishlists-privacy {
1152
- margin-left: 15px;
1153
- }
1154
- }
1155
-
1156
- /* Panel */
1157
-
1158
- .tinvwl-panel {
1159
- margin: 40px 40px 0;
1160
- }
1161
-
1162
- .tinvwl-panel .w-bg-grey {
1163
- background: #fbfaf9;
1164
- }
1165
-
1166
- .tinvwl-panel.w-shadow {
1167
- -webkit-box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1168
- box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1169
- }
1170
-
1171
- .tinvwl-panel.w-bg {
1172
- background: #ffffff;
1173
- -webkit-border-radius: 4px;
1174
- -moz-border-radius: 4px;
1175
- border-radius: 4px;
1176
- }
1177
-
1178
- .tinvwl-table.w-info .tinvwl-info[rowspan],
1179
- .tinvwl-table.w-info .tinvwl-info[rowspan] .tinvwl-info-sign {
1180
- vertical-align: middle;
1181
- }
1182
-
1183
- .tinvwl-table.w-info .tinvwl-info-top > tr .tinvwl-info {
1184
- vertical-align: top;
1185
- }
1186
-
1187
- @media screen and (max-width: 1200px) {
1188
- .tinvwl-panel {
1189
- margin: 20px 20px 0;
1190
- }
1191
-
1192
- .tinvwl-header {
1193
- margin-bottom: 20px;
1194
- }
1195
- }
1196
-
1197
- @media screen and (max-width: 782px) {
1198
- .tinvwl-panel {
1199
- margin: 20px 0px 0;
1200
- }
1201
-
1202
- .tinvwl-panel.only-button {
1203
- text-align: center;
1204
- }
1205
- }
1206
-
1207
- /**
1208
- * Content Elements
1209
- */
1210
-
1211
- .tinvwl-content {
1212
- /*margin: 14px 40px 10px 20px;*/
1213
- }
1214
- .tinvwl-content section {
1215
- /*margin-top: 20px;*/
1216
- /*background-color: #FFF;*/
1217
- /*border-radius: 5px;*/
1218
- }
1219
- .tinvwl-content section:after{
1220
- /*content: '';
1221
- display: block;
1222
- height: 0;
1223
- clear: both;*/
1224
- }
1225
-
1226
-
1227
- /* Preview Icon */
1228
-
1229
- .tinvwl-icon-preview {
1230
- position: relative;
1231
- width: 50px;
1232
- height: 42px;
1233
- margin-right: 10px;
1234
- margin-bottom: 10px;
1235
- text-align: center;
1236
- -webkit-border-radius: 2px;
1237
- -moz-border-radius: 2px;
1238
- border-radius: 2px;
1239
- color: #595857;
1240
- background: #f6f3ed;
1241
- }
1242
-
1243
- @media (min-width: 1200px) {
1244
- .tinvwl-icon-preview {
1245
- margin-bottom: 0;
1246
- }
1247
- }
1248
-
1249
- .tinvwl-icon-preview span {
1250
- position: absolute;
1251
- top: 50%;
1252
- left: 0px;
1253
- right: 0px;
1254
-
1255
- -webkit-transform: translateY(-50%);
1256
- -moz-transform: translateY(-50%);
1257
- -ms-transform: translateY(-50%);
1258
- -o-transform: translateY(-50%);
1259
- transform: translateY(-50%);
1260
- }
1261
-
1262
- .tinvwl-icon-preview span img {
1263
- max-width: 50px;
1264
- max-height: 42px;
1265
- vertical-align: middle;
1266
- }
1267
-
1268
-
1269
-
1270
- /* Table */
1271
-
1272
- .tinvwl-content .table-wrap {
1273
- /*padding: 25px 0;*/
1274
- }
1275
-
1276
- .tinvwl-content table.widefat {
1277
- -webkit-box-shadow: none;
1278
- -moz-box-shadow: none;
1279
- box-shadow: none;
1280
- }
1281
-
1282
- .tinvwl-content .tablenav {
1283
- height: auto;
1284
- margin: 30px;
1285
- background: #ffffff;
1286
- }
1287
-
1288
- .tinvwl-content .tablenav .actions {
1289
- /*padding: 6px 0 0;*/
1290
- padding: 0;
1291
- }
1292
-
1293
- @media screen and (max-width: 782px) {
1294
- .tablenav.top .actions {
1295
- display: block;
1296
- }
1297
-
1298
- .tablenav br.clear {
1299
- display: none;
1300
- }
1301
-
1302
- .tinvwl-content .tablenav {
1303
- margin: 15px 12px;
1304
- }
1305
-
1306
- .tinvwl-content .tablenav .alignleft,
1307
- .tinvwl-content .tablenav .alignright {
1308
- float: none;
1309
- }
1310
-
1311
- .tinvwl-content .tablenav .tinvwl-full {
1312
- display: none;
1313
- }
1314
-
1315
- .tinvwl-content .tablenav .alignleft + .alignright {
1316
- margin-top: 10px;
1317
- }
1318
-
1319
- .tinvwl-content .tablenav .tinvwl-select-wrap {
1320
- width: calc( 100% - 75px );
1321
- }
1322
-
1323
- #wpbody .tinvwl-content .tablenav .tinvwl-select-wrap select.tinvwl-select {
1324
- max-width: 100%;
1325
- width: 100%;
1326
- height: 35px;
1327
- padding: 9px 13px;
1328
- }
1329
-
1330
- .tinvwl-content .tablenav input[type=search] {
1331
- width: calc( 100% - 84px );
1332
- }
1333
-
1334
- .tinvwl-content .tablenav .tinvwl-select-wrap + input[type=submit],
1335
- .tinvwl-content .tablenav input[type=search] + input[type=submit] {
1336
- }
1337
- }
1338
-
1339
- .tinvwl-content .widefat th,
1340
- .tinvwl-content .widefat td {
1341
- text-align: center;
1342
- padding: 0;
1343
- }
1344
-
1345
- .tinvwl-content .widefat th {
1346
- padding: 27px 0px;
1347
- position: relative;
1348
- }
1349
-
1350
- .tinvwl-info-wrap.tinvwl-in-table {
1351
- /*position: absolute;
1352
- top: 50%;
1353
- margin-top: -11px;*/
1354
- }
1355
-
1356
- .tinvwl-content .widefat th.sortable,
1357
- .tinvwl-content .widefat th.sorted {
1358
- padding: 0;
1359
- }
1360
-
1361
- .tinvwl-content .widefat th.sortable > a,
1362
- .tinvwl-content .widefat th.sorted > a {
1363
- padding: 28px 17px;
1364
- }
1365
-
1366
- .tinvwl-content .widefat th.tinvwl-has-info {
1367
- padding-top: 28px;
1368
- }
1369
-
1370
- .tinvwl-content .widefat th.tinvwl-has-info.sortable > a,
1371
- .tinvwl-content .widefat th.tinvwl-has-info.sorted > a {
1372
- padding-top: 0;
1373
- }
1374
-
1375
- .tinvwl-content .widefat th.sortable:first-of-type,
1376
- .tinvwl-content .widefat th.sorted:first-of-type {
1377
- padding-left: 0;
1378
- }
1379
-
1380
- .tinvwl-content .widefat th.sortable:first-of-type > a,
1381
- .tinvwl-content .widefat th.sorted:first-of-type > a {
1382
- padding-left: 28px;
1383
- }
1384
-
1385
- .tinvwl-content .widefat th:first-of-type,
1386
- .tinvwl-content .widefat td:first-of-type {
1387
- text-align: left;
1388
- padding-left: 28px;
1389
- }
1390
-
1391
- .tinvwl-content .widefat th .tinvwl-help-wrap {
1392
- display: inline-block;
1393
- }
1394
-
1395
- .tinvwl-content .widefat th .tinvwl-help-wrap {
1396
- margin-left: 6px;
1397
- }
1398
-
1399
- .tinvwl-content .widefat th.sortable > a + .tinvwl-help-wrap,
1400
- .tinvwl-content .widefat th.sorted > a + .tinvwl-help-wrap {
1401
- margin-left: 0;
1402
- }
1403
-
1404
- .tinvwl-content .widefat thead tr {
1405
- background: #f4f3ef;
1406
- }
1407
-
1408
- .tinvwl-content .striped>tbody>:nth-child(odd),
1409
- .tinvwl-content ul.striped>:nth-child(odd) {
1410
- background: none;
1411
- }
1412
-
1413
- .tinvwl-content .widefat thead td.check-column,
1414
- .tinvwl-content .widefat tbody th.check-column {
1415
- width: 50px;
1416
- padding: 28px 0 28px 28px;
1417
- vertical-align: middle;
1418
- }
1419
-
1420
- .tinvwl-content .widefat thead td.check-column {
1421
- padding: 28px 0 28px 28px;
1422
- }
1423
-
1424
- .tinvwl-content .widefat tbody th.check-column {
1425
- padding: 13px 0 13px 28px;
1426
- }
1427
-
1428
- .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > a,
1429
- .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > a,
1430
- .tinvwl-content .widefat thead td.check-column + th,
1431
- .tinvwl-content .widefat tbody th.check-column + td {
1432
- padding-left: 21px;
1433
- }
1434
-
1435
- .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > .tinvwl-info-wrap.tinvwl-in-table,
1436
- .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > .tinvwl-info-wrap.tinvwl-in-table {
1437
- padding-left: 21px;
1438
- }
1439
-
1440
- .tinvwl-content .widefat thead td.pause-play-column,
1441
- .tinvwl-content .widefat tbody th.pause-play-column {
1442
- padding: 0;
1443
- width: 53px;
1444
- text-align: center;
1445
- }
1446
-
1447
- .tinvwl-content th.sortable,
1448
- .tinvwl-content th.sorted {
1449
- }
1450
-
1451
- .tinvwl-content th.sortable a,
1452
- .tinvwl-content th.sorted a {
1453
- padding: 0;
1454
- }
1455
-
1456
- .tinvwl-content .widefat th,
1457
- .tinvwl-content th.sortable > a,
1458
- .tinvwl-content th.sorted > a {
1459
- font-size: 14px;
1460
- font-weight: 600;
1461
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
1462
- color: #291C09;
1463
- text-transform: uppercase;
1464
- letter-spacing: -.025em;
1465
- }
1466
-
1467
- .tinvwl-content th.sortable > a,
1468
- .tinvwl-content th.sorted > a {
1469
- display: inline-block;
1470
- vertical-align: middle;
1471
- }
1472
-
1473
- .tinvwl-content .widefat th.sortable > a,
1474
- .tinvwl-content .widefat th.sorted > a {
1475
- position: relative;
1476
- }
1477
-
1478
- .tinvwl-content .widefat th.sortable > a .sorting-indicator,
1479
- .tinvwl-content .widefat th.sorted > a .sorting-indicator {
1480
- position: absolute;
1481
- top: 50%;
1482
- right: 0;
1483
- margin-top: -2px;
1484
- }
1485
-
1486
- .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1487
- .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1488
- margin-top: -15px;
1489
- }
1490
-
1491
- .tinvwl-content th.sortable a span,
1492
- .tinvwl-content th.sorted a span {
1493
- float: none;
1494
- }
1495
-
1496
- .tinvwl-content table.widefat {
1497
- /*table-layout: auto;*/
1498
- border: none;
1499
- border-bottom: 2px solid #f7f7f7;
1500
- }
1501
-
1502
- .tinvwl-content .widefat thead td,
1503
- .tinvwl-content .widefat thead th {
1504
- border-bottom: 0;
1505
- }
1506
-
1507
- .tinvwl-content .widefat td {
1508
- padding: 24px 0;
1509
- vertical-align: middle;
1510
- }
1511
-
1512
- .tinvwl-content .widefat tbody td {
1513
- padding: 13px 0;
1514
- }
1515
-
1516
- .tinvwl-content .widefat td,
1517
- .tinvwl-content .widefat td ol,
1518
- .tinvwl-content .widefat td p,
1519
- .tinvwl-content .widefat td ul {
1520
- font-size: 14px;
1521
- }
1522
-
1523
- .tinvwl-content .widefat tbody tr + tr {
1524
- border-top: 2px solid #f7f7f7;
1525
- }
1526
-
1527
- .tinvwl-content .widefat thead th.column-preference {
1528
- /*display: none;*/
1529
- text-indent: -9999px;
1530
- }
1531
-
1532
- .tinvwl-content .widefat.wishlists thead th.column-preference,
1533
- .tinvwl-content .widefat.wishlists tbody td.column-preference {
1534
- min-width: 220px;
1535
- width: 220px;
1536
- }
1537
-
1538
- .tinvwl-content .widefat:not(.products) tbody td.column-preference {
1539
- text-align: right;
1540
- }
1541
-
1542
- .tinvwl-content .widefat.products thead th.column-quantity a > span:not(.sorting-indicator) {
1543
- max-width: 91px;
1544
- }
1545
-
1546
- .tinvwl-content .widefat.users tbody .column-name > a {
1547
- display: block;
1548
- }
1549
-
1550
- .tinvwl-content .widefat.products thead th.column-preference,
1551
- .tinvwl-content .widefat.products tbody td.column-preference {
1552
- width: 345px;
1553
- min-width: 345px;
1554
- }
1555
-
1556
- .tinvwl-content .widefat.users thead th.column-preference,
1557
- .tinvwl-content .widefat.users tbody td.column-preference {
1558
- width: 165px;
1559
- min-width: 165px;
1560
- }
1561
-
1562
- .tinvwl-content .widefat tbody .column-name strong {
1563
- font-weight: normal;
1564
- }
1565
-
1566
- .tinvwl-content .widefat tbody .column-name > a {
1567
- display: table;
1568
- }
1569
-
1570
- .tinvwl-content .widefat tbody .column-name .product-image img {
1571
- max-width: 66px;
1572
- }
1573
-
1574
- .tinvwl-content .widefat tbody .column-name .product-image,
1575
- .tinvwl-content .widefat tbody .column-name .product-title {
1576
- display: table-cell;
1577
- vertical-align: middle;
1578
- }
1579
-
1580
- .tinvwl-content .widefat tbody .column-name .product-title {
1581
- padding-left: 15px;
1582
- }
1583
-
1584
- .tinvwl-content .widefat thead th.column-preference,
1585
- .tinvwl-content .widefat tbody td.column-preference {
1586
- padding-right: 20px;
1587
- }
1588
-
1589
- .tinvwl-content .widefat.products tbody td.column-preference > a {
1590
- margin-right: 10px;
1591
- float: left;
1592
- }
1593
-
1594
- .tinvwl-content .widefat.products tbody td.column-preference > a:last-child {
1595
- margin-right: 0;
1596
- }
1597
-
1598
- .tinvwl-content .tablenav .tablenav-pages {
1599
- float: none;
1600
- text-align: center;
1601
- height: auto;
1602
- margin-top: 0;
1603
- }
1604
-
1605
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > a,
1606
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > span {
1607
- display: inline-block;
1608
- vertical-align: middle;
1609
- text-align: center;
1610
- font-size: 14px;
1611
- font-weight: normal;
1612
- padding: 0;
1613
- min-width: 38px;
1614
- height: 38px;
1615
- line-height: 38px;
1616
- -webkit-border-radius: 50%;
1617
- -moz-border-radius: 50%;
1618
- border-radius: 50%;
1619
- border: none;
1620
- background: none;
1621
- color: #3e3e3e;
1622
- }
1623
-
1624
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > span {
1625
- color: rgba(62,62,62,.46);
1626
- }
1627
-
1628
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > span,
1629
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page,
1630
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page {
1631
- background: #f3f1ec;
1632
- }
1633
-
1634
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > .tinvwl-page-number.space {
1635
- background: none;
1636
- color: #3e3e3e;
1637
- }
1638
-
1639
- .tinvwl-content .tablenav .tablenav-pages .pagination-links > a:hover,
1640
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover,
1641
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover {
1642
- background: #3e3e3e;
1643
- color: #fff;
1644
- }
1645
-
1646
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page {
1647
- margin-right: 20px;
1648
- }
1649
-
1650
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page {
1651
- margin-left: 20px;
1652
- }
1653
-
1654
- .tinvwl-content .tablenav .tablenav-pages .tinvwl-chevron {
1655
- display: inline-block;
1656
- vertical-align: middle;
1657
- width: 9px;
1658
- height: 16px;
1659
- }
1660
-
1661
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
1662
- background: url(../img/chevron_icon.png) no-repeat center;
1663
- background-position: 0px -16px;
1664
- }
1665
-
1666
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
1667
- background: url(../img/chevron_icon.png) no-repeat center;
1668
- background-position: 0px 0px;
1669
- }
1670
-
1671
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
1672
- background: url(../img/chevron_icon.png) no-repeat center;
1673
- background-position: -10px -16px;
1674
- }
1675
-
1676
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
1677
- background: url(../img/chevron_icon.png) no-repeat center;
1678
- background-position: -10px 0px;
1679
- }
1680
-
1681
- .tinvwl-content .widefat.products thead th.column-name,
1682
- .tinvwl-content .widefat.products tbody td.column-name {
1683
- /*width: 200px;*/
1684
- width: 30%;
1685
- }
1686
-
1687
- .tinvwl-content .widefat.wishlists thead th.column-title,
1688
- .tinvwl-content .widefat.wishlists tbody td.column-title {
1689
- width: 45%;
1690
- }
1691
-
1692
- .tinvwl-content .widefat.users thead th.column-wishlist,
1693
- .tinvwl-content .widefat.users tbody td.column-wishlist {
1694
- width: 45%;
1695
- }
1696
-
1697
- .tinvwl-content .widefat.users thead th.column-name,
1698
- .tinvwl-content .widefat.users tbody td.column-name {
1699
- text-align: left;
1700
- }
1701
-
1702
- .tinvwl-content .widefat.users thead th.column-quantity,
1703
- .tinvwl-content .widefat.users tbody td.column-quantity {
1704
- width: 100px;
1705
- }
1706
-
1707
- .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-mobile {
1708
- display: none;
1709
- }
1710
-
1711
- @media screen and (max-width: 1440px) {
1712
- .tinvwl-content .widefat.products thead th.column-preference,
1713
- .tinvwl-content .widefat.products tbody td.column-preference {
1714
- width: 204px;
1715
- min-width: 204px;
1716
- }
1717
- .tinvwl-content .widefat.wishlists thead th.column-preference,
1718
- .tinvwl-content .widefat.wishlists tbody td.column-preference {
1719
- width: 98px;
1720
- min-width: 98px;
1721
- }
1722
-
1723
- .tinvwl-content .widefat.users thead th.column-preference,
1724
- .tinvwl-content .widefat.users tbody td.column-preference {
1725
- width: 60px;
1726
- min-width: 60px;
1727
- }
1728
-
1729
- .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn.tinvwl-w-mobile {
1730
- padding: 9px 12px;
1731
- }
1732
-
1733
- .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-mobile {
1734
- display: inline;
1735
- margin: 0;
1736
- }
1737
-
1738
- .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-full {
1739
- display: none;
1740
- }
1741
- }
1742
-
1743
- .tinvwl-content .widefat.products thead th.column-quantity span span {
1744
- float: none;
1745
- }
1746
-
1747
- @media screen and (max-width: 1366px) and (min-width: 783px) {
1748
- .tinvwl-content .widefat.products thead th.column-name,
1749
- .tinvwl-content .widefat.products tbody td.column-name {
1750
- /*width: 110px;*/
1751
- /*min-width: 110px;*/
1752
- }
1753
-
1754
- .tinvwl-content .widefat tbody .column-name .product-image,
1755
- .tinvwl-content .widefat tbody .column-name .product-title {
1756
- display: block;
1757
- }
1758
-
1759
- .tinvwl-content .widefat tbody .column-name .product-title {
1760
- padding-left: 0;
1761
- }
1762
-
1763
- .tinvwl-content .widefat.products thead th.column-preference,
1764
- .tinvwl-content .widefat.products tbody td.column-preference {
1765
- width: 103px;
1766
- min-width: 103px;
1767
- }
1768
-
1769
- .tinvwl-content .widefat.products tbody td.column-preference > a {
1770
- margin-right: 5px;
1771
- }
1772
-
1773
- .tinvwl-content .widefat tbody td.column-preference > a:nth-child(2n) {
1774
- margin-right: 0;
1775
- }
1776
-
1777
- .tinvwl-content .widefat tbody td.column-preference > a:nth-child(n+3) {
1778
- margin-top: 5px;
1779
- }
1780
-
1781
- .tinvwl-content .widefat thead th .tinvwl-full {
1782
- display: none;
1783
- }
1784
- }
1785
-
1786
- @media screen and (max-width: 1200px) and (min-width: 783px) {
1787
- .tinvwl-content th.sortable a span,
1788
- .tinvwl-content th.sorted a span {
1789
- float: none;
1790
- }
1791
-
1792
- .tinvwl-content .widefat th.sortable > a,
1793
- .tinvwl-content .widefat th.sorted > a {
1794
- padding-left: 0;
1795
- padding-right: 0;
1796
- position: static;
1797
- }
1798
-
1799
- .tinvwl-content .widefat th.sortable > a .sorting-indicator,
1800
- .tinvwl-content .widefat th.sorted > a .sorting-indicator {
1801
- top: auto;
1802
- bottom: 12px;
1803
- left: 0;
1804
- right: 0;
1805
- margin-left: auto;
1806
- margin-right: auto;
1807
- }
1808
-
1809
- .tinvwl-content .widefat th.sortable > a .sorting-indicator:before,
1810
- .tinvwl-content .widefat th.sorted > a .sorting-indicator:before {
1811
- left: -5px;
1812
- }
1813
-
1814
- .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1815
- .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1816
- margin-top: 12px;
1817
- }
1818
-
1819
- .tinvwl-content .widefat.wishlists thead th.column-title,
1820
- .tinvwl-content .widefat.wishlists tbody td.column-title {
1821
- width: 38%;
1822
- }
1823
- }
1824
-
1825
- @media screen and (max-width: 782px) {
1826
- .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1827
- .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1828
- margin-top: 0;
1829
- }
1830
-
1831
- .tinvwl-content .widefat.products tbody td.column-preference > a {
1832
- margin-right: 5px;
1833
- float: none;
1834
- }
1835
-
1836
- .tinvwl-content .widefat tbody .column-name .product-image,
1837
- .tinvwl-content .widefat tbody .column-name .product-title {
1838
- vertical-align: top;
1839
- }
1840
-
1841
- .tablenav .tablenav-pages {
1842
- margin-bottom: 15px;
1843
- }
1844
-
1845
- .tinvwl-content .widefat thead th.column-primary {
1846
- width: 100% !important;
1847
- }
1848
-
1849
- .tinvwl-content .widefat thead td.check-column + th.column-primary {
1850
- width: 50% !important;
1851
- }
1852
-
1853
- .tinvwl-content .widefat.users thead td.check-column + th.column-primary {
1854
- width: 100% !important;
1855
- }
1856
- }
1857
-
1858
-
1859
- /* Tables */
1860
-
1861
- .tinvwl-table {
1862
- display: table;
1863
- /*height: 100%;*/
1864
- width: 100%;
1865
- max-width: 100%;
1866
- }
1867
- .tinvwl-table.w-bg {
1868
- background: #fff;
1869
- overflow: hidden;
1870
- -webkit-border-radius: 4px;
1871
- -moz-border-radius: 4px;
1872
- border-radius: 4px;
1873
- }
1874
- .tinvwl-table.w-shadow {
1875
- -webkit-box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1876
- box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1877
- }
1878
- .tinvwl-table.auto-width {
1879
- width: auto;
1880
- }
1881
- .tinvwl-caption {
1882
- display: table-caption;
1883
- }
1884
- .tinvwl-row {
1885
- display: table-row;
1886
- }
1887
- .tinvwl-rows {
1888
- display: table-row-group;
1889
- }
1890
- .tinvwl-cell {
1891
- display: table-cell;
1892
- vertical-align: middle;
1893
- }
1894
- .tinvwl-cell-2 {
1895
- display: table-cell;
1896
- vertical-align: middle;
1897
- float: none;
1898
- }
1899
- .tinvwl-cell-3 {
1900
- display: table-cell;
1901
- vertical-align: top;
1902
- float: none;
1903
- }
1904
-
1905
- .tinvwl-table.w-info > thead > tr > th:first-child,
1906
- .tinvwl-table.w-info > tbody > tr > td:first-child {
1907
- width: 67%;
1908
- }
1909
-
1910
- .tinvwl-table th,
1911
- .tinvwl-table td {
1912
- vertical-align: top;
1913
- }
1914
-
1915
- .tinvwl-table .tinvwl-inner.clearfix h3,
1916
- .tinvwl-table .tinvwl-inner .clearfix h3,
1917
- .tinvwl-table .tinvwl-inner.clearfix h4,
1918
- .tinvwl-table .tinvwl-inner .clearfix h4 {
1919
- float: left;
1920
- }
1921
-
1922
- .tinvwl-table .tinvwl-btn-wrap {
1923
- float: right;
1924
- }
1925
-
1926
- .tinvwl-table.w-info thead > tr > th {
1927
- text-align: left;
1928
- }
1929
-
1930
- .tinvwl-table.w-info thead > tr > th .tinvwl-info-wrap {
1931
- font-weight: normal;
1932
- }
1933
-
1934
- .tinvwl-table > thead > tr > th {
1935
- padding: 0 30px;
1936
- }
1937
-
1938
- .tinvwl-table > thead > tr > th:last-child {
1939
- /*padding: 30px;*/
1940
- }
1941
-
1942
- .tinvwl-table .tinvwl-info {
1943
- vertical-align: top;
1944
- }
1945
-
1946
- .tinvwl-table > thead > tr > .tinvwl-info .tinvwl-info-wrap {
1947
- padding-bottom: 30px;
1948
- }
1949
-
1950
- .tinvwl-table tbody tr .tinvwl-inner h2 {
1951
- font-size: 15px;
1952
- color: #291C09;
1953
- font-weight: 600;
1954
- margin-bottom: 21px;
1955
- }
1956
-
1957
- .tinvwl-table > tbody > tr > .tinvwl-info .tinvwl-info-wrap {
1958
- padding-bottom: 20px;
1959
- }
1960
-
1961
- .tinvwl-table > tbody > tr > td {
1962
- padding: 0 30px;
1963
- }
1964
-
1965
- .tinvwl-table > tbody > tr > td:last-child {
1966
- /*padding: 30px;*/
1967
- }
1968
-
1969
- .tinvwl-table thead > tr .tinvwl-inner {
1970
- padding: 28px 0;
1971
- margin-bottom: 30px;
1972
- border-bottom: 2px solid rgba(219,219,219,.522);
1973
- }
1974
-
1975
- .tinvwl-table thead.tinwl-empty > tr .tinvwl-inner {
1976
- padding: 30px 0 0;
1977
- margin-bottom: 0;
1978
- border-bottom: 0;
1979
- }
1980
-
1981
- .tinvwl-table thead > tr .tinvwl-inner {
1982
- /*padding: 20px 0;*/
1983
- }
1984
-
1985
- .tinvwl-table .tinvwl-header-row label {
1986
- font-size: 22px;
1987
- font-weight: normal;
1988
- line-height: 1.313;
1989
- margin: 0 0 15px;
1990
- }
1991
-
1992
- .tinvwl-table .tinvwl-header-row label {
1993
- padding-top: 3px !important;
1994
- }
1995
-
1996
- .tinvwl-table thead .tinvwl-empty-info,
1997
- .tinvwl-table tbody > .tinvwl-bodies-border {
1998
- display: none;
1999
- }
2000
-
2001
- .tinvwl-table thead .tinvwl-empty-info .tinvwl-inner {
2002
- margin: 0;
2003
- padding-top: 56px;
2004
- }
2005
-
2006
- .tinvwl-bodies-border .tinvwl-info .tinvwl-inner {
2007
- display: none;
2008
- padding-top: 30px;
2009
- margin-top: 10px;
2010
- border-top: 2px solid rgba(219,219,219,.522);
2011
- }
2012
-
2013
- .tinvwl-style-options .tinvwl-table thead th:first-child,
2014
- .tinvwl-style-options .tinvwl-bodies-border td:first-child {
2015
- /*padding-right: 0;*/
2016
- }
2017
-
2018
- .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info,
2019
- .tinvwl-style-options .tinvwl-bodies-border .tinvwl-info {
2020
- padding-left: 0;
2021
- background: none;
2022
- }
2023
-
2024
- .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info {
2025
- display: table-cell;
2026
- }
2027
-
2028
- .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info .tinvwl-inner,
2029
- .tinvwl-style-options tbody + tbody > .tinvwl-bodies-border .tinvwl-info .tinvwl-inner {
2030
- display: block;
2031
- }
2032
-
2033
- @media (min-width: 1200px) {
2034
- .tinvwl-style-options .tinvwl-table .tinvwl-inner .form-horizontal {
2035
- width: 67%;
2036
- }
2037
- }
2038
-
2039
- textarea[name="style_plain-css"] {
2040
- height: 150px;
2041
- }
2042
-
2043
- .tinvwl-table tbody + tbody > .tinvwl-bodies-border {
2044
- display: table-row;
2045
- }
2046
-
2047
- .tinvwl-table tbody + tbody > .tinvwl-bodies-border:first-child > td:first-child > .tinvwl-inner {
2048
- padding-top: 30px;
2049
- margin-top: 10px;
2050
- border-top: 2px solid rgba(219,219,219,.522);
2051
- }
2052
-
2053
- .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner {
2054
- padding-bottom: 15px;
2055
- margin-bottom: 30px;
2056
- border-bottom: 2px solid rgba(219,219,219,.522);
2057
- }
2058
-
2059
- .tinvwl-table .form-group .col-md-4:nth-child(n+4),
2060
- .tinvwl-table .form-group .col-lg-4:nth-child(n+4) {
2061
- padding-top: 27px;
2062
- }
2063
-
2064
- .tinvwl-table tbody:first-of-type > tr:first-child > td:first-child > .tinvwl-inner {
2065
- /*padding-top: 30px;*/
2066
- }
2067
-
2068
- .tinvwl-table tbody:last-of-type > tr:last-child > td:first-child > .tinvwl-inner {
2069
- /*padding-bottom: 20px;*/
2070
- }
2071
-
2072
- .tinvwl-table tfoot .tinvwl-inner {
2073
- padding-top: 20px;
2074
- }
2075
-
2076
- /*.tinvwl-table tbody > tr .tinvwl-inner,
2077
- .tinvwl-table tbody > tr .tinvwl-info-wrap {
2078
- padding: 30px 0;
2079
- }*/
2080
-
2081
- .tinvwl-table tbody > tr + tr .tinvwl-inner {
2082
- /*border-top: 2px solid rgba(219,219,219,.522);*/
2083
- }
2084
-
2085
- .tinvwl-table tr.no-top-border .tinvwl-inner,
2086
- .tinvwl-table tr.no-top-border .tinvwl-info-wrap {
2087
- border-top: 0;
2088
- padding-top: 0;
2089
- }
2090
-
2091
- /*.tinvwl-table tbody:first-of-type > tr:first-child > td > .tinvwl-info-wrap,*/
2092
- .tinvwl-table thead .w-bg-grey .tinvwl-info-wrap {
2093
- padding-top: 30px;
2094
- }
2095
-
2096
- .tiwl-notifications-style-logo img {
2097
- height: 42px;
2098
- }
2099
-
2100
- @media (min-width: 1200px) {
2101
- .tinvwl-table tr.tinvwl-full-width .control-label label {
2102
- margin-bottom: 10px;
2103
- }
2104
- .tinvwl-table tr.tinvwl-full-width [class^="col-lg-"],
2105
- .tinvwl-table tr.tinvwl-full-width [class^="col-md-"] {
2106
- width: 100%;
2107
- }
2108
-
2109
- .tinvwl-table tr.tinvwl-full-width textarea {
2110
- height: 250px;
2111
- padding: 15px;
2112
- }
2113
-
2114
- .tiwl-notifications-style-logo img {
2115
- float: right;
2116
- }
2117
- }
2118
-
2119
- @media (max-width: 1199px) {
2120
- .form-horizontal .control-label .tinvwl-empty {
2121
- display: none;
2122
- }
2123
-
2124
- .tinvwl-style-options .tinvwl-empty-info,
2125
- .tinvwl-style-options .tinvwl-info {
2126
- display: none !important;
2127
- }
2128
-
2129
- .tinvwl-style-options .tinvwl-table thead th:first-child,
2130
- .tinvwl-style-options .tinvwl-bodies-border td:first-child {
2131
- padding-right: 30px !important;
2132
- }
2133
-
2134
- .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner {
2135
- padding-bottom: 0;
2136
- }
2137
-
2138
- .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner .form-group {
2139
- margin-bottom: 20px;
2140
- }
2141
- }
2142
-
2143
- .tinvwl-info .tinvwl-info-desc a {
2144
- text-decoration: underline;
2145
- color: #ff5739;
2146
- }
2147
-
2148
- .tinvwl-info .tinvwl-info-desc a:hover,
2149
- .tinvwl-info .tinvwl-info-desc a:active,
2150
- .tinvwl-info .tinvwl-info-desc a:focus {
2151
- color: #000;
2152
- }
2153
-
2154
- .tinvwl-info-wrap.tinvwl-in-section {
2155
- background: #fbfaf9;
2156
- color: #4f4639;
2157
- }
2158
-
2159
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign {
2160
- width: 42px;
2161
- vertical-align: top;
2162
- padding-top: 1px;
2163
- padding-right: 20px;
2164
- }
2165
-
2166
- .tinvwl-info-wrap .tinvwl-info-sign span,
2167
- .tinvwl-info-wrap .tinvwl-info-sign .tinvwl-help {
2168
- display: inline-block;
2169
- text-align: center;
2170
- width: 22px;
2171
- height: 22px;
2172
- line-height: 22px;
2173
- -webkit-border-radius: 50%;
2174
- -moz-border-radius: 50%;
2175
- border-radius: 50%;
2176
- background: #e1dbce;
2177
- }
2178
-
2179
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign span,
2180
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign .tinvwl-help {
2181
- display: block;
2182
- }
2183
-
2184
- .tinvwl-info-wrap i {
2185
- font-size: 14px;
2186
- color: #fbfaf9;
2187
- }
2188
-
2189
- .tinvwl-panel:not(.only-button) .tinvwl-table .col-lg-6 > .tinvwl-btn {
2190
- width: auto;
2191
- }
2192
-
2193
- .tinvwl-btns-group {
2194
- margin-bottom: 23px;
2195
- margin-top: -15px;
2196
- margin-right: -15px;
2197
- }
2198
-
2199
- .tiwl-style-custom-allow .tinvwl-inner textarea {
2200
- margin-bottom: 23px;
2201
- }
2202
-
2203
- .tinvwl-btns-group .tinvwl-btn {
2204
- margin-top: 15px;
2205
- margin-right: 15px;
2206
- }
2207
-
2208
- .tinvwl-btns-group .tinvwl-btn {
2209
- float: left;
2210
- }
2211
-
2212
- @media (min-width: 1200px) {
2213
- .tinvwl-table .tinvwl-form-onoff,
2214
- .tinvwl-panel:not(.only-button) .tinvwl-table .col-lg-6 > .tinvwl-btn {
2215
- float: right;
2216
- }
2217
-
2218
- .tinvwl-btns-group .tinvwl-btn {
2219
- float: right;
2220
- }
2221
- }
2222
-
2223
- .tinvwl-table .tinvwl-info .tinvwl-info-wrap.tinvwl-in-section .tinvwl-help {
2224
- display: none;
2225
- }
2226
-
2227
- .tinvwl-info-wrap.tinvwl-in-table {
2228
- display: inline-block;
2229
- vertical-align: middle;
2230
- display: block;
2231
- margin-bottom: 5px;
2232
- }
2233
-
2234
- .tinvwl-info-wrap.tinvwl-in-table .tinvwl-help {
2235
- cursor: pointer;
2236
- }
2237
-
2238
- .tinvwl-content .widefat th.tinvwl-has-info {
2239
- /*word-break: break-all;*/
2240
- }
2241
-
2242
- .tinvwl-content .widefat th.tinvwl-has-info .tinvwl-col-name {
2243
- margin-right: 5px;
2244
- }
2245
-
2246
- .tinvwl-info-wrap.tinvwl-in-table .tinvwl-info-desc {
2247
- display: none;
2248
- }
2249
-
2250
- @media (max-width: 1200px) {
2251
- .tinvwl-table .tinvwl-info {
2252
- padding-left: 15px;
2253
- padding-right: 15px;
2254
- /*vertical-align: middle;*/
2255
- }
2256
-
2257
- .tinvwl-table.w-info > thead > tr > th:first-child,
2258
- .tinvwl-table.w-info > tbody > tr > td:first-child {
2259
- width: 90%;
2260
- }
2261
-
2262
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign {
2263
- width: auto;
2264
- padding-right: 0;
2265
- }
2266
-
2267
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign span {
2268
- display: none;
2269
- }
2270
-
2271
- .tinvwl-table .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign .tinvwl-help {
2272
- display: block;
2273
- margin: 0 auto;
2274
- }
2275
-
2276
- .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-desc {
2277
- display: none;
2278
- }
2279
- }
2280
-
2281
- @media (max-width: 782px) {
2282
- .tinvwl-content .widefat th.tinvwl-has-info.sortable,
2283
- .tinvwl-content .widefat th.tinvwl-has-info.sorted {
2284
- padding-top: 0;
2285
- }
2286
-
2287
- .widefat tfoot td input[type=checkbox],
2288
- .widefat th input[type=checkbox],
2289
- .widefat thead td input[type=checkbox] {
2290
- margin-bottom: 0;
2291
- }
2292
-
2293
- .tinvwl-content .widefat th.sortable > a,
2294
- .tinvwl-content .widefat th.sorted > a,
2295
- .tinvwl-content .widefat th.sortable.tinvwl-has-info > a,
2296
- .tinvwl-content .widefat th.sorted.tinvwl-has-info > a {
2297
- padding-top: 18px;
2298
- padding-bottom: 18px;
2299
- }
2300
-
2301
- .tinvwl-content .widefat thead td.check-column,
2302
- .tinvwl-content .widefat tbody th.check-column {
2303
- padding-top: 14px;
2304
- padding-bottom: 15px;
2305
- padding-left: 20px;
2306
- width: 45px;
2307
- }
2308
-
2309
- .tinvwl-content .widefat tbody th.check-column {
2310
- padding-top: 11px;
2311
- padding-bottom: 11px;
2312
- vertical-align: top;
2313
- }
2314
-
2315
- .tinvwl-content .widefat.wishlists thead td.check-column,
2316
- .tinvwl-content .widefat.wishlists tbody th.check-column {
2317
- width: 23px;
2318
- }
2319
-
2320
- .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > a,
2321
- .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > a,
2322
- .tinvwl-content .widefat thead td.check-column + th,
2323
- .tinvwl-content .widefat tbody th.check-column + td {
2324
- padding-left: 10px;
2325
- }
2326
-
2327
- .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > .tinvwl-info-wrap.tinvwl-in-table,
2328
- .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > .tinvwl-info-wrap.tinvwl-in-table {
2329
- padding-left: 13px;
2330
- display: inline-block;
2331
- margin-top: 5px;
2332
- margin-bottom: 0;
2333
- }
2334
-
2335
- .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
2336
- text-align: left;
2337
- }
2338
-
2339
- .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column) {
2340
- text-align: right;
2341
- padding-right: 30px;
2342
- }
2343
-
2344
- .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
2345
- left: 28px;
2346
- }
2347
-
2348
- .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.check-column + td:not(.column-primary)::before {
2349
- left: 13px;
2350
- }
2351
-
2352
- .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column):last-child {
2353
- padding-bottom: 13px;
2354
- }
2355
- }
2356
-
2357
- /* Popover */
2358
-
2359
- .popover {
2360
- position: absolute;
2361
- top: 0;
2362
- left: 0;
2363
- z-index: 9999;
2364
- display: none;
2365
- max-width: 279px;
2366
- padding: 1px;
2367
- text-align: center;
2368
- white-space: normal;
2369
- background-color: #fff;
2370
- -webkit-background-clip: padding-box;
2371
- background-clip: padding-box;
2372
- border-radius: 6px;
2373
- -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.22);
2374
- box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.22);
2375
- }
2376
- .popover.top {
2377
- margin-top: -10px;
2378
- }
2379
- .popover.right {
2380
- margin-left: 10px;
2381
- }
2382
- .popover.bottom {
2383
- margin-top: 10px;
2384
- }
2385
- .popover.left {
2386
- margin-left: -10px;
2387
- }
2388
- .popover-title {
2389
- padding: 30px 30px 0;
2390
- margin: 0;
2391
- font-family: 'Open Sans', Arial, sans-serif;
2392
- font-size: 14px;
2393
- font-weight: 600;
2394
- line-height: 1.714;
2395
- text-transform: uppercase;
2396
- letter-spacing: -.35px;
2397
- }
2398
- .popover-content {
2399
- padding: 25px 30px 30px;
2400
- color: #5D5D5D;
2401
- font-family: Arial, sans-serif;
2402
- font-size: 14px;
2403
- line-height: 1.429;
2404
- }
2405
- .popover > .arrow,
2406
- .popover > .arrow:after {
2407
- position: absolute;
2408
- display: block;
2409
- width: 0;
2410
- height: 0;
2411
- border-color: transparent;
2412
- border-style: solid;
2413
- }
2414
- .popover > .arrow {
2415
- border-width: 11px;
2416
- margin-left: 0;
2417
- overflow: visible;
2418
- }
2419
- .popover > .arrow:after {
2420
- content: none;
2421
- z-index: 9999;
2422
- background: none;
2423
- -webkit-box-shadow: none;
2424
- box-shadow: none;
2425
- position: absolute;
2426
- left: auto;
2427
- top: auto;
2428
- width: auto;
2429
- height: auto;
2430
- -webkit-transform: none;
2431
- -ms-transform: none;
2432
- transform: none;
2433
- }
2434
- .popover > .arrow:after {
2435
- content: "";
2436
- border-width: 10px;
2437
- }
2438
- .popover.top > .arrow {
2439
- bottom: -11px;
2440
- left: 50%;
2441
- margin-left: -11px;
2442
- border-bottom-width: 0;
2443
- }
2444
- .popover.top > .arrow:after {
2445
- bottom: 1px;
2446
- margin-left: -10px;
2447
- content: " ";
2448
- border-top-color: #fff;
2449
- border-bottom-width: 0;
2450
- }
2451
- .popover.right > .arrow {
2452
- top: 50%;
2453
- left: -11px;
2454
- margin-top: -11px;
2455
- border-left-width: 0;
2456
- }
2457
- .popover.right > .arrow:after {
2458
- bottom: -10px;
2459
- left: 1px;
2460
- content: " ";
2461
- border-right-color: #fff;
2462
- border-left-width: 0;
2463
- }
2464
- .popover.bottom > .arrow {
2465
- top: -11px;
2466
- left: 50%;
2467
- margin-left: -11px;
2468
- border-top-width: 0;
2469
- }
2470
- .popover.bottom > .arrow:after {
2471
- top: 1px;
2472
- margin-left: -10px;
2473
- content: " ";
2474
- border-top-width: 0;
2475
- border-bottom-color: #fff;
2476
- }
2477
- .popover.left > .arrow {
2478
- top: 50%;
2479
- left: auto;
2480
- right: -11px;
2481
- margin-top: -11px;
2482
- border-right-width: 0;
2483
- }
2484
- .popover.left > .arrow:after {
2485
- left: auto;
2486
- right: 1px;
2487
- bottom: -10px;
2488
- content: " ";
2489
- border-right-width: 0;
2490
- border-left-color: #fff;
2491
- }
2492
-
2493
-
2494
- /* Image w/description */
2495
-
2496
- .tinvwl-img-w-desc i{
2497
-
2498
- margin-right: 20px;
2499
- }
2500
-
2501
- .tinvwl-img-w-desc h5 {
2502
- font-weight: 600;
2503
- text-transform: uppercase;
2504
- }
2505
-
2506
- .tinvwl-img-w-desc .tinvwl-desc {
2507
- color: #4f4639;
2508
- }
2509
-
2510
- .tinvwl-img-w-desc h5 + .tinvwl-desc {
2511
- margin-top: 2px;
2512
- }
2513
-
2514
-
2515
- /* Premium Features */
2516
-
2517
- .tinvwl-premium-feat h2 {
2518
- font-size: 48px;
2519
- text-transform: uppercase;
2520
- letter-spacing: -.025em;
2521
- line-height: 1;
2522
- color: #3e3e3e;
2523
- }
2524
-
2525
- .tinvwl-premium-feat h3 {
2526
- font-size: 16px;
2527
- font-weight: 600;
2528
- text-transform: uppercase;
2529
- letter-spacing: -.025em;
2530
- color: #50504f;
2531
- }
2532
-
2533
- .tinvwl-premium-feat .tinvwl-feat-col-inner {
2534
- padding: 40px;
2535
- }
2536
-
2537
- .tinvwl-premium-feat .tinvwl-pic-col .tinvwl-feat-col-inner {
2538
- text-align: center;
2539
- padding-left: 22px;
2540
- padding-right: 22px;
2541
- }
2542
-
2543
- .tinvwl-premium-feat .tinvwl-pic-col img {
2544
- display: block;
2545
- margin: 0 auto;
2546
- }
2547
-
2548
- .tinvwl-premium-feat .tinvwl-pic-col .tinvwl-btn {
2549
- margin-top: -35px;
2550
- }
2551
-
2552
- .tinvwl-premium-feat .tinvwl-features {
2553
- margin-top: 28px;
2554
- }
2555
-
2556
- .tinvwl-premium-feat .tinvwl-features li i {
2557
- color: #96b100;
2558
- margin-right: 15px;
2559
- }
2560
-
2561
- .tinvwl-premium-feat .tinvwl-features li span {
2562
- text-decoration: underline;
2563
- }
2564
-
2565
- .tinvwl-premium-feat .tinvwl-features li + li {
2566
- margin-top: 14px;
2567
- }
2568
-
2569
- .tinvwl-premium-feat .tinvwl-img-w-desc + .tinvwl-img-w-desc {
2570
- margin-top: 15px;
2571
- }
2572
-
2573
- .tinvwl-premium-feat .tinvwl-sup-col .tinvwl-feat-col-inner > .tinvwl-desc {
2574
- line-height: 1.71428571;
2575
- text-align: center;
2576
- margin-top: 23px;
2577
- }
2578
-
2579
- .tinvwl-premium-feat .tinvwl-sup-col .tinvwl-feat-col-inner > .tinvwl-desc a {
2580
- display: inline-block;
2581
- text-decoration: underline;
2582
- margin-top: 26px;
2583
- color: #000;
2584
- }
2585
-
2586
-
2587
- /* Footer */
2588
-
2589
- #wpfooter {
2590
- padding: 10px 40px;
2591
- }
2592
-
2593
- #wpfooter p {
2594
- font-family: "Open Sans", "Helvetica Neue", sans-serif;
2595
- font-size: 14px;
2596
- line-height: 1.85714286;
2597
- color: #4b4b4b;
2598
- }
2599
-
2600
- #wpfooter .fa-heart {
2601
- margin: 0 3px;
2602
- }
2603
-
2604
- #wpfooter .fa-star {
2605
- font-size: 12px;
2606
- margin: 0 1px;
2607
- }
2608
-
2609
- #wpfooter span .fa-star:first-of-type {
2610
- margin-left: 6px;
2611
- }
2612
-
2613
- #wpfooter span .fa-star:last-of-type {
2614
- margin-left: 3px;
2615
- }
2616
-
2617
- #wpfooter i {
2618
- color: #ff5739;
2619
- }
2620
-
2621
- #wpfooter a {
2622
- text-decoration: underline;
2623
- color: #ff5739;
2624
- }
2625
-
2626
- #wpfooter a:hover,
2627
- #wpfooter a:active,
2628
- #wpfooter a:focus {
2629
- color: #000;
2630
- }
2631
-
2632
-
2633
- /* Color Picker */
2634
-
2635
- .tinvwl-color-picker {
2636
- position: relative;
2637
- }
2638
-
2639
- .tinvwl-color-picker .iris-picker {
2640
- position: absolute;
2641
- z-index: 9999;
2642
- }
2643
-
2644
- .tinvwl-color-picker input[type=text] {
2645
- color: #fff;
2646
- border: 4px solid #fff;
2647
- box-shadow: 0px 0px 0px 1px rgba(0,0,0,.14);
2648
- }
2649
-
2650
- .tinvwl-color-picker .tinvwl-eyedropper {
2651
- cursor: pointer;
2652
- position: relative;
2653
- display: inline-block;
2654
- vertical-align: top;
2655
- margin-left: 4px;
2656
- width: 42px;
2657
- height: 42px;
2658
- background: #fff url(../img/color_icon.png) no-repeat center;
2659
- border: 1px solid rgba(0,0,0,.14);
2660
- border-radius: 2px;
2661
- box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
2662
- }
2663
-
2664
- .tinvwl-color-picker .tinvwl-eyedropper a {
2665
- color: #6b625a;
2666
- }
2667
-
2668
- .tinvwl-color-picker .tinvwl-eyedropper.tinvwl-active {
2669
- }
2670
-
2671
- .tinvwl-color-picker .tinvwl-eyedropper i {
2672
- display: inline-block;
2673
- position: absolute;
2674
- top: 15px;
2675
- left: 14px;
2676
- font-size: 12px;
2677
- }
2678
-
2679
- .tinvwl-color-picker + .iris-picker .iris-square-value {
2680
- width: 0;
2681
- height: 0;
2682
- }
2683
-
2684
-
2685
- /* Modal */
2686
-
2687
- .tinvwl-overlay {
2688
- position: fixed;
2689
- top: 0;
2690
- left: 0;
2691
- width: 100%;
2692
- height: 100%;
2693
- visibility: hidden;
2694
- opacity: 0;
2695
-
2696
- -webkit-transition: opacity .3s ease, visibility .3s ease;
2697
- -moz-transition: opacity .3s ease, visibility .3s ease;
2698
- -o-transition: opacity .3s ease, visibility .3s ease;
2699
- transition: opacity .3s ease, visibility .3s ease;
2700
-
2701
- background: #191919;
2702
- }
2703
-
2704
- .tinvwl-modal.tinvwl-modal-open .tinvwl-overlay {
2705
- visibility: visible;
2706
- opacity: .5;
2707
- }
2708
-
2709
- .admin-bar .tinvwl-content .tinvwl-modal {
2710
- padding-top: 32px !important;
2711
- }
2712
-
2713
- .tinvwl-content .tinvwl-modal .tinvwl-modal-inner {
2714
- position: relative;
2715
- margin: 0 auto;
2716
- background: #fff;
2717
- -webkit-border-radius: 4px;
2718
- -moz-border-radius: 4px;
2719
- border-radius: 4px;
2720
- }
2721
-
2722
- .tinvwl-content .tinvwl-modal {
2723
- overflow-y: auto;
2724
- overflow-x: hidden;
2725
- top: 0;
2726
- left: 0;
2727
- width: 0;
2728
- height: 0;
2729
- z-index: 9999;
2730
- position: fixed;
2731
- outline: none !important;
2732
- -webkit-backface-visibility: hidden;
2733
- visibility: hidden;
2734
- opacity: 0;
2735
- text-align: left;
2736
-
2737
- -webkit-transition: opacity .3s ease, visibility .3s ease;
2738
- -moz-transition: opacity .3s ease, visibility .3s ease;
2739
- -o-transition: opacity .3s ease, visibility .3s ease;
2740
- transition: opacity .3s ease, visibility .3s ease;
2741
- }
2742
-
2743
- .tinvwl-content .tinvwl-modal.tinvwl-modal-open {
2744
- visibility: visible;
2745
- opacity: 1;
2746
- width: 100%;
2747
- height: 100%;
2748
- }
2749
-
2750
- @media screen and (max-width: 782px) {
2751
- .admin-bar .tinvwl-content .tinvwl-modal {
2752
- padding-top: 46px !important;
2753
- }
2754
- }
2755
-
2756
- @media screen and (max-width: 600px) {
2757
- .admin-bar .tinvwl-content .tinvwl-modal {
2758
- padding-top: 0 !important;
2759
- }
2760
- }
2761
-
2762
- .tinvwl-modal .tinvwl-table {
2763
- height: 100%;
2764
- }
2765
-
2766
- .tinvwl-content .tinvwl-modal .tinvwl-modal-inner {
2767
- max-width: 415px;
2768
- padding: 40px 45px;
2769
- }
2770
-
2771
- .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails {
2772
- text-align: center;
2773
- }
2774
-
2775
- .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails p {
2776
- margin: 0 0 26px;
2777
- }
2778
-
2779
- .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails .tinvwl-btn.large {
2780
- padding: 14px 33px;
2781
- }
2782
-
2783
- .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails .tinvwl-btn + .tinvwl-btn {
2784
- margin-left: 6px;
2785
- }
2786
-
2787
-
2788
- /* Quick Buttons */
2789
-
2790
- .tinvwl-quick-btns {
2791
- position: fixed;
2792
- top: 25%;
2793
- left: 100%;
2794
- z-index: 9999;
2795
- }
2796
-
2797
- .tinvwl-quick-btns button {
2798
- display: block;
2799
- width: 117px;
2800
- font-size: 14px;
2801
- font-family: "Open Sans", Arial, sans-serif;
2802
- font-weight: 600;
2803
- padding: 0 35px 0 0;
2804
- -webkit-border-radius: 2px;
2805
- -moz-border-radius: 2px;
2806
- border-radius: 2px;
2807
- border: none;
2808
- text-decoration: none;
2809
- background: #96b100;
2810
- color: #ffffff;
2811
-
2812
- -webkit-transform: translateX(-50px);
2813
- -moz-transform: translateX(-50px);
2814
- -o-transform: translateX(-50px);
2815
- transform: translateX(-50px);
2816
-
2817
- -webkit-transition: transform .3s ease;
2818
- -moz-transition: transform .3s ease;
2819
- -o-transition: transform .3s ease;
2820
- transition: transform .3s ease;
2821
- }
2822
-
2823
- .tinvwl-panel.only-button .tinvwl-quick-btns .form-control {
2824
- display: block;
2825
- width: 119px;
2826
- }
2827
-
2828
- .tinvwl-quick-btns button:hover {
2829
- -webkit-transform: translateX(-100%);
2830
- -moz-transform: translateX(-100%);
2831
- -o-transform: translateX(-100%);
2832
- transform: translateX(-100%);
2833
- }
2834
-
2835
- .tinvwl-quick-btns button + button {
2836
- margin-top: 4px;
2837
- }
2838
-
2839
- .tinvwl-quick-btns button span {
2840
- display: inline-block;
2841
- width: 50px;
2842
- padding: 15px 0;
2843
- text-align: center;
2844
- }
2845
-
2846
-
2847
- /* Preview Select */
2848
-
2849
- @media (min-width: 1200px) {
2850
- .tinvwl-empty-select + .input-group-btn {
2851
- text-align: right;
2852
- }
2853
- }
2854
-
2855
- .tinvwl-empty-select + .input-group-btn .tinvwl-btn {
2856
- margin-left: 0;
2857
- }
2858
-
2859
-
2860
- /* Bootstrap */
2861
-
2862
- .container {
2863
- /*padding-right: 15px;
2864
- padding-left: 15px;*/
2865
- margin-right: auto;
2866
- margin-left: auto;
2867
- }
2868
- @media (min-width: 768px) {
2869
- .container {
2870
- width: 750px;
2871
- }
2872
- }
2873
- @media (min-width: 992px) {
2874
- .container {
2875
- width: 970px;
2876
- }
2877
- }
2878
- @media (min-width: 1200px) {
2879
- .container {
2880
- width: 1170px;
2881
- }
2882
- }
2883
- .container-fluid {
2884
- /*padding-right: 15px;
2885
- padding-left: 15px;*/
2886
- margin-right: auto;
2887
- margin-left: auto;
2888
- }
2889
- .row {
2890
- margin-right: -15px;
2891
- margin-left: -15px;
2892
- }
2893
- .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
2894
- position: relative;
2895
- min-height: 1px;
2896
- padding-right: 15px;
2897
- padding-left: 15px;
2898
- }
2899
-
2900
- .tinvwl-table .form-group .row {
2901
- /*margin-left: -5px;*/
2902
- /*margin-right: -5px;*/
2903
- }
2904
-
2905
- .tinvwl-table .form-group [class^="col-"] {
2906
- /*padding-right: 5px;*/
2907
- /*padding-left: 5px;*/
2908
- }
2909
-
2910
- .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
2911
- float: left;
2912
- }
2913
- .col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}
2914
- @media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}
2915
- @media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}
2916
- @media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}
2917
-
2918
- @media (max-width: 1199px) {
2919
- .tinvwl-table .row > [class^="col-md-"] + [class^="col-md-"],
2920
- .tinvwl-table .row > [class^="col-lg-"] + [class^="col-lg-"] {
2921
- padding-top: 30px;
2922
- }
2923
- .tinvwl-table .form-group > [class^="col-md-"] + [class^="col-md-"],
2924
- .tinvwl-table .form-group > [class^="col-lg-"] + [class^="col-lg-"] {
2925
- padding-top: 30px;
2926
- }
2927
- }
2928
-
2929
- .fade {
2930
- opacity: 0;
2931
- -webkit-transition: opacity .15s linear;
2932
- -o-transition: opacity .15s linear;
2933
- transition: opacity .15s linear;
2934
- }
2935
- .fade.in {
2936
- opacity: 1;
2937
- }
2938
-
2939
- .form-horizontal .form-group {
2940
- margin-right: -15px;
2941
- margin-left: -15px;
2942
- }
2943
-
2944
- .form-group {
2945
- margin-bottom: 23px;
2946
- }
2947
-
2948
- .form-horizontal:last-of-type .form-group {
2949
- /*margin-bottom: 0;*/
2950
- }
2951
-
2952
- .tinvwl-inner .form-group + .form-group > label {
2953
- /*margin-top: 7px;*/
2954
- }
2955
-
2956
- .form-control {
2957
- display: block;
2958
- width: 100%;
2959
- }
2960
-
2961
- label.one-line {
2962
- display: inline-block;
2963
- margin-bottom: 0;
2964
- margin-right: 10px;
2965
- }
2966
-
2967
- .control-label label {
2968
- display: block;
2969
- margin-bottom: 10px;
2970
- }
2971
-
2972
- .form-horizontal .control-label label {
2973
- padding-top: 9px;
2974
- margin-bottom: 0;
2975
- }
2976
-
2977
- @media (min-width: 1200px) {
2978
- .tinvwl-table .tinvwl-header-row label {
2979
- margin-bottom: 0;
2980
- }
2981
-
2982
- .tinvwl-table .tinvwl-header-row .form-group {
2983
- margin-top: -7px;
2984
- margin-bottom: 13px;
2985
- }
2986
- }
2987
-
2988
- @media (max-width: 1199px) {
2989
- .form-horizontal .control-label label {
2990
- margin-bottom: 10px;
2991
- }
2992
-
2993
- .tinvwl-table .tinvwl-header-row label {
2994
- padding-top: 3px;
2995
- }
2996
- }
2997
-
2998
- .input-group-btn {
2999
- margin-top: 13px;
3000
- }
3001
-
3002
- .input-group {
3003
- position: relative;
3004
- display: table;
3005
- border-collapse: separate;
3006
- }
3007
-
3008
- .input-group-addon,
3009
- .input-group-btn {
3010
- width: 1%;
3011
- white-space: nowrap;
3012
- vertical-align: middle;
3013
- }
3014
-
3015
- .input-group-btn {
3016
- margin-top: 0;
3017
- position: relative;
3018
- white-space: nowrap;
3019
- }
3020
-
3021
- .input-group-btn .tinvwl-btn {
3022
- margin-left: 10px;
3023
- }
3024
-
3025
- .input-group-btn > .btn {
3026
- position: relative;
3027
- }
3028
-
3029
- .input-group .form-control,
3030
- .input-group-addon,
3031
- .input-group-btn {
3032
- display: table-cell;
3033
- }
3034
-
3035
- .input-group .form-control {
3036
- position: relative;
3037
- z-index: 2;
3038
- float: left;
3039
- width: 100%;
3040
- margin-bottom: 0;
3041
- }
3042
-
3043
- @media only screen and (max-width: 1199px) {
3044
- .input-group:not(.tinvwl-no-full) {
3045
- display: block;
3046
- }
3047
-
3048
- .input-group:not(.tinvwl-no-full) .form-control {
3049
- float: none;
3050
- }
3051
-
3052
- .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn {
3053
- padding-top: 10px;
3054
- padding-left: 0;
3055
- }
3056
-
3057
- .input-group:not(.tinvwl-no-full) .input-group-addon,
3058
- .input-group:not(.tinvwl-no-full) .input-group-btn,
3059
- .input-group:not(.tinvwl-no-full) .form-control {
3060
- display: block;
3061
- }
3062
-
3063
- .input-group:not(.tinvwl-no-full) .input-group-addon,
3064
- .input-group:not(.tinvwl-no-full) .input-group-btn,
3065
- .input-group:not(.tinvwl-no-full) .input-group-addon > input,
3066
- .input-group:not(.tinvwl-no-full) .input-group-addon > button,
3067
- .input-group:not(.tinvwl-no-full) .input-group-btn > input,
3068
- .input-group:not(.tinvwl-no-full) .input-group-btn > button {
3069
- margin-left: 0;
3070
- }
3071
- }
3072
-
3073
- .text-right {
3074
- text-align: right;
3075
- }
3076
-
3077
- @media (max-width: 1199px) {
3078
- .text-right {
3079
- text-align: left;
3080
- }
3081
- }
3082
-
3083
- @media (min-width: 768px) {
3084
- .form-inline .form-group {
3085
- display: inline-block;
3086
- margin-bottom: 0;
3087
- vertical-align: middle;
3088
- }
3089
- .form-inline .form-control {
3090
- display: inline-block;
3091
- width: auto;
3092
- vertical-align: middle;
3093
- }
3094
- .form-inline .form-control-static {
3095
- display: inline-block;
3096
- }
3097
- .form-inline .input-group {
3098
- display: inline-table;
3099
- vertical-align: middle;
3100
- }
3101
- .form-inline .input-group .input-group-addon,
3102
- .form-inline .input-group .input-group-btn,
3103
- .form-inline .input-group .form-control {
3104
- width: auto;
3105
- }
3106
- .form-inline .input-group > .form-control {
3107
- width: 100%;
3108
- }
3109
- .form-inline .control-label label {
3110
- margin-bottom: 0;
3111
- vertical-align: middle;
3112
- }
3113
- .form-inline .radio,
3114
- .form-inline .checkbox {
3115
- display: inline-block;
3116
- margin-top: 0;
3117
- margin-bottom: 0;
3118
- vertical-align: middle;
3119
- }
3120
- .form-inline .radio label,
3121
- .form-inline .checkbox label {
3122
- padding-left: 0;
3123
- }
3124
- .form-inline .radio input[type="radio"],
3125
- .form-inline .checkbox input[type="checkbox"] {
3126
- position: relative;
3127
- margin-left: 0;
3128
- }
3129
- .form-inline .has-feedback .form-control-feedback {
3130
- top: 0;
3131
- }
3132
- }
3133
-
3134
- /*************************IMAGES *******************************/
3135
-
3136
- .logo_heart{
3137
- background: url(../img/logo_heart.png) no-repeat center;
3138
- display: inline-block;
3139
- background-size: 54px 54px;
3140
- width: 54px;
3141
- height: 54px;
3142
- }
3143
-
3144
- .admin-rescue{
3145
- background: url(../img/admin-rescue.png) no-repeat center;
3146
- display: inline-block;
3147
- background-size: 61px 60px;
3148
- width: 61px;
3149
- height: 60px;
3150
- }
3151
-
3152
- .admin-update{
3153
- background: url(../img/admin-update.png) no-repeat center;
3154
- display: inline-block;
3155
- background-size: 61px 60px;
3156
- width: 61px;
3157
- height: 60px;
3158
- }
3159
-
3160
- .wizard_logo{
3161
- background: url(../img/wizard_logo.png) no-repeat center;
3162
- background-size: 54px 54px;
3163
- width: 54px;
3164
- height: 54px;
3165
- display: block;
3166
- margin: 10px auto;
3167
- }
3168
- .wizard_setup{
3169
- background: url(../img/wizard_setup.png) no-repeat center;
3170
- display: inline-block;
3171
- background-size: 143px 144px;
3172
- width: 143px;
3173
- height: 144px;
3174
- }
3175
-
3176
- .premium_adv{
3177
- background: url(../img/premium_adv.png) no-repeat center;
3178
- display: block;
3179
- margin: 0 auto;
3180
- background-size: 365px 216px;
3181
- width: 365px;
3182
- height: 216px;
3183
- }
3184
-
3185
- /************************** RETINA *************************/
3186
- .tinvwl-content select {
3187
- background-size: 13px 8px;
3188
-
3189
- }
3190
- .tinvwl-select + .tinvwl-caret span {
3191
- background-size: 13px 18px;
3192
-
3193
- }
3194
-
3195
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
3196
- background-size: 20px 30px;
3197
-
3198
- }
3199
-
3200
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
3201
- background-size: 20px 30px;
3202
-
3203
- }
3204
-
3205
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
3206
- background-size: 20px 30px;
3207
-
3208
- }
3209
-
3210
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
3211
- background-size: 20px 30px;
3212
-
3213
- }
3214
-
3215
- .tinvwl-color-picker .tinvwl-eyedropper {
3216
- background-size: 28px 29px;
3217
-
3218
- }
3219
-
3220
- @media only screen and (-webkit-min-device-pixel-ratio: 1.5), not all, not all, not all {
3221
- .tinvwl-content select {
3222
- background-image: url(../img/select_caret@2x.png);
3223
-
3224
- }
3225
- .tinvwl-select + .tinvwl-caret span {
3226
- background-image: url(../img/chevron_down@2x.png) no-repeat center;
3227
-
3228
- }
3229
-
3230
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
3231
- background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3232
-
3233
- }
3234
-
3235
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
3236
- background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3237
-
3238
- }
3239
-
3240
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
3241
- background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3242
-
3243
- }
3244
-
3245
- .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
3246
- background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3247
-
3248
- }
3249
-
3250
- .tinvwl-color-picker .tinvwl-eyedropper {
3251
- background-image: #fff url(../img/color_icon@2x.png) no-repeat center;
3252
-
3253
- }
3254
- .logo_heart{
3255
- background-image: url(../img/logo_heart@2x.png) no-repeat center;
3256
- }
3257
-
3258
- .admin-rescue{
3259
- background-image: url(../img/admin-rescue@2x.png) no-repeat center;
3260
- }
3261
-
3262
- .admin-update{
3263
- background-image: url(../img/admin-update@2x.png) no-repeat center;
3264
- }
3265
-
3266
- .wizard_logo{
3267
- background-image: url(../img/wizard_logo@2x.png) no-repeat center;
3268
- }
3269
- .wizard_setup{
3270
- background-image: url(../img/wizard_setup@2x.png) no-repeat center;
3271
- }
3272
- }
3273
-
3274
- /******************STYLE HEADINGS*********************/
3275
- #style_options .tinvwl-table tbody tr .tinvwl-inner h2{
3276
- font-size: 18px;
3277
- color: #291C09;
3278
- text-transform: capitalize;
3279
- font-weight: 600;
3280
- margin-bottom: 21px;
3281
- padding: 14px 0;
3282
  }
1
+ /* Misc */
2
+
3
+ * {
4
+ -webkit-box-sizing: border-box;
5
+ -moz-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+ }
8
+ *:before,
9
+ *:after {
10
+ -webkit-box-sizing: border-box;
11
+ -moz-box-sizing: border-box;
12
+ box-sizing: border-box;
13
+ }
14
+
15
+ .clearfix:before,
16
+ .clearfix:after,
17
+ .container:before,
18
+ .container:after,
19
+ .container-fluid:before,
20
+ .container-fluid:after,
21
+ .row:before,
22
+ .row:after,
23
+ .form-horizontal .form-group:before,
24
+ .form-horizontal .form-group:after,
25
+ .form-group:before,
26
+ .form-group:after,
27
+ .tablenav:before,
28
+ .tablenav:after,
29
+ .tinvwl-panel:before,
30
+ .tinvwl-panel:after {
31
+ display: table;
32
+ content: " ";
33
+ }
34
+ .clearfix:after,
35
+ .container:after,
36
+ .container-fluid:after,
37
+ .row:after,
38
+ .form-horizontal .form-group:after,
39
+ .form-group:after,
40
+ .tablenav:after,
41
+ .tinvwl-panel:after {
42
+ clear: both;
43
+ }
44
+
45
+ .tinvwl-header table,
46
+ .tinvwl-content table {
47
+ border-spacing: 0;
48
+ border-collapse: collapse;
49
+ width: 100%;
50
+ max-width: 100%;
51
+ }
52
+
53
+ .tinvwl-header td,
54
+ .tinvwl-header th,
55
+ .tinvwl-content td,
56
+ .tinvwl-content th {
57
+ padding: 0;
58
+ }
59
+
60
+ .tinvwl-header img,
61
+ .tinvwl-content img {
62
+ height: auto;
63
+ max-width: 100%;
64
+ }
65
+
66
+ .tinvwl-header {
67
+ /*margin-bottom: 40px;*/
68
+ }
69
+
70
+ /* General */
71
+
72
+ #wpwrap {
73
+ background: #f6f3ed;
74
+ }
75
+
76
+ #wpcontent {
77
+ padding-left: 0;
78
+ }
79
+
80
+ #wpbody-content {
81
+ padding-bottom: 135px;
82
+ }
83
+
84
+ #update-nag,
85
+ .update-nag,
86
+ .notice,
87
+ div.error,
88
+ div.updated {
89
+ margin: 20px 0 0 40px;
90
+ }
91
+
92
+ .notice,
93
+ div.error,
94
+ div.updated {
95
+ margin-right: 40px;
96
+ }
97
+
98
+ body .tinvwl-header,
99
+ body .tinvwl-content {
100
+ font-family: Arial, sans-serif;
101
+ font-size: 14px;
102
+ line-height: 1.429;
103
+ color: #6b625a;
104
+ }
105
+
106
+ button,
107
+ input,
108
+ select,
109
+ textarea {
110
+ font-family: inherit;
111
+ font-size: inherit;
112
+ font-weight: inherit;
113
+ }
114
+
115
+ label,
116
+ .tinv-label {
117
+ display: block;
118
+ font-size: 15px;
119
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
120
+ color: #291C09;
121
+ font-weight: 600;
122
+ margin-bottom: 7px;
123
+ }
124
+
125
+ h1, h2, h3, h4, h5, h6,
126
+ .wrap h1 {
127
+ color: #291c09;
128
+ font-family: 'Open Sans', Arial, sans-serif;
129
+ font-weight: normal;
130
+ line-height: 1.313;
131
+ padding: 0;
132
+ margin: 0;
133
+ border: 0;
134
+ }
135
+
136
+ h1,
137
+ .wrap h1 {
138
+ font-size: 30px;
139
+ }
140
+
141
+ h2 {
142
+ font-size: 26px;
143
+ }
144
+
145
+ h3 {
146
+ font-size: 22px;
147
+ }
148
+
149
+ h4 {
150
+ font-size: 18px;
151
+ }
152
+
153
+ h5 {
154
+ font-size: 14px;
155
+ }
156
+
157
+ h6 {
158
+ font-size: 12px;
159
+ }
160
+
161
+ @media screen and (max-width: 1200px) {
162
+ #update-nag,
163
+ .update-nag,
164
+ .notice,
165
+ div.error,
166
+ div.updated {
167
+ margin-top: 20px;
168
+ margin-left: 20px;
169
+ margin-right: 20px;
170
+ }
171
+ }
172
+
173
+ @media screen and (max-width: 782px) {
174
+ .auto-fold #wpcontent {
175
+ padding-left: 0;
176
+ }
177
+
178
+ #update-nag,
179
+ .update-nag,
180
+ .notice,
181
+ div.error,
182
+ div.updated {
183
+ margin: 20px 0 0 0;
184
+ }
185
+
186
+ .notice,
187
+ div.error,
188
+ div.updated {
189
+ margin-right: 0;
190
+ }
191
+ }
192
+
193
+ /**
194
+ * SubMenu
195
+ */
196
+ #toplevel_page_tinvwl ul ul{
197
+ display:none;
198
+ margin-left: 15px;
199
+ position:absolute;
200
+ }
201
+ #toplevel_page_tinvwl ul li:hover ul, #toplevel_page_tinvwl ul li.current ul{
202
+ display:block;
203
+ left:145px;
204
+ margin-left: 15px;
205
+ position:absolute;
206
+ top:0px;
207
+ }
208
+ /**
209
+ * Header Page
210
+ */
211
+ /*.tinvwl-header {
212
+ background-color: #FFF;
213
+ height: 48px;
214
+ left: -20px;
215
+ margin: 0;
216
+ padding: 24px 40px;
217
+ position: relative;
218
+ right: 0;
219
+ width: calc(100% - 60px);
220
+ top: 0;
221
+ }
222
+ .tinvwl-header .title {
223
+ font-size: 21px;
224
+ line-height: 21px;
225
+ font-weight: 400;
226
+ float: left;
227
+ }*/
228
+ /*.tinvwl-header .status-panel {
229
+ float: right;
230
+ }*/
231
+
232
+ /**
233
+ * Status Panel
234
+ */
235
+ .status-panel > div {
236
+ display: inline-block;
237
+ margin-left: 21px;
238
+ }
239
+ .status-panel .button-link {
240
+ background-color: #FF5739;
241
+ color: #FFF;
242
+ text-decoration: none;
243
+ text-transform: uppercase;
244
+ line-height: 10px;
245
+ font-weight: 600;
246
+ height: 48px;
247
+ display: table-cell;
248
+ border-radius: 5px;
249
+ padding: 0 17px;
250
+ vertical-align:middle;
251
+ }
252
+ .status-panel .button-link span::before {
253
+ color: #ffdc00;
254
+ display: inline-block;
255
+ font: normal 12px/1 'dashicons';
256
+ vertical-align: bottom;
257
+ -webkit-font-smoothing: antialiased;
258
+ content: "\f155";
259
+ }
260
+ .status-panel .button-round {
261
+ border: 2px solid #f1f1f1;
262
+ border-radius: 50%;
263
+ width: 43px;
264
+ padding-top: 5px;
265
+ padding-left: 2px;
266
+ height: 40px;
267
+ display: table-cell;
268
+ text-align: center;
269
+ vertical-align: middle;
270
+ }
271
+ .status-panel .status-tutorial span::before {
272
+ color: #515151;
273
+ display: inline-block;
274
+ font: normal 24px/1 'dashicons';
275
+ vertical-align: middle;
276
+ -webkit-font-smoothing: antialiased;
277
+ content: "\f118";
278
+ }
279
+
280
+ /**
281
+ * Message Status
282
+ */
283
+
284
+ .tinvwl-status-message {
285
+ font-family: Arial, sans-serif;
286
+ font-size: 14px;
287
+ line-height: 1.429;
288
+ margin-top: 40px;
289
+ color: #6b625a;
290
+ border-top: 2px solid #f6f3ed;
291
+ }
292
+
293
+ .tinvwl-status-message .tinvwl-title {
294
+ padding: 13px 20px;
295
+ float: left;
296
+ width: 142px;
297
+ font-weight: bold;
298
+ }
299
+
300
+ .tinvwl-status-message.type-error .tinvwl-title,
301
+ .tinvwl-status-message.type-tip .tinvwl-title {
302
+ color: #fff;
303
+ }
304
+
305
+ .tinvwl-status-message.type-attention .tinvwl-title {
306
+ color: #23282d;
307
+ }
308
+
309
+ .tinvwl-status-message.type-error .tinvwl-title {
310
+ background: #ff3814;
311
+ }
312
+
313
+ .tinvwl-status-message.type-tip .tinvwl-title {
314
+ background: #30aec4;
315
+ }
316
+
317
+ .tinvwl-status-message.type-attention .tinvwl-title {
318
+ background: #ffe900;
319
+ }
320
+
321
+ .tinvwl-status-message .tinvwl-title i {
322
+ margin-right: 10px;
323
+ }
324
+
325
+ .tinvwl-status-message.type-error > .tinvwl-title > i:before {
326
+ content: "\f00d";
327
+ }
328
+ .tinvwl-status-message.type-tip > .tinvwl-title > i:before {
329
+ content: "\f05a";
330
+ }
331
+ .tinvwl-status-message.type-attention > .tinvwl-title > i:before {
332
+ content: "\f071";
333
+ }
334
+
335
+ .tinvwl-status-message .tinvwl-message {
336
+ padding: 13px 20px;
337
+ overflow: hidden;
338
+ height: 100%;
339
+ background: #faf9f7;
340
+ }
341
+
342
+ @media screen and (max-width: 782px) {
343
+ .tinvwl-status-message {
344
+ margin-top: 20px;
345
+ }
346
+ }
347
+
348
+ /**
349
+ * Form Elements
350
+ */
351
+ .tinvwl-content label {
352
+ /*font-size: 14px;
353
+ font-weight: 600;
354
+ margin: 2px;*/
355
+ /*line-height: 42px;*/
356
+ }
357
+
358
+ .tinvwl-content a {
359
+ text-decoration: none;
360
+ color: #30aec4;
361
+ }
362
+
363
+ .tinvwl-content a:hover,
364
+ .tinvwl-content a:active,
365
+ .tinvwl-content a:focus {
366
+ color: #524737;
367
+ }
368
+
369
+ .tinvwl-content input[type=text],
370
+ .tinvwl-content input[type=password],
371
+ .tinvwl-content input[type=checkbox],
372
+ .tinvwl-content input[type=color],
373
+ .tinvwl-content input[type=date],
374
+ .tinvwl-content input[type=datetime],
375
+ .tinvwl-content input[type=datetime-local],
376
+ .tinvwl-content input[type=email],
377
+ .tinvwl-content input[type=month],
378
+ .tinvwl-content input[type=number],
379
+ .tinvwl-content input[type=radio],
380
+ .tinvwl-content input[type=tel],
381
+ .tinvwl-content input[type=time],
382
+ .tinvwl-content input[type=url],
383
+ .tinvwl-content input[type=week],
384
+ .tinvwl-content input[type=search],
385
+ .tinvwl-content select,
386
+ .tinvwl-content textarea {
387
+ line-height: 1.429;
388
+ padding: 9px 13px;
389
+ margin: 0;
390
+ color: #4f4639;
391
+ border: 1px solid rgba(0, 0, 0, .14);
392
+ -webkit-box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .14);
393
+ box-shadow: inset 1px 1px 6px 0px rgba(170, 157, 137, .14);
394
+ }
395
+
396
+ .tinvwl-content textarea {
397
+ height: 70px;
398
+ }
399
+
400
+ .tinvwl-content input[type=text],
401
+ .tinvwl-content input[type=password],
402
+ .tinvwl-content input[type=color],
403
+ .tinvwl-content input[type=date],
404
+ .tinvwl-content input[type=datetime],
405
+ .tinvwl-content input[type=datetime-local],
406
+ .tinvwl-content input[type=email],
407
+ .tinvwl-content input[type=month],
408
+ .tinvwl-content input[type=number],
409
+ .tinvwl-content input[type=tel],
410
+ .tinvwl-content input[type=time],
411
+ .tinvwl-content input[type=url],
412
+ .tinvwl-content input[type=week],
413
+ .tinvwl-content input[type=search],
414
+ .tinvwl-content select {
415
+ height: 42px;
416
+ -webkit-border-radius: 4px;
417
+ -moz-border-radius: 4px;
418
+ border-radius: 4px;
419
+ }
420
+
421
+ .tinvwl-content .tablenav input[type=search] {
422
+ height: 35px;
423
+ width: 210px;
424
+ padding: 9px 13px;
425
+ -webkit-box-shadow: none;
426
+ box-shadow: none;
427
+ border: none;
428
+ background: #f4f3ef;
429
+ }
430
+
431
+ .tinvwl-content .tablenav input[type=search] + input[type=submit],
432
+ .tinvwl-content .tablenav input[type=search] + button[type=submit] {
433
+ vertical-align: middle;
434
+ }
435
+
436
+ .tinvwl-content .tablenav .tinvwl-select-wrap + input[type=submit],
437
+ .tinvwl-content .tablenav input[type=search] + input[type=submit],
438
+ .tinvwl-content .tablenav input[type=search] + button[type=submit] {
439
+ float: right;
440
+ margin-left: 8px !important;
441
+ }
442
+
443
+ .tinvwl-content input[type=text]:disabled,
444
+ .tinvwl-content input[type=password]:disabled,
445
+ .tinvwl-content input[type=color]:disabled,
446
+ .tinvwl-content input[type=date]:disabled,
447
+ .tinvwl-content input[type=datetime]:disabled,
448
+ .tinvwl-content input[type=datetime-local]:disabled,
449
+ .tinvwl-content input[type=email]:disabled,
450
+ .tinvwl-content input[type=month]:disabled,
451
+ .tinvwl-content input[type=number]:disabled,
452
+ .tinvwl-content input[type=tel]:disabled,
453
+ .tinvwl-content input[type=time]:disabled,
454
+ .tinvwl-content input[type=url]:disabled,
455
+ .tinvwl-content input[type=week]:disabled,
456
+ .tinvwl-content input[type=search]:disabled,
457
+ .tinvwl-content select:disabled {
458
+ font-size: 15px;
459
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
460
+ font-weight: 600;
461
+ color: #291C09;
462
+ background-color: #f6f3ed;
463
+ border-color: #f6f3ed;
464
+ }
465
+
466
+ .tinvwl-content select {
467
+ font-family: Arial, sans-serif;
468
+ font-size: 14px;
469
+ -webkit-appearance: none;
470
+ -moz-appearance: none;
471
+ appearance: none;
472
+ cursor: pointer;
473
+ padding: 9px 40px 9px 13px;
474
+ background-color: #fff;
475
+ background-image: url(../img/select_caret.png);
476
+ background-repeat: no-repeat;
477
+ background-position: 96% center;
478
+ background-position: calc(100% - 15px) center;
479
+ }
480
+
481
+ @media screen and (max-width: 782px) {
482
+ input, textarea {
483
+ font-size: 14px;
484
+ }
485
+
486
+ #wpbody .tinvwl-content select {
487
+ height: 42px;
488
+ font-size: 14px;
489
+ }
490
+ }
491
+
492
+ .tinvwl-content select[multiple="multiple"] {
493
+ padding: 9px 13px;
494
+ background: #fff;
495
+ }
496
+
497
+ .tinvwl-content .tinvwl-select.grey {
498
+ font-size: 14px;
499
+ font-family: "Arial", "Helvetica Neue", Helvetica, sans-serif;
500
+ padding: 8px 11px;
501
+ height: 35px;
502
+ border: none;
503
+ color: #5D5D5D;
504
+ background: #f4f3ef;
505
+ }
506
+
507
+ .tinvwl-select-wrap {
508
+ position: relative;
509
+ display: inline-block;
510
+ vertical-align: middle;
511
+ cursor: pointer;
512
+ }
513
+
514
+ .tinvwl-content select.tinvwl-select.grey {
515
+ padding-right: 47px;
516
+ margin: 0;
517
+ -webkit-border-radius: 4px;
518
+ -moz-border-radius: 4px;
519
+ border-radius: 4px;
520
+ }
521
+
522
+ .tinvwl-select + .tinvwl-caret {
523
+ pointer-events: none;
524
+ display: inline-block;
525
+ position: absolute;
526
+ top: 0;
527
+ right: 0;
528
+ width: 36px;
529
+ height: 36px;
530
+ line-height: 36px;
531
+ text-align: center;
532
+ -webkit-border-radius: 0 4px 4px 0;
533
+ -moz-border-radius: 0 4px 4px 0;
534
+ border-radius: 0 4px 4px 0;
535
+ }
536
+
537
+ .tinvwl-select + .tinvwl-caret span {
538
+ display: inline-block;
539
+ width: 13px;
540
+ height: 8px;
541
+ background: url(../img/chevron_down.png) no-repeat center;
542
+ background-position: 0 -10px;
543
+ }
544
+
545
+ .tinvwl-select:hover + .tinvwl-caret {
546
+ background: #3e3e3e;
547
+ }
548
+
549
+ .tinvwl-select:hover + .tinvwl-caret span {
550
+ background-position: 0 0;
551
+ }
552
+
553
+
554
+ /* Buttons */
555
+
556
+ .tinvwl-content .tinvwl-nav {
557
+ margin: 0 40px;
558
+ }
559
+
560
+ .tinvwl-content .tinvwl-panel + .tinvwl-nav {
561
+ margin-top: 40px;
562
+ }
563
+
564
+ .tinvwl-nav .tinvwl-prev {
565
+ float: left;
566
+ }
567
+
568
+ .tinvwl-nav .tinvwl-prev .tinvwl-btn {
569
+ float: left;
570
+ }
571
+
572
+ .tinvwl-nav .tinvwl-next {
573
+ float: right;
574
+ text-align: right;
575
+ }
576
+
577
+ .tinvwl-nav .tinvwl-next .tinvwl-btn {
578
+ /*float: right;*/
579
+ }
580
+
581
+ @media (max-width: 1199px) {
582
+ .tinvwl-nav .tinvwl-prev,
583
+ .tinvwl-nav .tinvwl-next {
584
+ /*float: none;
585
+ text-align: left;*/
586
+ }
587
+ }
588
+
589
+ .tinvwl-nav .tinvwl-btn + .tinvwl-btn {
590
+ margin-left: 20px;
591
+ }
592
+
593
+ .tinvwl-panel.only-button.w-bg {
594
+ background: none;
595
+ overflow: visible;
596
+ }
597
+
598
+ .tinvwl-panel.only-button.w-shadow {
599
+ -webkit-box-shadow: none;
600
+ box-shadow: none;
601
+ overflow: visible;
602
+ }
603
+
604
+ .tinvwl-panel.only-button thead,
605
+ .tinvwl-panel.only-button tfoot {
606
+ display: none;
607
+ }
608
+
609
+ .tinvwl-panel.only-button .control-label {
610
+ display: none;
611
+ }
612
+
613
+ .tinvwl-panel.only-button .form-group {
614
+ margin-bottom: 0;
615
+ }
616
+
617
+ .tinvwl-panel.only-button .form-control {
618
+ display: inline-block;
619
+ width: auto;
620
+ }
621
+
622
+ .tinvwl-panel.only-button .tinvwl-table > tbody > tr > td {
623
+ padding: 0;
624
+ }
625
+
626
+ #doaction,
627
+ #doaction2,
628
+ #post-query-submit {
629
+ margin: 0;
630
+ }
631
+
632
+ button,
633
+ input[type="submit"],
634
+ .tinvwl-btn {
635
+ display: inline-block;
636
+ vertical-align: middle;
637
+ margin: 0;
638
+ font-family: 'Open Sans', Arial, sans-serif;
639
+ font-size: 14px;
640
+ line-height: normal;
641
+ cursor: pointer;
642
+ text-decoration: none;
643
+ }
644
+
645
+ .tinvwl-btn,
646
+ a.tinvwl-btn {
647
+ padding: 11px 19px 12px 18px;
648
+ font-weight: 800;
649
+ text-align: center;
650
+ text-transform: uppercase;
651
+ letter-spacing: -.025em;
652
+ border: none;
653
+ -webkit-border-radius: 2px;
654
+ -moz-border-radius: 2px;
655
+ border-radius: 2px;
656
+ color: #fff;
657
+ background-color: #96b100;
658
+ }
659
+
660
+ .tinvwl-btn.large {
661
+ padding: 14px 19px 14px 18px;
662
+ }
663
+
664
+ .tinvwl-btn.small {
665
+ padding: 6px 11px 7px;
666
+ }
667
+
668
+ .tinvwl-btn.smaller {
669
+ /*padding: 7px 15px;*/
670
+ padding: 11px 18px 12px;
671
+ }
672
+
673
+ .tinvwl-btn.red,
674
+ .tinvwl-btn.green,
675
+ .tinvwl-btn.dark-green,
676
+ .tinvwl-btn.black {
677
+ font-weight: 800;
678
+ }
679
+
680
+ .tinvwl-btn.grey {
681
+ /*padding: 6px 11px 7px;*/
682
+ margin: 0;
683
+ padding: 8px 12px;
684
+ font-weight: bold;
685
+ /*letter-spacing: 0;*/
686
+ color: #3e3e3e;
687
+ background: #F4F3EF;
688
+ }
689
+
690
+ .tinvwl-btn.grey.large {
691
+ font-weight: 800;
692
+ padding: 14px 19px 14px 18px;
693
+ }
694
+
695
+ .tinvwl-btn.grey.w-icon {
696
+ letter-spacing: -.025em;
697
+ }
698
+
699
+ .tinvwl-btn.red {
700
+ color: #fff;
701
+ background-color: #ff5739;
702
+ }
703
+
704
+ .tinvwl-btn.orange {
705
+ color: #fff;
706
+ background-color: #FF9F07;
707
+ }
708
+
709
+ .tinvwl-btn.dark-green {
710
+ /*color: #fff;*/
711
+ /*background-color: #96b100;*/
712
+ }
713
+
714
+ .tinvwl-btn.white.smaller {
715
+ font-size: 14px;
716
+ font-weight: bold;
717
+ letter-spacing: -.05em;
718
+ padding: 10px 15px 11px;
719
+ border: 1px solid rgba(0,0,0,.14);
720
+ box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
721
+ }
722
+
723
+ .tinvwl-btn.white.small {
724
+ font-family: Arial, sans-serif;
725
+ font-size: 14px;
726
+ text-transform: none;
727
+ font-weight: normal;
728
+ border: 1px solid rgba(0,0,0,.14);
729
+ box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
730
+ }
731
+
732
+ .tinvwl-btn.white.small {
733
+ padding: 9px 18px;
734
+ color: #4f4639;
735
+ }
736
+
737
+ .tinvwl-btn.small.white:hover,
738
+ .tinvwl-btn.small.white:active,
739
+ .tinvwl-btn.small.white:focus {
740
+ color: #fff;
741
+ }
742
+
743
+ .tinvwl-btn.white {
744
+ color: #291c09;
745
+ background: #fff;
746
+ }
747
+
748
+ .tinvwl-btn.white.no-txt {
749
+ padding: 12px 16px;
750
+ }
751
+
752
+ .tinvwl-btn.white.small.no-txt {
753
+ padding: 9px 12px;
754
+ }
755
+
756
+ .tinvwl-btn.white i {
757
+ color: #6b625a;
758
+ margin-right: 11px;
759
+ }
760
+
761
+ .tinvwl-btn.w-icon {
762
+ font-weight: 800;
763
+ }
764
+
765
+ .tinvwl-btn.w-icon i {
766
+ margin-right: 16px;
767
+ }
768
+
769
+ .tinvwl-btn.round.w-icon i {
770
+ margin-right: 15px;
771
+ font-size: 16px;
772
+ }
773
+
774
+ .tinvwl-btn.w-icon i.fa-graduation-cap {
775
+ vertical-align: text-bottom;
776
+ }
777
+
778
+ .tinvwl-btn.red.w-icon i {
779
+ margin-right: 13px;
780
+ }
781
+
782
+ .tinvwl-btn.xl-icon i,
783
+ .tinvwl-btn.round.xl-icon i {
784
+ font-size: 17px;
785
+ margin-right: 15px;
786
+ }
787
+
788
+ .tinvwl-btn.lg-icon i {
789
+ font-size: 15px;
790
+ }
791
+
792
+ .tinvwl-btn.md-icon i,
793
+ .tinvwl-btn.round.md-icon i {
794
+ font-size: 14px;
795
+ }
796
+
797
+ .tinvwl-btn.sm-icon i {
798
+ font-size: 13px;
799
+ }
800
+
801
+ .tinvwl-btn.xs-icon i {
802
+ font-size: 11px;
803
+ vertical-align: 1%;
804
+ }
805
+
806
+ .tinvwl-btn.white.no-txt i {
807
+ margin-right: 0;
808
+ }
809
+
810
+ .tinvwl-btn.white:hover i,
811
+ .tinvwl-btn.white:active i,
812
+ .tinvwl-btn.white:focus i {
813
+ color: #fff;
814
+ }
815
+
816
+ .tinvwl-btn.green {
817
+ color: #fff;
818
+ background-color: #a9c203;
819
+ }
820
+
821
+ .tinvwl-btn.black {
822
+ color: #fff;
823
+ background-color: #515151;
824
+ }
825
+
826
+ .tinvwl-btn.smaller-txt {
827
+ font-size: 12px;
828
+ padding: 15px 20px;
829
+ }
830
+
831
+ .tinvwl-btn.medium {
832
+ letter-spacing: 0;
833
+ }
834
+
835
+ .tinvwl-btn.medium.smaller-txt {
836
+ padding: 9px 16px;
837
+ }
838
+
839
+ .tinvwl-btn.round {
840
+ -webkit-border-radius: 25px;
841
+ -moz-border-radius: 25px;
842
+ border-radius: 25px;
843
+ padding: 15px 28px 16px;
844
+ }
845
+
846
+ .tinvwl-btn.round.red {
847
+ /*padding: 15px 22px 16px;*/
848
+ padding: 16px 30px;
849
+ }
850
+
851
+ .tinvwl-btn.split {
852
+ padding: 0 26px 0 0;
853
+ }
854
+
855
+ .tinvwl-btn.split span {
856
+ display: inline-block;
857
+ text-align: center;
858
+ width: 46px;
859
+ padding: 14px 0;
860
+ margin-right: 14px;
861
+ -webkit-border-radius: 4px 0 0 4px;
862
+ -moz-border-radius: 4px 0 0 4px;
863
+ border-radius: 4px 0 0 4px;
864
+ background: #8aa300;
865
+ }
866
+
867
+ .tinvwl-btn.split:hover span,
868
+ .tinvwl-btn.split:active span,
869
+ .tinvwl-btn.split:focus span {
870
+ background: #434343;
871
+ }
872
+
873
+ .tinvwl-btn.split.green span {
874
+ background: #b9cf09;
875
+ }
876
+
877
+ .tinvwl-btn.split.black span {
878
+ background: #434343;
879
+ }
880
+
881
+ .tinvwl-btn.split span i {
882
+ font-size: 17px;
883
+ }
884
+
885
+ .tinvwl-btn:not(:disabled):hover,
886
+ .tinvwl-btn:not(:disabled):active,
887
+ .tinvwl-btn:not(:disabled):focus,
888
+ a.tinvwl-btn:not(:disabled):hover,
889
+ a.tinvwl-btn:not(:disabled):active,
890
+ a.tinvwl-btn:not(:disabled):focus {
891
+ color: #fff;
892
+ /*background: #3e3e3e;*/
893
+ background-color: #515151;
894
+ }
895
+
896
+ /* Icons */
897
+
898
+ .tinvwl-header .icon.border-grey {
899
+ position: relative;
900
+ display: inline-block;
901
+ width: 45px;
902
+ height: 45px;
903
+ line-height: 45px;
904
+ text-align: center;
905
+ background: #fff;
906
+ border: 2px solid #f1f1f1;
907
+ -webkit-border-radius: 50%;
908
+ -moz-border-radius: 50%;
909
+ border-radius: 50%;
910
+ color: #3e3e3e;
911
+ }
912
+
913
+ .tinvwl-header .icon.border-grey:hover {
914
+ border-color: #515151;
915
+ }
916
+
917
+ .tinvwl-header .icon.w-lines {
918
+ position: relative;
919
+ padding: 0 30px;
920
+ }
921
+
922
+ .tinvwl-header .icon.w-lines:before,
923
+ .tinvwl-header .icon.w-lines:after {
924
+ content: '';
925
+ position: absolute;
926
+ top: 50%;
927
+ top: calc(50% - 1px);
928
+ width: 17px;
929
+ height: 1px;
930
+ background: rgba(0, 0, 0, .12);
931
+ }
932
+
933
+ .tinvwl-header .icon.w-lines:before {
934
+ left: 0;
935
+ }
936
+ .tinvwl-header .icon.w-lines:after {
937
+ right: 0;
938
+ }
939
+
940
+ .tinvwl-header .icon .badge {
941
+ position: absolute;
942
+ top: -5px;
943
+ right: -10px;
944
+ display: inline-block;
945
+ min-width: 26px;
946
+ height: 26px;
947
+ font-size: 11px;
948
+ line-height: 19px;
949
+ font-weight: bold;
950
+ background: #ff5739;
951
+ border: 3px solid #ffffff;
952
+ color: #ffffff;
953
+ -webkit-border-radius: 50%;
954
+ -moz-border-radius: 50%;
955
+ border-radius: 50%;
956
+ }
957
+
958
+ .tinvwl-header {
959
+ padding: 21px 40px;
960
+ margin-bottom: 40px;
961
+ background: #ffffff;
962
+ }
963
+
964
+ .tinwl-logo-title {
965
+ }
966
+
967
+ .tinwl-logo i.logo_heart {
968
+ min-width: 54px;
969
+ }
970
+
971
+ .tinwl-logo h2 {
972
+ font-size: 18px;
973
+ font-weight: bold;
974
+ text-transform: uppercase;
975
+ line-height: 1;
976
+ padding-left: 10px;
977
+ }
978
+
979
+ .tinvwl-header .tinvwl-title {
980
+ padding-left: 28px;
981
+ margin-left: 28px;
982
+ border-left: 1px solid #dcddde;
983
+ }
984
+
985
+ .tinvwl-header h1 {
986
+ color: #3e3e3e;
987
+ padding: 0;
988
+ }
989
+
990
+ .tinvwl-header .tinvwl-status-panel {
991
+ margin-top: -12px;
992
+ }
993
+
994
+ .tinvwl-header .tinvwl-status-panel > a {
995
+ vertical-align: middle;
996
+ }
997
+
998
+ .tinvwl-header .tinvwl-status-panel > a + a {
999
+ margin-left: 15px;
1000
+ }
1001
+
1002
+ .tinvwl-header .tinvwl-btn {
1003
+ margin-top: 15px;
1004
+ }
1005
+
1006
+ .tinvwl-header .tinvwl-btn {
1007
+ margin-top: 18px;
1008
+ }
1009
+
1010
+ .tinvwl-header .tinvwl-btn.red i {
1011
+ color: #ffdc00;
1012
+ }
1013
+
1014
+ .tinvwl-header .tinvwl-status-panel {
1015
+ text-align: right;
1016
+ }
1017
+
1018
+ .tinvwl-sign-icon {
1019
+ font-size: 30px;
1020
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
1021
+ color: #948d84;
1022
+ }
1023
+
1024
+ @media (max-width: 1199px) {
1025
+ .tinvwl-header .tinvwl-table,
1026
+ .tinvwl-header .tinvwl-cell,
1027
+ .tinvwl-header .tinvwl-cell-3 {
1028
+ display: block;
1029
+ }
1030
+
1031
+ .tinvwl-header {
1032
+ text-align: center;
1033
+ }
1034
+
1035
+ .tinvwl-header h1 + .tinvwl-status-panel {
1036
+ margin-top: 25px;
1037
+ }
1038
+
1039
+ .tinvwl-header .tinvwl-status-panel {
1040
+ text-align: center;
1041
+ }
1042
+
1043
+ .tinvwl-header .tinvwl-status-panel {
1044
+ margin-top: 15px;
1045
+ }
1046
+
1047
+ .tinvwl-header .tinvwl-status-panel > a + a {
1048
+ margin-left: 9px;
1049
+ }
1050
+
1051
+ .tinvwl-header {
1052
+ padding: 18px 0 25px;
1053
+ }
1054
+
1055
+ .tinwl-logo, .tinwl-logo h2,
1056
+ .tinwl-logo img,
1057
+ .tinvwl-header .tinvwl-title {
1058
+ display: block;
1059
+ margin: 0 auto;
1060
+ }
1061
+
1062
+ .tinwl-logo h2 {
1063
+ padding-left: 0;
1064
+ margin-left: 0;
1065
+ margin-top: 6px;
1066
+ }
1067
+
1068
+ .tinvwl-header .tinvwl-title {
1069
+ position: relative;
1070
+ padding-left: 12px;
1071
+ padding-right: 12px;
1072
+ padding-top: 13px;
1073
+ margin-left: 0;
1074
+ margin-top: 16px;
1075
+ border-left: 0;
1076
+ }
1077
+
1078
+ .tinvwl-header .tinvwl-title:before {
1079
+ content: '';
1080
+ position: absolute;
1081
+ top: 0;
1082
+ left: 0;
1083
+ right: 0;
1084
+ width: 40px;
1085
+ height: 1px;
1086
+ margin: 0 auto;
1087
+ background: #dcddde;
1088
+ }
1089
+ }
1090
+
1091
+ @media (max-width: 782px) {
1092
+
1093
+ .tinvwl-header .tinvwl-btn .tinvwl-txt {
1094
+ display: none;
1095
+ }
1096
+
1097
+ .tinvwl-header .tinvwl-btn i {
1098
+ margin-right: 0 !important;
1099
+ }
1100
+
1101
+ .tinvwl-header .tinvwl-btn.grey {
1102
+ padding-left: 16px;
1103
+ padding-right: 16px;
1104
+ }
1105
+ }
1106
+
1107
+ .tinvwl-content h2{
1108
+ /*margin: 0;*/
1109
+ /*line-height: 40px;*/
1110
+ }
1111
+
1112
+
1113
+ /* Privacy Navigation */
1114
+
1115
+ .tinwl-wishlists-privacy {
1116
+ margin: -10px 0 0;
1117
+ }
1118
+
1119
+ .tinwl-wishlists-privacy li {
1120
+ float: left;
1121
+ margin: 10px 10px 0 0;
1122
+ }
1123
+
1124
+ .tinwl-wishlists-privacy li:last-child {
1125
+ margin-right: 0;
1126
+ }
1127
+
1128
+ .tinwl-wishlists-privacy li a {
1129
+ display: block;
1130
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
1131
+ font-size: 14px;
1132
+ font-weight: 600;
1133
+ line-height: 1;
1134
+ padding: 10px 16px;
1135
+ -webkit-border-radius: 3px;
1136
+ -moz-border-radius: 3px;
1137
+ border-radius: 3px;
1138
+ color: #404040;
1139
+ background: #ede8df;
1140
+ }
1141
+
1142
+ .tinwl-wishlists-privacy li.active a,
1143
+ .tinwl-wishlists-privacy li a:hover,
1144
+ .tinwl-wishlists-privacy li a:active,
1145
+ .tinwl-wishlists-privacy li a:focus {
1146
+ color: #fff;
1147
+ background-color: #96b100;
1148
+ }
1149
+
1150
+ @media screen and (max-width: 782px) {
1151
+ .tinwl-wishlists-privacy {
1152
+ margin-left: 15px;
1153
+ }
1154
+ }
1155
+
1156
+ /* Panel */
1157
+
1158
+ .tinvwl-panel {
1159
+ margin: 40px 40px 0;
1160
+ }
1161
+
1162
+ .tinvwl-panel .w-bg-grey {
1163
+ background: #fbfaf9;
1164
+ }
1165
+
1166
+ .tinvwl-panel.w-shadow {
1167
+ -webkit-box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1168
+ box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1169
+ }
1170
+
1171
+ .tinvwl-panel.w-bg {
1172
+ background: #ffffff;
1173
+ -webkit-border-radius: 4px;
1174
+ -moz-border-radius: 4px;
1175
+ border-radius: 4px;
1176
+ }
1177
+
1178
+ .tinvwl-table.w-info .tinvwl-info[rowspan],
1179
+ .tinvwl-table.w-info .tinvwl-info[rowspan] .tinvwl-info-sign {
1180
+ vertical-align: middle;
1181
+ }
1182
+
1183
+ .tinvwl-table.w-info .tinvwl-info-top > tr .tinvwl-info {
1184
+ vertical-align: top;
1185
+ }
1186
+
1187
+ @media screen and (max-width: 1200px) {
1188
+ .tinvwl-panel {
1189
+ margin: 20px 20px 0;
1190
+ }
1191
+
1192
+ .tinvwl-header {
1193
+ margin-bottom: 20px;
1194
+ }
1195
+ }
1196
+
1197
+ @media screen and (max-width: 782px) {
1198
+ .tinvwl-panel {
1199
+ margin: 20px 0px 0;
1200
+ }
1201
+
1202
+ .tinvwl-panel.only-button {
1203
+ text-align: center;
1204
+ }
1205
+ }
1206
+
1207
+ /**
1208
+ * Content Elements
1209
+ */
1210
+
1211
+ .tinvwl-content {
1212
+ /*margin: 14px 40px 10px 20px;*/
1213
+ }
1214
+ .tinvwl-content section {
1215
+ /*margin-top: 20px;*/
1216
+ /*background-color: #FFF;*/
1217
+ /*border-radius: 5px;*/
1218
+ }
1219
+ .tinvwl-content section:after{
1220
+ /*content: '';
1221
+ display: block;
1222
+ height: 0;
1223
+ clear: both;*/
1224
+ }
1225
+
1226
+
1227
+ /* Preview Icon */
1228
+
1229
+ .tinvwl-icon-preview {
1230
+ position: relative;
1231
+ width: 50px;
1232
+ height: 42px;
1233
+ margin-right: 10px;
1234
+ margin-bottom: 10px;
1235
+ text-align: center;
1236
+ -webkit-border-radius: 2px;
1237
+ -moz-border-radius: 2px;
1238
+ border-radius: 2px;
1239
+ color: #595857;
1240
+ background: #f6f3ed;
1241
+ }
1242
+
1243
+ @media (min-width: 1200px) {
1244
+ .tinvwl-icon-preview {
1245
+ margin-bottom: 0;
1246
+ }
1247
+ }
1248
+
1249
+ .tinvwl-icon-preview span {
1250
+ position: absolute;
1251
+ top: 50%;
1252
+ left: 0px;
1253
+ right: 0px;
1254
+
1255
+ -webkit-transform: translateY(-50%);
1256
+ -moz-transform: translateY(-50%);
1257
+ -ms-transform: translateY(-50%);
1258
+ -o-transform: translateY(-50%);
1259
+ transform: translateY(-50%);
1260
+ }
1261
+
1262
+ .tinvwl-icon-preview span img {
1263
+ max-width: 50px;
1264
+ max-height: 42px;
1265
+ vertical-align: middle;
1266
+ }
1267
+
1268
+
1269
+
1270
+ /* Table */
1271
+
1272
+ .tinvwl-content .table-wrap {
1273
+ /*padding: 25px 0;*/
1274
+ }
1275
+
1276
+ .tinvwl-content table.widefat {
1277
+ -webkit-box-shadow: none;
1278
+ -moz-box-shadow: none;
1279
+ box-shadow: none;
1280
+ }
1281
+
1282
+ .tinvwl-content .tablenav {
1283
+ height: auto;
1284
+ margin: 30px;
1285
+ background: #ffffff;
1286
+ }
1287
+
1288
+ .tinvwl-content .tablenav .actions {
1289
+ /*padding: 6px 0 0;*/
1290
+ padding: 0;
1291
+ }
1292
+
1293
+ @media screen and (max-width: 782px) {
1294
+ .tablenav.top .actions {
1295
+ display: block;
1296
+ }
1297
+
1298
+ .tablenav br.clear {
1299
+ display: none;
1300
+ }
1301
+
1302
+ .tinvwl-content .tablenav {
1303
+ margin: 15px 12px;
1304
+ }
1305
+
1306
+ .tinvwl-content .tablenav .alignleft,
1307
+ .tinvwl-content .tablenav .alignright {
1308
+ float: none;
1309
+ }
1310
+
1311
+ .tinvwl-content .tablenav .tinvwl-full {
1312
+ display: none;
1313
+ }
1314
+
1315
+ .tinvwl-content .tablenav .alignleft + .alignright {
1316
+ margin-top: 10px;
1317
+ }
1318
+
1319
+ .tinvwl-content .tablenav .tinvwl-select-wrap {
1320
+ width: calc( 100% - 75px );
1321
+ }
1322
+
1323
+ #wpbody .tinvwl-content .tablenav .tinvwl-select-wrap select.tinvwl-select {
1324
+ max-width: 100%;
1325
+ width: 100%;
1326
+ height: 35px;
1327
+ padding: 9px 13px;
1328
+ }
1329
+
1330
+ .tinvwl-content .tablenav input[type=search] {
1331
+ width: calc( 100% - 84px );
1332
+ }
1333
+
1334
+ .tinvwl-content .tablenav .tinvwl-select-wrap + input[type=submit],
1335
+ .tinvwl-content .tablenav input[type=search] + input[type=submit] {
1336
+ }
1337
+ }
1338
+
1339
+ .tinvwl-content .widefat th,
1340
+ .tinvwl-content .widefat td {
1341
+ text-align: center;
1342
+ padding: 0;
1343
+ }
1344
+
1345
+ .tinvwl-content .widefat th {
1346
+ padding: 27px 0px;
1347
+ position: relative;
1348
+ }
1349
+
1350
+ .tinvwl-info-wrap.tinvwl-in-table {
1351
+ /*position: absolute;
1352
+ top: 50%;
1353
+ margin-top: -11px;*/
1354
+ }
1355
+
1356
+ .tinvwl-content .widefat th.sortable,
1357
+ .tinvwl-content .widefat th.sorted {
1358
+ padding: 0;
1359
+ }
1360
+
1361
+ .tinvwl-content .widefat th.sortable > a,
1362
+ .tinvwl-content .widefat th.sorted > a {
1363
+ padding: 28px 17px;
1364
+ }
1365
+
1366
+ .tinvwl-content .widefat th.tinvwl-has-info {
1367
+ padding-top: 28px;
1368
+ }
1369
+
1370
+ .tinvwl-content .widefat th.tinvwl-has-info.sortable > a,
1371
+ .tinvwl-content .widefat th.tinvwl-has-info.sorted > a {
1372
+ padding-top: 0;
1373
+ }
1374
+
1375
+ .tinvwl-content .widefat th.sortable:first-of-type,
1376
+ .tinvwl-content .widefat th.sorted:first-of-type {
1377
+ padding-left: 0;
1378
+ }
1379
+
1380
+ .tinvwl-content .widefat th.sortable:first-of-type > a,
1381
+ .tinvwl-content .widefat th.sorted:first-of-type > a {
1382
+ padding-left: 28px;
1383
+ }
1384
+
1385
+ .tinvwl-content .widefat th:first-of-type,
1386
+ .tinvwl-content .widefat td:first-of-type {
1387
+ text-align: left;
1388
+ padding-left: 28px;
1389
+ }
1390
+
1391
+ .tinvwl-content .widefat th .tinvwl-help-wrap {
1392
+ display: inline-block;
1393
+ }
1394
+
1395
+ .tinvwl-content .widefat th .tinvwl-help-wrap {
1396
+ margin-left: 6px;
1397
+ }
1398
+
1399
+ .tinvwl-content .widefat th.sortable > a + .tinvwl-help-wrap,
1400
+ .tinvwl-content .widefat th.sorted > a + .tinvwl-help-wrap {
1401
+ margin-left: 0;
1402
+ }
1403
+
1404
+ .tinvwl-content .widefat thead tr {
1405
+ background: #f4f3ef;
1406
+ }
1407
+
1408
+ .tinvwl-content .striped>tbody>:nth-child(odd),
1409
+ .tinvwl-content ul.striped>:nth-child(odd) {
1410
+ background: none;
1411
+ }
1412
+
1413
+ .tinvwl-content .widefat thead td.check-column,
1414
+ .tinvwl-content .widefat tbody th.check-column {
1415
+ width: 50px;
1416
+ padding: 28px 0 28px 28px;
1417
+ vertical-align: middle;
1418
+ }
1419
+
1420
+ .tinvwl-content .widefat thead td.check-column {
1421
+ padding: 28px 0 28px 28px;
1422
+ }
1423
+
1424
+ .tinvwl-content .widefat tbody th.check-column {
1425
+ padding: 13px 0 13px 28px;
1426
+ }
1427
+
1428
+ .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > a,
1429
+ .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > a,
1430
+ .tinvwl-content .widefat thead td.check-column + th,
1431
+ .tinvwl-content .widefat tbody th.check-column + td {
1432
+ padding-left: 21px;
1433
+ }
1434
+
1435
+ .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > .tinvwl-info-wrap.tinvwl-in-table,
1436
+ .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > .tinvwl-info-wrap.tinvwl-in-table {
1437
+ padding-left: 21px;
1438
+ }
1439
+
1440
+ .tinvwl-content .widefat thead td.pause-play-column,
1441
+ .tinvwl-content .widefat tbody th.pause-play-column {
1442
+ padding: 0;
1443
+ width: 53px;
1444
+ text-align: center;
1445
+ }
1446
+
1447
+ .tinvwl-content th.sortable,
1448
+ .tinvwl-content th.sorted {
1449
+ }
1450
+
1451
+ .tinvwl-content th.sortable a,
1452
+ .tinvwl-content th.sorted a {
1453
+ padding: 0;
1454
+ }
1455
+
1456
+ .tinvwl-content .widefat th,
1457
+ .tinvwl-content th.sortable > a,
1458
+ .tinvwl-content th.sorted > a {
1459
+ font-size: 14px;
1460
+ font-weight: 600;
1461
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
1462
+ color: #291C09;
1463
+ text-transform: uppercase;
1464
+ letter-spacing: -.025em;
1465
+ }
1466
+
1467
+ .tinvwl-content th.sortable > a,
1468
+ .tinvwl-content th.sorted > a {
1469
+ display: inline-block;
1470
+ vertical-align: middle;
1471
+ }
1472
+
1473
+ .tinvwl-content .widefat th.sortable > a,
1474
+ .tinvwl-content .widefat th.sorted > a {
1475
+ position: relative;
1476
+ }
1477
+
1478
+ .tinvwl-content .widefat th.sortable > a .sorting-indicator,
1479
+ .tinvwl-content .widefat th.sorted > a .sorting-indicator {
1480
+ position: absolute;
1481
+ top: 50%;
1482
+ right: 0;
1483
+ margin-top: -2px;
1484
+ }
1485
+
1486
+ .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1487
+ .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1488
+ margin-top: -15px;
1489
+ }
1490
+
1491
+ .tinvwl-content th.sortable a span,
1492
+ .tinvwl-content th.sorted a span {
1493
+ float: none;
1494
+ }
1495
+
1496
+ .tinvwl-content table.widefat {
1497
+ /*table-layout: auto;*/
1498
+ border: none;
1499
+ border-bottom: 2px solid #f7f7f7;
1500
+ }
1501
+
1502
+ .tinvwl-content .widefat thead td,
1503
+ .tinvwl-content .widefat thead th {
1504
+ border-bottom: 0;
1505
+ }
1506
+
1507
+ .tinvwl-content .widefat td {
1508
+ padding: 24px 0;
1509
+ vertical-align: middle;
1510
+ }
1511
+
1512
+ .tinvwl-content .widefat tbody td {
1513
+ padding: 13px 0;
1514
+ }
1515
+
1516
+ .tinvwl-content .widefat td,
1517
+ .tinvwl-content .widefat td ol,
1518
+ .tinvwl-content .widefat td p,
1519
+ .tinvwl-content .widefat td ul {
1520
+ font-size: 14px;
1521
+ }
1522
+
1523
+ .tinvwl-content .widefat tbody tr + tr {
1524
+ border-top: 2px solid #f7f7f7;
1525
+ }
1526
+
1527
+ .tinvwl-content .widefat thead th.column-preference {
1528
+ /*display: none;*/
1529
+ text-indent: -9999px;
1530
+ }
1531
+
1532
+ .tinvwl-content .widefat.wishlists thead th.column-preference,
1533
+ .tinvwl-content .widefat.wishlists tbody td.column-preference {
1534
+ min-width: 220px;
1535
+ width: 220px;
1536
+ }
1537
+
1538
+ .tinvwl-content .widefat:not(.products) tbody td.column-preference {
1539
+ text-align: right;
1540
+ }
1541
+
1542
+ .tinvwl-content .widefat.products thead th.column-quantity a > span:not(.sorting-indicator) {
1543
+ max-width: 91px;
1544
+ }
1545
+
1546
+ .tinvwl-content .widefat.users tbody .column-name > a {
1547
+ display: block;
1548
+ }
1549
+
1550
+ .tinvwl-content .widefat.products thead th.column-preference,
1551
+ .tinvwl-content .widefat.products tbody td.column-preference {
1552
+ width: 345px;
1553
+ min-width: 345px;
1554
+ }
1555
+
1556
+ .tinvwl-content .widefat.users thead th.column-preference,
1557
+ .tinvwl-content .widefat.users tbody td.column-preference {
1558
+ width: 165px;
1559
+ min-width: 165px;
1560
+ }
1561
+
1562
+ .tinvwl-content .widefat tbody .column-name strong {
1563
+ font-weight: normal;
1564
+ }
1565
+
1566
+ .tinvwl-content .widefat tbody .column-name > a {
1567
+ display: table;
1568
+ }
1569
+
1570
+ .tinvwl-content .widefat tbody .column-name .product-image img {
1571
+ max-width: 66px;
1572
+ }
1573
+
1574
+ .tinvwl-content .widefat tbody .column-name .product-image,
1575
+ .tinvwl-content .widefat tbody .column-name .product-title {
1576
+ display: table-cell;
1577
+ vertical-align: middle;
1578
+ }
1579
+
1580
+ .tinvwl-content .widefat tbody .column-name .product-title {
1581
+ padding-left: 15px;
1582
+ }
1583
+
1584
+ .tinvwl-content .widefat thead th.column-preference,
1585
+ .tinvwl-content .widefat tbody td.column-preference {
1586
+ padding-right: 20px;
1587
+ }
1588
+
1589
+ .tinvwl-content .widefat.products tbody td.column-preference > a {
1590
+ margin-right: 10px;
1591
+ float: left;
1592
+ }
1593
+
1594
+ .tinvwl-content .widefat.products tbody td.column-preference > a:last-child {
1595
+ margin-right: 0;
1596
+ }
1597
+
1598
+ .tinvwl-content .tablenav .tablenav-pages {
1599
+ float: none;
1600
+ text-align: center;
1601
+ height: auto;
1602
+ margin-top: 0;
1603
+ }
1604
+
1605
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > a,
1606
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > span {
1607
+ display: inline-block;
1608
+ vertical-align: middle;
1609
+ text-align: center;
1610
+ font-size: 14px;
1611
+ font-weight: normal;
1612
+ padding: 0;
1613
+ min-width: 38px;
1614
+ height: 38px;
1615
+ line-height: 38px;
1616
+ -webkit-border-radius: 50%;
1617
+ -moz-border-radius: 50%;
1618
+ border-radius: 50%;
1619
+ border: none;
1620
+ background: none;
1621
+ color: #3e3e3e;
1622
+ }
1623
+
1624
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > span {
1625
+ color: rgba(62,62,62,.46);
1626
+ }
1627
+
1628
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > span,
1629
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page,
1630
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page {
1631
+ background: #f3f1ec;
1632
+ }
1633
+
1634
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > .tinvwl-page-number.space {
1635
+ background: none;
1636
+ color: #3e3e3e;
1637
+ }
1638
+
1639
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links > a:hover,
1640
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover,
1641
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover {
1642
+ background: #3e3e3e;
1643
+ color: #fff;
1644
+ }
1645
+
1646
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page {
1647
+ margin-right: 20px;
1648
+ }
1649
+
1650
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page {
1651
+ margin-left: 20px;
1652
+ }
1653
+
1654
+ .tinvwl-content .tablenav .tablenav-pages .tinvwl-chevron {
1655
+ display: inline-block;
1656
+ vertical-align: middle;
1657
+ width: 9px;
1658
+ height: 16px;
1659
+ }
1660
+
1661
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
1662
+ background: url(../img/chevron_icon.png) no-repeat center;
1663
+ background-position: 0px -16px;
1664
+ }
1665
+
1666
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
1667
+ background: url(../img/chevron_icon.png) no-repeat center;
1668
+ background-position: 0px 0px;
1669
+ }
1670
+
1671
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
1672
+ background: url(../img/chevron_icon.png) no-repeat center;
1673
+ background-position: -10px -16px;
1674
+ }
1675
+
1676
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
1677
+ background: url(../img/chevron_icon.png) no-repeat center;
1678
+ background-position: -10px 0px;
1679
+ }
1680
+
1681
+ .tinvwl-content .widefat.products thead th.column-name,
1682
+ .tinvwl-content .widefat.products tbody td.column-name {
1683
+ /*width: 200px;*/
1684
+ width: 30%;
1685
+ }
1686
+
1687
+ .tinvwl-content .widefat.wishlists thead th.column-title,
1688
+ .tinvwl-content .widefat.wishlists tbody td.column-title {
1689
+ width: 45%;
1690
+ }
1691
+
1692
+ .tinvwl-content .widefat.users thead th.column-wishlist,
1693
+ .tinvwl-content .widefat.users tbody td.column-wishlist {
1694
+ width: 45%;
1695
+ }
1696
+
1697
+ .tinvwl-content .widefat.users thead th.column-name,
1698
+ .tinvwl-content .widefat.users tbody td.column-name {
1699
+ text-align: left;
1700
+ }
1701
+
1702
+ .tinvwl-content .widefat.users thead th.column-quantity,
1703
+ .tinvwl-content .widefat.users tbody td.column-quantity {
1704
+ width: 100px;
1705
+ }
1706
+
1707
+ .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-mobile {
1708
+ display: none;
1709
+ }
1710
+
1711
+ @media screen and (max-width: 1440px) {
1712
+ .tinvwl-content .widefat.products thead th.column-preference,
1713
+ .tinvwl-content .widefat.products tbody td.column-preference {
1714
+ width: 204px;
1715
+ min-width: 204px;
1716
+ }
1717
+ .tinvwl-content .widefat.wishlists thead th.column-preference,
1718
+ .tinvwl-content .widefat.wishlists tbody td.column-preference {
1719
+ width: 98px;
1720
+ min-width: 98px;
1721
+ }
1722
+
1723
+ .tinvwl-content .widefat.users thead th.column-preference,
1724
+ .tinvwl-content .widefat.users tbody td.column-preference {
1725
+ width: 60px;
1726
+ min-width: 60px;
1727
+ }
1728
+
1729
+ .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn.tinvwl-w-mobile {
1730
+ padding: 9px 12px;
1731
+ }
1732
+
1733
+ .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-mobile {
1734
+ display: inline;
1735
+ margin: 0;
1736
+ }
1737
+
1738
+ .tinvwl-content .widefat tbody td.column-preference .tinvwl-btn .tinvwl-full {
1739
+ display: none;
1740
+ }
1741
+ }
1742
+
1743
+ .tinvwl-content .widefat.products thead th.column-quantity span span {
1744
+ float: none;
1745
+ }
1746
+
1747
+ @media screen and (max-width: 1366px) and (min-width: 783px) {
1748
+ .tinvwl-content .widefat.products thead th.column-name,
1749
+ .tinvwl-content .widefat.products tbody td.column-name {
1750
+ /*width: 110px;*/
1751
+ /*min-width: 110px;*/
1752
+ }
1753
+
1754
+ .tinvwl-content .widefat tbody .column-name .product-image,
1755
+ .tinvwl-content .widefat tbody .column-name .product-title {
1756
+ display: block;
1757
+ }
1758
+
1759
+ .tinvwl-content .widefat tbody .column-name .product-title {
1760
+ padding-left: 0;
1761
+ }
1762
+
1763
+ .tinvwl-content .widefat.products thead th.column-preference,
1764
+ .tinvwl-content .widefat.products tbody td.column-preference {
1765
+ width: 103px;
1766
+ min-width: 103px;
1767
+ }
1768
+
1769
+ .tinvwl-content .widefat.products tbody td.column-preference > a {
1770
+ margin-right: 5px;
1771
+ }
1772
+
1773
+ .tinvwl-content .widefat tbody td.column-preference > a:nth-child(2n) {
1774
+ margin-right: 0;
1775
+ }
1776
+
1777
+ .tinvwl-content .widefat tbody td.column-preference > a:nth-child(n+3) {
1778
+ margin-top: 5px;
1779
+ }
1780
+
1781
+ .tinvwl-content .widefat thead th .tinvwl-full {
1782
+ display: none;
1783
+ }
1784
+ }
1785
+
1786
+ @media screen and (max-width: 1200px) and (min-width: 783px) {
1787
+ .tinvwl-content th.sortable a span,
1788
+ .tinvwl-content th.sorted a span {
1789
+ float: none;
1790
+ }
1791
+
1792
+ .tinvwl-content .widefat th.sortable > a,
1793
+ .tinvwl-content .widefat th.sorted > a {
1794
+ padding-left: 0;
1795
+ padding-right: 0;
1796
+ position: static;
1797
+ }
1798
+
1799
+ .tinvwl-content .widefat th.sortable > a .sorting-indicator,
1800
+ .tinvwl-content .widefat th.sorted > a .sorting-indicator {
1801
+ top: auto;
1802
+ bottom: 12px;
1803
+ left: 0;
1804
+ right: 0;
1805
+ margin-left: auto;
1806
+ margin-right: auto;
1807
+ }
1808
+
1809
+ .tinvwl-content .widefat th.sortable > a .sorting-indicator:before,
1810
+ .tinvwl-content .widefat th.sorted > a .sorting-indicator:before {
1811
+ left: -5px;
1812
+ }
1813
+
1814
+ .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1815
+ .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1816
+ margin-top: 12px;
1817
+ }
1818
+
1819
+ .tinvwl-content .widefat.wishlists thead th.column-title,
1820
+ .tinvwl-content .widefat.wishlists tbody td.column-title {
1821
+ width: 38%;
1822
+ }
1823
+ }
1824
+
1825
+ @media screen and (max-width: 782px) {
1826
+ .tinvwl-content .widefat th.tinvwl-has-info.sortable > a .sorting-indicator,
1827
+ .tinvwl-content .widefat th.tinvwl-has-info.sorted > a .sorting-indicator {
1828
+ margin-top: 0;
1829
+ }
1830
+
1831
+ .tinvwl-content .widefat.products tbody td.column-preference > a {
1832
+ margin-right: 5px;
1833
+ float: none;
1834
+ }
1835
+
1836
+ .tinvwl-content .widefat tbody .column-name .product-image,
1837
+ .tinvwl-content .widefat tbody .column-name .product-title {
1838
+ vertical-align: top;
1839
+ }
1840
+
1841
+ .tablenav .tablenav-pages {
1842
+ margin-bottom: 15px;
1843
+ }
1844
+
1845
+ .tinvwl-content .widefat thead th.column-primary {
1846
+ width: 100% !important;
1847
+ }
1848
+
1849
+ .tinvwl-content .widefat thead td.check-column + th.column-primary {
1850
+ width: 50% !important;
1851
+ }
1852
+
1853
+ .tinvwl-content .widefat.users thead td.check-column + th.column-primary {
1854
+ width: 100% !important;
1855
+ }
1856
+ }
1857
+
1858
+
1859
+ /* Tables */
1860
+
1861
+ .tinvwl-table {
1862
+ display: table;
1863
+ /*height: 100%;*/
1864
+ width: 100%;
1865
+ max-width: 100%;
1866
+ }
1867
+ .tinvwl-table.w-bg {
1868
+ background: #fff;
1869
+ overflow: hidden;
1870
+ -webkit-border-radius: 4px;
1871
+ -moz-border-radius: 4px;
1872
+ border-radius: 4px;
1873
+ }
1874
+ .tinvwl-table.w-shadow {
1875
+ -webkit-box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1876
+ box-shadow: 1px 1px 8px 0px rgba(170, 157, 137, 0.14);
1877
+ }
1878
+ .tinvwl-table.auto-width {
1879
+ width: auto;
1880
+ }
1881
+ .tinvwl-caption {
1882
+ display: table-caption;
1883
+ }
1884
+ .tinvwl-row {
1885
+ display: table-row;
1886
+ }
1887
+ .tinvwl-rows {
1888
+ display: table-row-group;
1889
+ }
1890
+ .tinvwl-cell {
1891
+ display: table-cell;
1892
+ vertical-align: middle;
1893
+ }
1894
+ .tinvwl-cell-2 {
1895
+ display: table-cell;
1896
+ vertical-align: middle;
1897
+ float: none;
1898
+ }
1899
+ .tinvwl-cell-3 {
1900
+ display: table-cell;
1901
+ vertical-align: top;
1902
+ float: none;
1903
+ }
1904
+
1905
+ .tinvwl-table.w-info > thead > tr > th:first-child,
1906
+ .tinvwl-table.w-info > tbody > tr > td:first-child {
1907
+ width: 67%;
1908
+ }
1909
+
1910
+ .tinvwl-table th,
1911
+ .tinvwl-table td {
1912
+ vertical-align: top;
1913
+ }
1914
+
1915
+ .tinvwl-table .tinvwl-inner.clearfix h3,
1916
+ .tinvwl-table .tinvwl-inner .clearfix h3,
1917
+ .tinvwl-table .tinvwl-inner.clearfix h4,
1918
+ .tinvwl-table .tinvwl-inner .clearfix h4 {
1919
+ float: left;
1920
+ }
1921
+
1922
+ .tinvwl-table .tinvwl-btn-wrap {
1923
+ float: right;
1924
+ }
1925
+
1926
+ .tinvwl-table.w-info thead > tr > th {
1927
+ text-align: left;
1928
+ }
1929
+
1930
+ .tinvwl-table.w-info thead > tr > th .tinvwl-info-wrap {
1931
+ font-weight: normal;
1932
+ }
1933
+
1934
+ .tinvwl-table > thead > tr > th {
1935
+ padding: 0 30px;
1936
+ }
1937
+
1938
+ .tinvwl-table > thead > tr > th:last-child {
1939
+ /*padding: 30px;*/
1940
+ }
1941
+
1942
+ .tinvwl-table .tinvwl-info {
1943
+ vertical-align: top;
1944
+ }
1945
+
1946
+ .tinvwl-table > thead > tr > .tinvwl-info .tinvwl-info-wrap {
1947
+ padding-bottom: 30px;
1948
+ }
1949
+
1950
+ .tinvwl-table tbody tr .tinvwl-inner h2 {
1951
+ font-size: 15px;
1952
+ color: #291C09;
1953
+ font-weight: 600;
1954
+ margin-bottom: 21px;
1955
+ }
1956
+
1957
+ .tinvwl-table > tbody > tr > .tinvwl-info .tinvwl-info-wrap {
1958
+ padding-bottom: 20px;
1959
+ }
1960
+
1961
+ .tinvwl-table > tbody > tr > td {
1962
+ padding: 0 30px;
1963
+ }
1964
+
1965
+ .tinvwl-table > tbody > tr > td:last-child {
1966
+ /*padding: 30px;*/
1967
+ }
1968
+
1969
+ .tinvwl-table thead > tr .tinvwl-inner {
1970
+ padding: 28px 0;
1971
+ margin-bottom: 30px;
1972
+ border-bottom: 2px solid rgba(219,219,219,.522);
1973
+ }
1974
+
1975
+ .tinvwl-table thead.tinwl-empty > tr .tinvwl-inner {
1976
+ padding: 30px 0 0;
1977
+ margin-bottom: 0;
1978
+ border-bottom: 0;
1979
+ }
1980
+
1981
+ .tinvwl-table thead > tr .tinvwl-inner {
1982
+ /*padding: 20px 0;*/
1983
+ }
1984
+
1985
+ .tinvwl-table .tinvwl-header-row label {
1986
+ font-size: 22px;
1987
+ font-weight: normal;
1988
+ line-height: 1.313;
1989
+ margin: 0 0 15px;
1990
+ }
1991
+
1992
+ .tinvwl-table .tinvwl-header-row label {
1993
+ padding-top: 3px !important;
1994
+ }
1995
+
1996
+ .tinvwl-table thead .tinvwl-empty-info,
1997
+ .tinvwl-table tbody > .tinvwl-bodies-border {
1998
+ display: none;
1999
+ }
2000
+
2001
+ .tinvwl-table thead .tinvwl-empty-info .tinvwl-inner {
2002
+ margin: 0;
2003
+ padding-top: 56px;
2004
+ }
2005
+
2006
+ .tinvwl-bodies-border .tinvwl-info .tinvwl-inner {
2007
+ display: none;
2008
+ padding-top: 30px;
2009
+ margin-top: 10px;
2010
+ border-top: 2px solid rgba(219,219,219,.522);
2011
+ }
2012
+
2013
+ .tinvwl-style-options .tinvwl-table thead th:first-child,
2014
+ .tinvwl-style-options .tinvwl-bodies-border td:first-child {
2015
+ /*padding-right: 0;*/
2016
+ }
2017
+
2018
+ .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info,
2019
+ .tinvwl-style-options .tinvwl-bodies-border .tinvwl-info {
2020
+ padding-left: 0;
2021
+ background: none;
2022
+ }
2023
+
2024
+ .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info {
2025
+ display: table-cell;
2026
+ }
2027
+
2028
+ .tinvwl-style-options .tinvwl-table thead .tinvwl-empty-info .tinvwl-inner,
2029
+ .tinvwl-style-options tbody + tbody > .tinvwl-bodies-border .tinvwl-info .tinvwl-inner {
2030
+ display: block;
2031
+ }
2032
+
2033
+ @media (min-width: 1200px) {
2034
+ .tinvwl-style-options .tinvwl-table .tinvwl-inner .form-horizontal {
2035
+ width: 67%;
2036
+ }
2037
+ }
2038
+
2039
+ textarea[name="style_plain-css"] {
2040
+ height: 150px;
2041
+ }
2042
+
2043
+ .tinvwl-table tbody + tbody > .tinvwl-bodies-border {
2044
+ display: table-row;
2045
+ }
2046
+
2047
+ .tinvwl-table tbody + tbody > .tinvwl-bodies-border:first-child > td:first-child > .tinvwl-inner {
2048
+ padding-top: 30px;
2049
+ margin-top: 10px;
2050
+ border-top: 2px solid rgba(219,219,219,.522);
2051
+ }
2052
+
2053
+ .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner {
2054
+ padding-bottom: 15px;
2055
+ margin-bottom: 30px;
2056
+ border-bottom: 2px solid rgba(219,219,219,.522);
2057
+ }
2058
+
2059
+ .tinvwl-table .form-group .col-md-4:nth-child(n+4),
2060
+ .tinvwl-table .form-group .col-lg-4:nth-child(n+4) {
2061
+ padding-top: 27px;
2062
+ }
2063
+
2064
+ .tinvwl-table tbody:first-of-type > tr:first-child > td:first-child > .tinvwl-inner {
2065
+ /*padding-top: 30px;*/
2066
+ }
2067
+
2068
+ .tinvwl-table tbody:last-of-type > tr:last-child > td:first-child > .tinvwl-inner {
2069
+ /*padding-bottom: 20px;*/
2070
+ }
2071
+
2072
+ .tinvwl-table tfoot .tinvwl-inner {
2073
+ padding-top: 20px;
2074
+ }
2075
+
2076
+ /*.tinvwl-table tbody > tr .tinvwl-inner,
2077
+ .tinvwl-table tbody > tr .tinvwl-info-wrap {
2078
+ padding: 30px 0;
2079
+ }*/
2080
+
2081
+ .tinvwl-table tbody > tr + tr .tinvwl-inner {
2082
+ /*border-top: 2px solid rgba(219,219,219,.522);*/
2083
+ }
2084
+
2085
+ .tinvwl-table tr.no-top-border .tinvwl-inner,
2086
+ .tinvwl-table tr.no-top-border .tinvwl-info-wrap {
2087
+ border-top: 0;
2088
+ padding-top: 0;
2089
+ }
2090
+
2091
+ /*.tinvwl-table tbody:first-of-type > tr:first-child > td > .tinvwl-info-wrap,*/
2092
+ .tinvwl-table thead .w-bg-grey .tinvwl-info-wrap {
2093
+ padding-top: 30px;
2094
+ }
2095
+
2096
+ .tiwl-notifications-style-logo img {
2097
+ height: 42px;
2098
+ }
2099
+
2100
+ @media (min-width: 1200px) {
2101
+ .tinvwl-table tr.tinvwl-full-width .control-label label {
2102
+ margin-bottom: 10px;
2103
+ }
2104
+ .tinvwl-table tr.tinvwl-full-width [class^="col-lg-"],
2105
+ .tinvwl-table tr.tinvwl-full-width [class^="col-md-"] {
2106
+ width: 100%;
2107
+ }
2108
+
2109
+ .tinvwl-table tr.tinvwl-full-width textarea {
2110
+ height: 250px;
2111
+ padding: 15px;
2112
+ }
2113
+
2114
+ .tiwl-notifications-style-logo img {
2115
+ float: right;
2116
+ }
2117
+ }
2118
+
2119
+ @media (max-width: 1199px) {
2120
+ .form-horizontal .control-label .tinvwl-empty {
2121
+ display: none;
2122
+ }
2123
+
2124
+ .tinvwl-style-options .tinvwl-empty-info,
2125
+ .tinvwl-style-options .tinvwl-info {
2126
+ display: none !important;
2127
+ }
2128
+
2129
+ .tinvwl-style-options .tinvwl-table thead th:first-child,
2130
+ .tinvwl-style-options .tinvwl-bodies-border td:first-child {
2131
+ padding-right: 30px !important;
2132
+ }
2133
+
2134
+ .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner {
2135
+ padding-bottom: 0;
2136
+ }
2137
+
2138
+ .tinvwl-table .tinvwl-header-row.tinvwl-line-border .tinvwl-inner .form-group {
2139
+ margin-bottom: 20px;
2140
+ }
2141
+ }
2142
+
2143
+ .tinvwl-info .tinvwl-info-desc a {
2144
+ text-decoration: underline;
2145
+ color: #ff5739;
2146
+ }
2147
+
2148
+ .tinvwl-info .tinvwl-info-desc a:hover,
2149
+ .tinvwl-info .tinvwl-info-desc a:active,
2150
+ .tinvwl-info .tinvwl-info-desc a:focus {
2151
+ color: #000;
2152
+ }
2153
+
2154
+ .tinvwl-info-wrap.tinvwl-in-section {
2155
+ background: #fbfaf9;
2156
+ color: #4f4639;
2157
+ }
2158
+
2159
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign {
2160
+ width: 42px;
2161
+ vertical-align: top;
2162
+ padding-top: 1px;
2163
+ padding-right: 20px;
2164
+ }
2165
+
2166
+ .tinvwl-info-wrap .tinvwl-info-sign span,
2167
+ .tinvwl-info-wrap .tinvwl-info-sign .tinvwl-help {
2168
+ display: inline-block;
2169
+ text-align: center;
2170
+ width: 22px;
2171
+ height: 22px;
2172
+ line-height: 22px;
2173
+ -webkit-border-radius: 50%;
2174
+ -moz-border-radius: 50%;
2175
+ border-radius: 50%;
2176
+ background: #e1dbce;
2177
+ }
2178
+
2179
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign span,
2180
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign .tinvwl-help {
2181
+ display: block;
2182
+ }
2183
+
2184
+ .tinvwl-info-wrap i {
2185
+ font-size: 14px;
2186
+ color: #fbfaf9;
2187
+ }
2188
+
2189
+ .tinvwl-panel:not(.only-button) .tinvwl-table .col-lg-6 > .tinvwl-btn {
2190
+ width: auto;
2191
+ }
2192
+
2193
+ .tinvwl-btns-group {
2194
+ margin-bottom: 23px;
2195
+ margin-top: -15px;
2196
+ margin-right: -15px;
2197
+ }
2198
+
2199
+ .tiwl-style-custom-allow .tinvwl-inner textarea {
2200
+ margin-bottom: 23px;
2201
+ }
2202
+
2203
+ .tinvwl-btns-group .tinvwl-btn {
2204
+ margin-top: 15px;
2205
+ margin-right: 15px;
2206
+ }
2207
+
2208
+ .tinvwl-btns-group .tinvwl-btn {
2209
+ float: left;
2210
+ }
2211
+
2212
+ @media (min-width: 1200px) {
2213
+ .tinvwl-table .tinvwl-form-onoff,
2214
+ .tinvwl-panel:not(.only-button) .tinvwl-table .col-lg-6 > .tinvwl-btn {
2215
+ float: right;
2216
+ }
2217
+
2218
+ .tinvwl-btns-group .tinvwl-btn {
2219
+ float: right;
2220
+ }
2221
+ }
2222
+
2223
+ .tinvwl-table .tinvwl-info .tinvwl-info-wrap.tinvwl-in-section .tinvwl-help {
2224
+ display: none;
2225
+ }
2226
+
2227
+ .tinvwl-info-wrap.tinvwl-in-table {
2228
+ display: inline-block;
2229
+ vertical-align: middle;
2230
+ display: block;
2231
+ margin-bottom: 5px;
2232
+ }
2233
+
2234
+ .tinvwl-info-wrap.tinvwl-in-table .tinvwl-help {
2235
+ cursor: pointer;
2236
+ }
2237
+
2238
+ .tinvwl-content .widefat th.tinvwl-has-info {
2239
+ /*word-break: break-all;*/
2240
+ }
2241
+
2242
+ .tinvwl-content .widefat th.tinvwl-has-info .tinvwl-col-name {
2243
+ margin-right: 5px;
2244
+ }
2245
+
2246
+ .tinvwl-info-wrap.tinvwl-in-table .tinvwl-info-desc {
2247
+ display: none;
2248
+ }
2249
+
2250
+ @media (max-width: 1200px) {
2251
+ .tinvwl-table .tinvwl-info {
2252
+ padding-left: 15px;
2253
+ padding-right: 15px;
2254
+ /*vertical-align: middle;*/
2255
+ }
2256
+
2257
+ .tinvwl-table.w-info > thead > tr > th:first-child,
2258
+ .tinvwl-table.w-info > tbody > tr > td:first-child {
2259
+ width: 90%;
2260
+ }
2261
+
2262
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign {
2263
+ width: auto;
2264
+ padding-right: 0;
2265
+ }
2266
+
2267
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign span {
2268
+ display: none;
2269
+ }
2270
+
2271
+ .tinvwl-table .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-sign .tinvwl-help {
2272
+ display: block;
2273
+ margin: 0 auto;
2274
+ }
2275
+
2276
+ .tinvwl-info-wrap.tinvwl-in-section .tinvwl-info-desc {
2277
+ display: none;
2278
+ }
2279
+ }
2280
+
2281
+ @media (max-width: 782px) {
2282
+ .tinvwl-content .widefat th.tinvwl-has-info.sortable,
2283
+ .tinvwl-content .widefat th.tinvwl-has-info.sorted {
2284
+ padding-top: 0;
2285
+ }
2286
+
2287
+ .widefat tfoot td input[type=checkbox],
2288
+ .widefat th input[type=checkbox],
2289
+ .widefat thead td input[type=checkbox] {
2290
+ margin-bottom: 0;
2291
+ }
2292
+
2293
+ .tinvwl-content .widefat th.sortable > a,
2294
+ .tinvwl-content .widefat th.sorted > a,
2295
+ .tinvwl-content .widefat th.sortable.tinvwl-has-info > a,
2296
+ .tinvwl-content .widefat th.sorted.tinvwl-has-info > a {
2297
+ padding-top: 18px;
2298
+ padding-bottom: 18px;
2299
+ }
2300
+
2301
+ .tinvwl-content .widefat thead td.check-column,
2302
+ .tinvwl-content .widefat tbody th.check-column {
2303
+ padding-top: 14px;
2304
+ padding-bottom: 15px;
2305
+ padding-left: 20px;
2306
+ width: 45px;
2307
+ }
2308
+
2309
+ .tinvwl-content .widefat tbody th.check-column {
2310
+ padding-top: 11px;
2311
+ padding-bottom: 11px;
2312
+ vertical-align: top;
2313
+ }
2314
+
2315
+ .tinvwl-content .widefat.wishlists thead td.check-column,
2316
+ .tinvwl-content .widefat.wishlists tbody th.check-column {
2317
+ width: 23px;
2318
+ }
2319
+
2320
+ .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > a,
2321
+ .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > a,
2322
+ .tinvwl-content .widefat thead td.check-column + th,
2323
+ .tinvwl-content .widefat tbody th.check-column + td {
2324
+ padding-left: 10px;
2325
+ }
2326
+
2327
+ .tinvwl-content .widefat thead td.check-column + th.sortable:first-of-type > .tinvwl-info-wrap.tinvwl-in-table,
2328
+ .tinvwl-content .widefat thead td.check-column + th.sorted:first-of-type > .tinvwl-info-wrap.tinvwl-in-table {
2329
+ padding-left: 13px;
2330
+ display: inline-block;
2331
+ margin-top: 5px;
2332
+ margin-bottom: 0;
2333
+ }
2334
+
2335
+ .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
2336
+ text-align: left;
2337
+ }
2338
+
2339
+ .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column) {
2340
+ text-align: right;
2341
+ padding-right: 30px;
2342
+ }
2343
+
2344
+ .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.column-primary)::before {
2345
+ left: 28px;
2346
+ }
2347
+
2348
+ .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.check-column + td:not(.column-primary)::before {
2349
+ left: 13px;
2350
+ }
2351
+
2352
+ .wp-list-table tr:not(.inline-edit-row):not(.no-items) td.column-primary~td:not(.check-column):last-child {
2353
+ padding-bottom: 13px;
2354
+ }
2355
+ }
2356
+
2357
+ /* Popover */
2358
+
2359
+ .popover {
2360
+ position: absolute;
2361
+ top: 0;
2362
+ left: 0;
2363
+ z-index: 9999;
2364
+ display: none;
2365
+ max-width: 279px;
2366
+ padding: 1px;
2367
+ text-align: center;
2368
+ white-space: normal;
2369
+ background-color: #fff;
2370
+ -webkit-background-clip: padding-box;
2371
+ background-clip: padding-box;
2372
+ border-radius: 6px;
2373
+ -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.22);
2374
+ box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.22);
2375
+ }
2376
+ .popover.top {
2377
+ margin-top: -10px;
2378
+ }
2379
+ .popover.right {
2380
+ margin-left: 10px;
2381
+ }
2382
+ .popover.bottom {
2383
+ margin-top: 10px;
2384
+ }
2385
+ .popover.left {
2386
+ margin-left: -10px;
2387
+ }
2388
+ .popover-title {
2389
+ padding: 30px 30px 0;
2390
+ margin: 0;
2391
+ font-family: 'Open Sans', Arial, sans-serif;
2392
+ font-size: 14px;
2393
+ font-weight: 600;
2394
+ line-height: 1.714;
2395
+ text-transform: uppercase;
2396
+ letter-spacing: -.35px;
2397
+ }
2398
+ .popover-content {
2399
+ padding: 25px 30px 30px;
2400
+ color: #5D5D5D;
2401
+ font-family: Arial, sans-serif;
2402
+ font-size: 14px;
2403
+ line-height: 1.429;
2404
+ }
2405
+ .popover > .arrow,
2406
+ .popover > .arrow:after {
2407
+ position: absolute;
2408
+ display: block;
2409
+ width: 0;
2410
+ height: 0;
2411
+ border-color: transparent;
2412
+ border-style: solid;
2413
+ }
2414
+ .popover > .arrow {
2415
+ border-width: 11px;
2416
+ margin-left: 0;
2417
+ overflow: visible;
2418
+ }
2419
+ .popover > .arrow:after {
2420
+ content: none;
2421
+ z-index: 9999;
2422
+ background: none;
2423
+ -webkit-box-shadow: none;
2424
+ box-shadow: none;
2425
+ position: absolute;
2426
+ left: auto;
2427
+ top: auto;
2428
+ width: auto;
2429
+ height: auto;
2430
+ -webkit-transform: none;
2431
+ -ms-transform: none;
2432
+ transform: none;
2433
+ }
2434
+ .popover > .arrow:after {
2435
+ content: "";
2436
+ border-width: 10px;
2437
+ }
2438
+ .popover.top > .arrow {
2439
+ bottom: -11px;
2440
+ left: 50%;
2441
+ margin-left: -11px;
2442
+ border-bottom-width: 0;
2443
+ }
2444
+ .popover.top > .arrow:after {
2445
+ bottom: 1px;
2446
+ margin-left: -10px;
2447
+ content: " ";
2448
+ border-top-color: #fff;
2449
+ border-bottom-width: 0;
2450
+ }
2451
+ .popover.right > .arrow {
2452
+ top: 50%;
2453
+ left: -11px;
2454
+ margin-top: -11px;
2455
+ border-left-width: 0;
2456
+ }
2457
+ .popover.right > .arrow:after {
2458
+ bottom: -10px;
2459
+ left: 1px;
2460
+ content: " ";
2461
+ border-right-color: #fff;
2462
+ border-left-width: 0;
2463
+ }
2464
+ .popover.bottom > .arrow {
2465
+ top: -11px;
2466
+ left: 50%;
2467
+ margin-left: -11px;
2468
+ border-top-width: 0;
2469
+ }
2470
+ .popover.bottom > .arrow:after {
2471
+ top: 1px;
2472
+ margin-left: -10px;
2473
+ content: " ";
2474
+ border-top-width: 0;
2475
+ border-bottom-color: #fff;
2476
+ }
2477
+ .popover.left > .arrow {
2478
+ top: 50%;
2479
+ left: auto;
2480
+ right: -11px;
2481
+ margin-top: -11px;
2482
+ border-right-width: 0;
2483
+ }
2484
+ .popover.left > .arrow:after {
2485
+ left: auto;
2486
+ right: 1px;
2487
+ bottom: -10px;
2488
+ content: " ";
2489
+ border-right-width: 0;
2490
+ border-left-color: #fff;
2491
+ }
2492
+
2493
+
2494
+ /* Image w/description */
2495
+
2496
+ .tinvwl-img-w-desc i{
2497
+
2498
+ margin-right: 20px;
2499
+ }
2500
+
2501
+ .tinvwl-img-w-desc h5 {
2502
+ font-weight: 600;
2503
+ text-transform: uppercase;
2504
+ }
2505
+
2506
+ .tinvwl-img-w-desc .tinvwl-desc {
2507
+ color: #4f4639;
2508
+ }
2509
+
2510
+ .tinvwl-img-w-desc h5 + .tinvwl-desc {
2511
+ margin-top: 2px;
2512
+ }
2513
+
2514
+
2515
+ /* Premium Features */
2516
+
2517
+ .tinvwl-premium-feat h2 {
2518
+ font-size: 48px;
2519
+ text-transform: uppercase;
2520
+ letter-spacing: -.025em;
2521
+ line-height: 1;
2522
+ color: #3e3e3e;
2523
+ }
2524
+
2525
+ .tinvwl-premium-feat h3 {
2526
+ font-size: 16px;
2527
+ font-weight: 600;
2528
+ text-transform: uppercase;
2529
+ letter-spacing: -.025em;
2530
+ color: #50504f;
2531
+ }
2532
+
2533
+ .tinvwl-premium-feat .tinvwl-feat-col-inner {
2534
+ padding: 40px;
2535
+ }
2536
+
2537
+ .tinvwl-premium-feat .tinvwl-pic-col .tinvwl-feat-col-inner {
2538
+ text-align: center;
2539
+ padding-left: 22px;
2540
+ padding-right: 22px;
2541
+ }
2542
+
2543
+ .tinvwl-premium-feat .tinvwl-pic-col img {
2544
+ display: block;
2545
+ margin: 0 auto;
2546
+ }
2547
+
2548
+ .tinvwl-premium-feat .tinvwl-pic-col .tinvwl-btn {
2549
+ margin-top: -35px;
2550
+ }
2551
+
2552
+ .tinvwl-premium-feat .tinvwl-features {
2553
+ margin-top: 28px;
2554
+ }
2555
+
2556
+ .tinvwl-premium-feat .tinvwl-features li i {
2557
+ color: #96b100;
2558
+ margin-right: 15px;
2559
+ }
2560
+
2561
+ .tinvwl-premium-feat .tinvwl-features li span {
2562
+ text-decoration: underline;
2563
+ }
2564
+
2565
+ .tinvwl-premium-feat .tinvwl-features li + li {
2566
+ margin-top: 14px;
2567
+ }
2568
+
2569
+ .tinvwl-premium-feat .tinvwl-img-w-desc + .tinvwl-img-w-desc {
2570
+ margin-top: 15px;
2571
+ }
2572
+
2573
+ .tinvwl-premium-feat .tinvwl-sup-col .tinvwl-feat-col-inner > .tinvwl-desc {
2574
+ line-height: 1.71428571;
2575
+ text-align: center;
2576
+ margin-top: 23px;
2577
+ }
2578
+
2579
+ .tinvwl-premium-feat .tinvwl-sup-col .tinvwl-feat-col-inner > .tinvwl-desc a {
2580
+ display: inline-block;
2581
+ text-decoration: underline;
2582
+ margin-top: 26px;
2583
+ color: #000;
2584
+ }
2585
+
2586
+
2587
+ /* Footer */
2588
+
2589
+ #wpfooter {
2590
+ padding: 10px 40px;
2591
+ }
2592
+
2593
+ #wpfooter p {
2594
+ font-family: "Open Sans", "Helvetica Neue", sans-serif;
2595
+ font-size: 14px;
2596
+ line-height: 1.85714286;
2597
+ color: #4b4b4b;
2598
+ }
2599
+
2600
+ #wpfooter .fa-heart {
2601
+ margin: 0 3px;
2602
+ }
2603
+
2604
+ #wpfooter .fa-star {
2605
+ font-size: 12px;
2606
+ margin: 0 1px;
2607
+ }
2608
+
2609
+ #wpfooter span .fa-star:first-of-type {
2610
+ margin-left: 6px;
2611
+ }
2612
+
2613
+ #wpfooter span .fa-star:last-of-type {
2614
+ margin-left: 3px;
2615
+ }
2616
+
2617
+ #wpfooter i {
2618
+ color: #ff5739;
2619
+ }
2620
+
2621
+ #wpfooter a {
2622
+ text-decoration: underline;
2623
+ color: #ff5739;
2624
+ }
2625
+
2626
+ #wpfooter a:hover,
2627
+ #wpfooter a:active,
2628
+ #wpfooter a:focus {
2629
+ color: #000;
2630
+ }
2631
+
2632
+
2633
+ /* Color Picker */
2634
+
2635
+ .tinvwl-color-picker {
2636
+ position: relative;
2637
+ }
2638
+
2639
+ .tinvwl-color-picker .iris-picker {
2640
+ position: absolute;
2641
+ z-index: 9999;
2642
+ }
2643
+
2644
+ .tinvwl-color-picker input[type=text] {
2645
+ color: #fff;
2646
+ border: 4px solid #fff;
2647
+ box-shadow: 0px 0px 0px 1px rgba(0,0,0,.14);
2648
+ }
2649
+
2650
+ .tinvwl-color-picker .tinvwl-eyedropper {
2651
+ cursor: pointer;
2652
+ position: relative;
2653
+ display: inline-block;
2654
+ vertical-align: top;
2655
+ margin-left: 4px;
2656
+ width: 42px;
2657
+ height: 42px;
2658
+ background: #fff url(../img/color_icon.png) no-repeat center;
2659
+ border: 1px solid rgba(0,0,0,.14);
2660
+ border-radius: 2px;
2661
+ box-shadow: 1px 2px 4px 0px rgba(0, 0, 0, 0.1);
2662
+ }
2663
+
2664
+ .tinvwl-color-picker .tinvwl-eyedropper a {
2665
+ color: #6b625a;
2666
+ }
2667
+
2668
+ .tinvwl-color-picker .tinvwl-eyedropper.tinvwl-active {
2669
+ }
2670
+
2671
+ .tinvwl-color-picker .tinvwl-eyedropper i {
2672
+ display: inline-block;
2673
+ position: absolute;
2674
+ top: 15px;
2675
+ left: 14px;
2676
+ font-size: 12px;
2677
+ }
2678
+
2679
+ .tinvwl-color-picker + .iris-picker .iris-square-value {
2680
+ width: 0;
2681
+ height: 0;
2682
+ }
2683
+
2684
+
2685
+ /* Modal */
2686
+
2687
+ .tinvwl-overlay {
2688
+ position: fixed;
2689
+ top: 0;
2690
+ left: 0;
2691
+ width: 100%;
2692
+ height: 100%;
2693
+ visibility: hidden;
2694
+ opacity: 0;
2695
+
2696
+ -webkit-transition: opacity .3s ease, visibility .3s ease;
2697
+ -moz-transition: opacity .3s ease, visibility .3s ease;
2698
+ -o-transition: opacity .3s ease, visibility .3s ease;
2699
+ transition: opacity .3s ease, visibility .3s ease;
2700
+
2701
+ background: #191919;
2702
+ }
2703
+
2704
+ .tinvwl-modal.tinvwl-modal-open .tinvwl-overlay {
2705
+ visibility: visible;
2706
+ opacity: .5;
2707
+ }
2708
+
2709
+ .admin-bar .tinvwl-content .tinvwl-modal {
2710
+ padding-top: 32px !important;
2711
+ }
2712
+
2713
+ .tinvwl-content .tinvwl-modal .tinvwl-modal-inner {
2714
+ position: relative;
2715
+ margin: 0 auto;
2716
+ background: #fff;
2717
+ -webkit-border-radius: 4px;
2718
+ -moz-border-radius: 4px;
2719
+ border-radius: 4px;
2720
+ }
2721
+
2722
+ .tinvwl-content .tinvwl-modal {
2723
+ overflow-y: auto;
2724
+ overflow-x: hidden;
2725
+ top: 0;
2726
+ left: 0;
2727
+ width: 0;
2728
+ height: 0;
2729
+ z-index: 9999;
2730
+ position: fixed;
2731
+ outline: none !important;
2732
+ -webkit-backface-visibility: hidden;
2733
+ visibility: hidden;
2734
+ opacity: 0;
2735
+ text-align: left;
2736
+
2737
+ -webkit-transition: opacity .3s ease, visibility .3s ease;
2738
+ -moz-transition: opacity .3s ease, visibility .3s ease;
2739
+ -o-transition: opacity .3s ease, visibility .3s ease;
2740
+ transition: opacity .3s ease, visibility .3s ease;
2741
+ }
2742
+
2743
+ .tinvwl-content .tinvwl-modal.tinvwl-modal-open {
2744
+ visibility: visible;
2745
+ opacity: 1;
2746
+ width: 100%;
2747
+ height: 100%;
2748
+ }
2749
+
2750
+ @media screen and (max-width: 782px) {
2751
+ .admin-bar .tinvwl-content .tinvwl-modal {
2752
+ padding-top: 46px !important;
2753
+ }
2754
+ }
2755
+
2756
+ @media screen and (max-width: 600px) {
2757
+ .admin-bar .tinvwl-content .tinvwl-modal {
2758
+ padding-top: 0 !important;
2759
+ }
2760
+ }
2761
+
2762
+ .tinvwl-modal .tinvwl-table {
2763
+ height: 100%;
2764
+ }
2765
+
2766
+ .tinvwl-content .tinvwl-modal .tinvwl-modal-inner {
2767
+ max-width: 415px;
2768
+ padding: 40px 45px;
2769
+ }
2770
+
2771
+ .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails {
2772
+ text-align: center;
2773
+ }
2774
+
2775
+ .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails p {
2776
+ margin: 0 0 26px;
2777
+ }
2778
+
2779
+ .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails .tinvwl-btn.large {
2780
+ padding: 14px 33px;
2781
+ }
2782
+
2783
+ .tinvwl-content .tinvwl-modal.tinvwl-send-promo-emails .tinvwl-btn + .tinvwl-btn {
2784
+ margin-left: 6px;
2785
+ }
2786
+
2787
+
2788
+ /* Quick Buttons */
2789
+
2790
+ .tinvwl-quick-btns {
2791
+ position: fixed;
2792
+ top: 25%;
2793
+ left: 100%;
2794
+ z-index: 9999;
2795
+ }
2796
+
2797
+ .tinvwl-quick-btns button {
2798
+ display: block;
2799
+ width: 117px;
2800
+ font-size: 14px;
2801
+ font-family: "Open Sans", Arial, sans-serif;
2802
+ font-weight: 600;
2803
+ padding: 0 35px 0 0;
2804
+ -webkit-border-radius: 2px;
2805
+ -moz-border-radius: 2px;
2806
+ border-radius: 2px;
2807
+ border: none;
2808
+ text-decoration: none;
2809
+ background: #96b100;
2810
+ color: #ffffff;
2811
+
2812
+ -webkit-transform: translateX(-50px);
2813
+ -moz-transform: translateX(-50px);
2814
+ -o-transform: translateX(-50px);
2815
+ transform: translateX(-50px);
2816
+
2817
+ -webkit-transition: transform .3s ease;
2818
+ -moz-transition: transform .3s ease;
2819
+ -o-transition: transform .3s ease;
2820
+ transition: transform .3s ease;
2821
+ }
2822
+
2823
+ .tinvwl-panel.only-button .tinvwl-quick-btns .form-control {
2824
+ display: block;
2825
+ width: 119px;
2826
+ }
2827
+
2828
+ .tinvwl-quick-btns button:hover {
2829
+ -webkit-transform: translateX(-100%);
2830
+ -moz-transform: translateX(-100%);
2831
+ -o-transform: translateX(-100%);
2832
+ transform: translateX(-100%);
2833
+ }
2834
+
2835
+ .tinvwl-quick-btns button + button {
2836
+ margin-top: 4px;
2837
+ }
2838
+
2839
+ .tinvwl-quick-btns button span {
2840
+ display: inline-block;
2841
+ width: 50px;
2842
+ padding: 15px 0;
2843
+ text-align: center;
2844
+ }
2845
+
2846
+
2847
+ /* Preview Select */
2848
+
2849
+ @media (min-width: 1200px) {
2850
+ .tinvwl-empty-select + .input-group-btn {
2851
+ text-align: right;
2852
+ }
2853
+ }
2854
+
2855
+ .tinvwl-empty-select + .input-group-btn .tinvwl-btn {
2856
+ margin-left: 0;
2857
+ }
2858
+
2859
+
2860
+ /* Bootstrap */
2861
+
2862
+ .container {
2863
+ /*padding-right: 15px;
2864
+ padding-left: 15px;*/
2865
+ margin-right: auto;
2866
+ margin-left: auto;
2867
+ }
2868
+ @media (min-width: 768px) {
2869
+ .container {
2870
+ width: 750px;
2871
+ }
2872
+ }
2873
+ @media (min-width: 992px) {
2874
+ .container {
2875
+ width: 970px;
2876
+ }
2877
+ }
2878
+ @media (min-width: 1200px) {
2879
+ .container {
2880
+ width: 1170px;
2881
+ }
2882
+ }
2883
+ .container-fluid {
2884
+ /*padding-right: 15px;
2885
+ padding-left: 15px;*/
2886
+ margin-right: auto;
2887
+ margin-left: auto;
2888
+ }
2889
+ .row {
2890
+ margin-right: -15px;
2891
+ margin-left: -15px;
2892
+ }
2893
+ .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
2894
+ position: relative;
2895
+ min-height: 1px;
2896
+ padding-right: 15px;
2897
+ padding-left: 15px;
2898
+ }
2899
+
2900
+ .tinvwl-table .form-group .row {
2901
+ /*margin-left: -5px;*/
2902
+ /*margin-right: -5px;*/
2903
+ }
2904
+
2905
+ .tinvwl-table .form-group [class^="col-"] {
2906
+ /*padding-right: 5px;*/
2907
+ /*padding-left: 5px;*/
2908
+ }
2909
+
2910
+ .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
2911
+ float: left;
2912
+ }
2913
+ .col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}
2914
+ @media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}
2915
+ @media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}
2916
+ @media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}
2917
+
2918
+ @media (max-width: 1199px) {
2919
+ .tinvwl-table .row > [class^="col-md-"] + [class^="col-md-"],
2920
+ .tinvwl-table .row > [class^="col-lg-"] + [class^="col-lg-"] {
2921
+ padding-top: 30px;
2922
+ }
2923
+ .tinvwl-table .form-group > [class^="col-md-"] + [class^="col-md-"],
2924
+ .tinvwl-table .form-group > [class^="col-lg-"] + [class^="col-lg-"] {
2925
+ padding-top: 30px;
2926
+ }
2927
+ }
2928
+
2929
+ .fade {
2930
+ opacity: 0;
2931
+ -webkit-transition: opacity .15s linear;
2932
+ -o-transition: opacity .15s linear;
2933
+ transition: opacity .15s linear;
2934
+ }
2935
+ .fade.in {
2936
+ opacity: 1;
2937
+ }
2938
+
2939
+ .form-horizontal .form-group {
2940
+ margin-right: -15px;
2941
+ margin-left: -15px;
2942
+ }
2943
+
2944
+ .form-group {
2945
+ margin-bottom: 23px;
2946
+ }
2947
+
2948
+ .form-horizontal:last-of-type .form-group {
2949
+ /*margin-bottom: 0;*/
2950
+ }
2951
+
2952
+ .tinvwl-inner .form-group + .form-group > label {
2953
+ /*margin-top: 7px;*/
2954
+ }
2955
+
2956
+ .form-control {
2957
+ display: block;
2958
+ width: 100%;
2959
+ }
2960
+
2961
+ label.one-line {
2962
+ display: inline-block;
2963
+ margin-bottom: 0;
2964
+ margin-right: 10px;
2965
+ }
2966
+
2967
+ .control-label label {
2968
+ display: block;
2969
+ margin-bottom: 10px;
2970
+ }
2971
+
2972
+ .form-horizontal .control-label label {
2973
+ padding-top: 9px;
2974
+ margin-bottom: 0;
2975
+ }
2976
+
2977
+ @media (min-width: 1200px) {
2978
+ .tinvwl-table .tinvwl-header-row label {
2979
+ margin-bottom: 0;
2980
+ }
2981
+
2982
+ .tinvwl-table .tinvwl-header-row .form-group {
2983
+ margin-top: -7px;
2984
+ margin-bottom: 13px;
2985
+ }
2986
+ }
2987
+
2988
+ @media (max-width: 1199px) {
2989
+ .form-horizontal .control-label label {
2990
+ margin-bottom: 10px;
2991
+ }
2992
+
2993
+ .tinvwl-table .tinvwl-header-row label {
2994
+ padding-top: 3px;
2995
+ }
2996
+ }
2997
+
2998
+ .input-group-btn {
2999
+ margin-top: 13px;
3000
+ }
3001
+
3002
+ .input-group {
3003
+ position: relative;
3004
+ display: table;
3005
+ border-collapse: separate;
3006
+ }
3007
+
3008
+ .input-group-addon,
3009
+ .input-group-btn {
3010
+ width: 1%;
3011
+ white-space: nowrap;
3012
+ vertical-align: middle;
3013
+ }
3014
+
3015
+ .input-group-btn {
3016
+ margin-top: 0;
3017
+ position: relative;
3018
+ white-space: nowrap;
3019
+ }
3020
+
3021
+ .input-group-btn .tinvwl-btn {
3022
+ margin-left: 10px;
3023
+ }
3024
+
3025
+ .input-group-btn > .btn {
3026
+ position: relative;
3027
+ }
3028
+
3029
+ .input-group .form-control,
3030
+ .input-group-addon,
3031
+ .input-group-btn {
3032
+ display: table-cell;
3033
+ }
3034
+
3035
+ .input-group .form-control {
3036
+ position: relative;
3037
+ z-index: 2;
3038
+ float: left;
3039
+ width: 100%;
3040
+ margin-bottom: 0;
3041
+ }
3042
+
3043
+ @media only screen and (max-width: 1199px) {
3044
+ .input-group:not(.tinvwl-no-full) {
3045
+ display: block;
3046
+ }
3047
+
3048
+ .input-group:not(.tinvwl-no-full) .form-control {
3049
+ float: none;
3050
+ }
3051
+
3052
+ .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn {
3053
+ padding-top: 10px;
3054
+ padding-left: 0;
3055
+ }
3056
+
3057
+ .input-group:not(.tinvwl-no-full) .input-group-addon,
3058
+ .input-group:not(.tinvwl-no-full) .input-group-btn,
3059
+ .input-group:not(.tinvwl-no-full) .form-control {
3060
+ display: block;
3061
+ }
3062
+
3063
+ .input-group:not(.tinvwl-no-full) .input-group-addon,
3064
+ .input-group:not(.tinvwl-no-full) .input-group-btn,
3065
+ .input-group:not(.tinvwl-no-full) .input-group-addon > input,
3066
+ .input-group:not(.tinvwl-no-full) .input-group-addon > button,
3067
+ .input-group:not(.tinvwl-no-full) .input-group-btn > input,
3068
+ .input-group:not(.tinvwl-no-full) .input-group-btn > button {
3069
+ margin-left: 0;
3070
+ }
3071
+ }
3072
+
3073
+ .text-right {
3074
+ text-align: right;
3075
+ }
3076
+
3077
+ @media (max-width: 1199px) {
3078
+ .text-right {
3079
+ text-align: left;
3080
+ }
3081
+ }
3082
+
3083
+ @media (min-width: 768px) {
3084
+ .form-inline .form-group {
3085
+ display: inline-block;
3086
+ margin-bottom: 0;
3087
+ vertical-align: middle;
3088
+ }
3089
+ .form-inline .form-control {
3090
+ display: inline-block;
3091
+ width: auto;
3092
+ vertical-align: middle;
3093
+ }
3094
+ .form-inline .form-control-static {
3095
+ display: inline-block;
3096
+ }
3097
+ .form-inline .input-group {
3098
+ display: inline-table;
3099
+ vertical-align: middle;
3100
+ }
3101
+ .form-inline .input-group .input-group-addon,
3102
+ .form-inline .input-group .input-group-btn,
3103
+ .form-inline .input-group .form-control {
3104
+ width: auto;
3105
+ }
3106
+ .form-inline .input-group > .form-control {
3107
+ width: 100%;
3108
+ }
3109
+ .form-inline .control-label label {
3110
+ margin-bottom: 0;
3111
+ vertical-align: middle;
3112
+ }
3113
+ .form-inline .radio,
3114
+ .form-inline .checkbox {
3115
+ display: inline-block;
3116
+ margin-top: 0;
3117
+ margin-bottom: 0;
3118
+ vertical-align: middle;
3119
+ }
3120
+ .form-inline .radio label,
3121
+ .form-inline .checkbox label {
3122
+ padding-left: 0;
3123
+ }
3124
+ .form-inline .radio input[type="radio"],
3125
+ .form-inline .checkbox input[type="checkbox"] {
3126
+ position: relative;
3127
+ margin-left: 0;
3128
+ }
3129
+ .form-inline .has-feedback .form-control-feedback {
3130
+ top: 0;
3131
+ }
3132
+ }
3133
+
3134
+ /*************************IMAGES *******************************/
3135
+
3136
+ .logo_heart{
3137
+ background: url(../img/logo_heart.png) no-repeat center;
3138
+ display: inline-block;
3139
+ background-size: 54px 54px;
3140
+ width: 54px;
3141
+ height: 54px;
3142
+ }
3143
+
3144
+ .admin-rescue{
3145
+ background: url(../img/admin-rescue.png) no-repeat center;
3146
+ display: inline-block;
3147
+ background-size: 61px 60px;
3148
+ width: 61px;
3149
+ height: 60px;
3150
+ }
3151
+
3152
+ .admin-update{
3153
+ background: url(../img/admin-update.png) no-repeat center;
3154
+ display: inline-block;
3155
+ background-size: 61px 60px;
3156
+ width: 61px;
3157
+ height: 60px;
3158
+ }
3159
+
3160
+ .wizard_logo{
3161
+ background: url(../img/wizard_logo.png) no-repeat center;
3162
+ background-size: 54px 54px;
3163
+ width: 54px;
3164
+ height: 54px;
3165
+ display: block;
3166
+ margin: 10px auto;
3167
+ }
3168
+ .wizard_setup{
3169
+ background: url(../img/wizard_setup.png) no-repeat center;
3170
+ display: inline-block;
3171
+ background-size: 143px 144px;
3172
+ width: 143px;
3173
+ height: 144px;
3174
+ }
3175
+
3176
+ .premium_adv{
3177
+ background: url(../img/premium_adv.png) no-repeat center;
3178
+ display: block;
3179
+ margin: 0 auto;
3180
+ background-size: 365px 216px;
3181
+ width: 365px;
3182
+ height: 216px;
3183
+ }
3184
+
3185
+ /************************** RETINA *************************/
3186
+ .tinvwl-content select {
3187
+ background-size: 13px 8px;
3188
+
3189
+ }
3190
+ .tinvwl-select + .tinvwl-caret span {
3191
+ background-size: 13px 18px;
3192
+
3193
+ }
3194
+
3195
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
3196
+ background-size: 20px 30px;
3197
+
3198
+ }
3199
+
3200
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
3201
+ background-size: 20px 30px;
3202
+
3203
+ }
3204
+
3205
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
3206
+ background-size: 20px 30px;
3207
+
3208
+ }
3209
+
3210
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
3211
+ background-size: 20px 30px;
3212
+
3213
+ }
3214
+
3215
+ .tinvwl-color-picker .tinvwl-eyedropper {
3216
+ background-size: 28px 29px;
3217
+
3218
+ }
3219
+
3220
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), not all, not all, not all {
3221
+ .tinvwl-content select {
3222
+ background-image: url(../img/select_caret@2x.png);
3223
+
3224
+ }
3225
+ .tinvwl-select + .tinvwl-caret span {
3226
+ background-image: url(../img/chevron_down@2x.png) no-repeat center;
3227
+
3228
+ }
3229
+
3230
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page .tinvwl-chevron {
3231
+ background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3232
+
3233
+ }
3234
+
3235
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .prev-page:hover .tinvwl-chevron {
3236
+ background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3237
+
3238
+ }
3239
+
3240
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page .tinvwl-chevron {
3241
+ background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3242
+
3243
+ }
3244
+
3245
+ .tinvwl-content .tablenav .tablenav-pages .pagination-links .next-page:hover .tinvwl-chevron {
3246
+ background-image: url(../img/chevron_icon@2x.png) no-repeat center;
3247
+
3248
+ }
3249
+
3250
+ .tinvwl-color-picker .tinvwl-eyedropper {
3251
+ background-image: #fff url(../img/color_icon@2x.png) no-repeat center;
3252
+
3253
+ }
3254
+ .logo_heart{
3255
+ background-image: url(../img/logo_heart@2x.png) no-repeat center;
3256
+ }
3257
+
3258
+ .admin-rescue{
3259
+ background-image: url(../img/admin-rescue@2x.png) no-repeat center;
3260
+ }
3261
+
3262
+ .admin-update{
3263
+ background-image: url(../img/admin-update@2x.png) no-repeat center;
3264
+ }
3265
+
3266
+ .wizard_logo{
3267
+ background-image: url(../img/wizard_logo@2x.png) no-repeat center;
3268
+ }
3269
+ .wizard_setup{
3270
+ background-image: url(../img/wizard_setup@2x.png) no-repeat center;
3271
+ }
3272
+ }
3273
+
3274
+ /******************STYLE HEADINGS*********************/
3275
+ #style_options .tinvwl-table tbody tr .tinvwl-inner h2{
3276
+ font-size: 18px;
3277
+ color: #291C09;
3278
+ text-transform: capitalize;
3279
+ font-weight: 600;
3280
+ margin-bottom: 21px;
3281
+ padding: 14px 0;
3282
  }
asset/css/admin.min.css CHANGED
@@ -1,2 +1,2 @@
1
-
2
  #toplevel_page_tinvwl ul ul{display:none;margin-left:15px;position:absolute}#toplevel_page_tinvwl ul li:hover ul,#toplevel_page_tinvwl ul li.current ul{display:block;left:145px;margin-left:15px;position:absolute;top:0}.tinvwl-header{background-color:#FFF;height:48px;left:-20px;margin:0;padding:24px 40px;position:relative;right:0;width:calc(100% - 60px);top:0}.tinvwl-header .title{font-size:21px;line-height:21px;font-weight:400;float:left}.tinvwl-header .status-panel{float:right}.status-panel>div{display:inline-block;margin-left:21px}.status-panel .button-link{background-color:#ff5739;color:#FFF;text-decoration:none;text-transform:uppercase;line-height:10px;font-weight:600;height:48px;display:table-cell;border-radius:5px;padding:0 17px;vertical-align:middle}.status-panel .button-link span::before{color:#ffdc00;display:inline-block;font:normal 12px/1 'dashicons';vertical-align:bottom;-webkit-font-smoothing:antialiased;content:"\f155"}.status-panel .button-round{border:2px solid #f1f1f1;border-radius:50%;width:43px;padding-top:5px;padding-left:2px;height:40px;display:table-cell;text-align:center;vertical-align:middle}.status-panel .status-tutorial span::before{color:#515151;display:inline-block;font:normal 24px/1 'dashicons';vertical-align:middle;-webkit-font-smoothing:antialiased;content:"\f118"}.status-message{background-color:#FFF;height:46px;left:-20px;right:0;margin:0;width:calc(100%+20px);position:relative;margin-top:2px;display:table}.status-message>div{float:left;padding:10px 20px;display:table-cell;vertical-align:middle}.status-message>.header{width:110px;height:26px;font-weight:600}.status-message.type-error>.header{background-color:#ff3814;color:#FFF}.status-message.type-tip>.header{background-color:#30aec4;color:#FFF}.status-message.type-attention>.header{background-color:#ffe900;color:#000}.status-message>.header>span{font:normal 16px/1 'dashicons';vertical-align:bottom;-webkit-font-smoothing:antialiased}.status-message.type-error>.header>span::before{content:"\f158"}.status-message.type-tip>.header>span::before{content:"\f227"}.status-message.type-attention>.header>span::before{content:"\f534"}.tinvwl-content label{font-size:14px;font-weight:600;margin:2px;line-height:42px}.tinvwl-content input[type=text]{appearance:none;border-radius:3px;border:1px solid #dbdbdb;font-size:11px;height:38px;margin:2px;padding:5px 5px 5px 5px;-moz-appearance:none;-webkit-appearance:none}.tinvwl-content textarea{appearance:none;border-radius:3px;width:100%;border:1px solid #dbdbdb;font-size:11px;margin:2px;padding:5px 5px 5px 5px;-moz-appearance:none;-webkit-appearance:none;resize:vertical}.tinvwl-content button{appearance:none;border-radius:3px;border:1px solid #96b100;background-color:#96b100;font-weight:600;font-size:11px;line-height:26px;vertical-align:middle;color:#FFF;height:38px;margin:2px;padding:5px 41px;cursor:pointer;text-align:center;-moz-appearance:none;-webkit-appearance:none;position:relative}.tinvwl-content button .dashicons{float:left;height:36px;line-height:36px;position:absolute;left:0;top:0;width:36px;vertical-align:middle}.tinvwl-content .status-btn-active .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-active .dashicons:before{content:"\f522"}.tinvwl-content .status-btn-pause{background-color:#515151;border-color:#515151}.tinvwl-content .status-btn-pause .dashicons{background-color:#434343}.tinvwl-content .status-btn-pause .dashicons:before{content:"\f523"}.tinvwl-content .status-btn-add .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-add .dashicons:before{content:"\f502"}.tinvwl-content .status-btn-add2 .dashicons:before{content:"\f132"}.tinvwl-content .status-btn-remove .dashicons:before{content:"\f335"}.tinvwl-content .status-btn-remove2 .dashicons:before{content:"\f460"}.tinvwl-content .status-btn-folder .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-folder .dashicons:before{content:"\f322"}.tinvwl-content .status-btn-ok .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-ok .dashicons:before{content:"\f147"}.tinvwl-content .status-btn-preset-load .dashicons:before{content:"\f491"}.tinvwl-content .status-btn-preset-save .dashicons:before{content:"\f133"}.tinvwl-content .status-btn-back{background-color:#515151;border-color:#515151}.tinvwl-content .status-btn-back .dashicons{background-color:#434343}.tinvwl-content .status-btn-back .dashicons:before{content:"\f344"}.tinvwl-content select{appearance:none;background:transparent;background:url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) 99% / 7% no-repeat #FFF;border-radius:3px;border:1px solid #dbdbdb;font-size:11px;height:38px;margin:2px;padding:5px 35px 5px 5px;width:130px;-moz-appearance:none;-webkit-appearance:none}.tinvwl-content select[multiple=multiple]{background:0;padding:5px 5px 5px 5px}@media screen and (min-width:0\0){.tinvwl-content select{background:0;padding:5px}}.tinvwl-content h2{margin:0;line-height:40px}.tinvwl-content{margin:14px 40px 10px 20px}.tinvwl-content section{margin-top:20px;background-color:#FFF;border-radius:5px}.tinvwl-content section:after{content:'';display:block;height:0;clear:both}.campaign-header .header{background-color:#fbfaf9;padding:40px;border-radius:5px 5px 0 0;text-align:center}.campaign-header h2{margin:20px;text-decoration:none;text-transform:uppercase;font-weight:800}.campaign-header .logo{position:relative;left:50%;margin-left:-55px;display:block;width:110px;height:110px;border-radius:50%;background-color:#f1eee8}.campaign-header section{margin-top:0;text-align:right}.campaign-header .helper{background-color:#FFF!important}.campaign-header .content{padding:40px!important}.campaign-header .content div{margin:6px}.campaign-header input,.campaign-header select,.campaign-header button{width:40%}.zone-header .header{background-color:#fbfaf9;padding:40px;border-radius:5px 5px 0 0;text-align:center}.zone-header h2{margin:20px;text-decoration:none;text-transform:uppercase;font-weight:800}.zone-header .logo{position:relative;left:50%;margin-left:-55px;display:block;width:110px;height:110px;border-radius:50%;background-color:#f1eee8}.zone-header section{margin-top:0;text-align:right}.zone-header .helper{background-color:#FFF!important}.zone-header .content{padding:40px!important}.zone-header .content div{margin:6px}.zone-header input,.zone-header .adgform-multirbox{width:40%}.zone-header .adgform-multirbox{text-align:center}section.basic{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}section.only-button{background:0}section.basic .content{-moz-flex:1 1 80%;-webkit-flex:1 1 80%;-ms-flex:1 1 80%;flex:1 1 80%;padding:0 30px}section.basic .helper{-moz-flex:1 0 300px;-webkit-flex:1 0 300px;-ms-flex:1 0 300px;flex:1 0 300px;padding:30px;border-radius:0 5px 5px 0;background-color:#fbfaf9}.tinvwl-content .content .content-in{padding:30px 0;position:relative;float:none}.content-in .tinvwl-targeting-type{display:none}.tinvwl-content .content-in+.content-in{border-top:2px solid #ececec}.tinvwl-form-onoff.right-onoff,.adgform-multirbox.right-onoff,button.right-onoff{right:0;top:30px;position:absolute}.tinvwl-content .right-elem{float:right}.adgform-multirbox.right-incexc,label.right-incexc{position:absolute;top:30px;right:162px}.tinvwl-user-content .user-rule+.user-rule{border-top:2px solid #ececec}.tinvwl-user-content .user-rule{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center}.sizes-box .custom{padding-left:20px}.user-rule .user-width{-moz-flex:0 0 120px;-webkit-flex:0 0 120px;-ms-flex:0 0 120px;flex:0 0 120px;word-wrap:normal}.user-rule .user-size{-moz-flex:3 1;-webkit-flex:3 1;-ms-flex:3 1;flex:3 1;word-wrap:normal}.user-rule .user-size select{width:100%}.user-rule .user-custom{-moz-flex:2 1;-webkit-flex:2 1;-ms-flex:2 1;flex:2 1;word-wrap:normal;text-align:right}.user-rule .user-remove{-moz-flex:0 0 40px;-webkit-flex:0 0 40px;-ms-flex:0 0 40px;flex:0 0 40px;padding:0 20px;word-wrap:normal;text-align:right}.content .tinvwl-targeting-text{background-color:#fbfaf9;padding:20px}.tinvwl-targeting-text .filter-input{width:100%}.tinvwl-targeting-text .zone{padding:20px 0;min-height:42px}.tinvwl-targeting-text .after{border-top:1px solid #dfdfdf;padding-top:20px}.tinvwl-targeting-text button{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}.tinvwl-targeting-text button:hover{background-color:#96b100;color:#FFF}.tinvwl-targeting-text .dataset{position:absolute;z-index:99998;border-radius:3px;border:1px solid #dbdbdb;margin:2px;padding:5px;border-top-color:#FFF;background-color:#FFF}.tinvwl-targeting-text .dataset li{margin:0!important;cursor:pointer;width:100%;padding:5px 0}.tinvwl-targeting-text .dataset li+li{border-top:1px solid #dbdbdb}section .list-header{padding:30px!important}section .right{float:right}section .content-in.table{padding:0!important;width:100%;display:table;border-collapse:collapse}.zone-pos-top-left{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1);filter:FlipH;-ms-filter:"FlipH"}.zone-pos-bot-left{-moz-transform:scale(-1,1) rotate(90deg);-webkit-transform:scale(-1,1) rotate(90deg);-o-transform:scale(-1,1) rotate(90deg);transform:scale(-1,1) rotate(90deg);filter:FlipH;-ms-filter:"FlipH"}.zone-pos-bot-right{-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.tinvwl-big-table .status-btn-apply{background-color:#f4f3ef;border-color:#f4f3ef;color:#000;padding:5px}.table .tr,.table .tr-header{border:0;display:table-row;width:100%}.table .tr-header{font-weight:900;background:#f4f3ef;text-transform:uppercase;text-align:center}.table .header .cell{padding:30px 0}.table .tr{border-top:2px solid #ececec;border-bottom:2px solid #ececec}.table .tr>.td,.table .tr-header>.td{padding:6px 12px;display:table-cell;padding:20px;text-align:center}.table .tr.group{height:60px}.table .tr.group .group-name{position:absolute;height:20px;width:80%;font-weight:600;line-height:20px;text-transform:uppercase;padding:20px;cursor:pointer}.table .tr.active>.td.td-i-status span.dashicons:before{content:"\f523"}.table .tr.active{border-left:6px solid #b9cf09}.table .tr.deactive>.td.td-i-status span.dashicons:before{content:"\f522"}.table .tr.deactive{border-left:6px solid #ff5739}.table .tr>.td.td-i-status,.table .tr>.td.td-i-cb{width:20px}.table .tr>.td:last-child{width:20%}.table .preferences{text-align:right!important}.table .preferences ul{margin:0;white-space:nowrap}.table .preferences li{display:inline-block;margin-left:20px;margin-bottom:0}.table a{text-decoration:none;color:#000}.table .progress{display:block;width:100%;height:3px;background-color:#eae9e5}.table .progress span{float:right;background-color:#30aec4;width:50%;height:3px}section .list-foother{padding:30px!important;text-align:center}.list-foother .pagination li{display:inline-block}.list-foother .pagination li a{display:inline-block;border-radius:50%;padding:5px;width:20px;height:20px}.pagination a{color:#000;text-decoration:none}.pagination li+li{margin-left:10px}.pagination .prev a:before{content:'<'}.pagination .next a:before{content:'>'}.pagination .select{border-radius:50%;padding:5px;width:20px;height:20px;background-color:#f3f1ec}.pagination .prev a,.pagination .next a{background-color:#f3f1ec}.datetime-selectors{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.content .tinvwl-targeting-period{background-color:#fbfaf9;padding:20px;-moz-flex:1 1;-webkit-flex:1 1;-ms-flex:1 1;flex:1 1}.tinvwl-targeting-period .zone{padding:10px 0;min-height:42px}.tinvwl-targeting-period .tinvwl-dateperiod,.tinvwl-targeting-period .tinvwl-timeperiod,.tinvwl-targeting-period button[name=period_add],.tinvwl-targeting-period .zone button{width:100%;text-align:center}.tinvwl-targeting-period .zone button,.tinvwl-targeting-period .after button{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}
1
+
2
  #toplevel_page_tinvwl ul ul{display:none;margin-left:15px;position:absolute}#toplevel_page_tinvwl ul li:hover ul,#toplevel_page_tinvwl ul li.current ul{display:block;left:145px;margin-left:15px;position:absolute;top:0}.tinvwl-header{background-color:#FFF;height:48px;left:-20px;margin:0;padding:24px 40px;position:relative;right:0;width:calc(100% - 60px);top:0}.tinvwl-header .title{font-size:21px;line-height:21px;font-weight:400;float:left}.tinvwl-header .status-panel{float:right}.status-panel>div{display:inline-block;margin-left:21px}.status-panel .button-link{background-color:#ff5739;color:#FFF;text-decoration:none;text-transform:uppercase;line-height:10px;font-weight:600;height:48px;display:table-cell;border-radius:5px;padding:0 17px;vertical-align:middle}.status-panel .button-link span::before{color:#ffdc00;display:inline-block;font:normal 12px/1 'dashicons';vertical-align:bottom;-webkit-font-smoothing:antialiased;content:"\f155"}.status-panel .button-round{border:2px solid #f1f1f1;border-radius:50%;width:43px;padding-top:5px;padding-left:2px;height:40px;display:table-cell;text-align:center;vertical-align:middle}.status-panel .status-tutorial span::before{color:#515151;display:inline-block;font:normal 24px/1 'dashicons';vertical-align:middle;-webkit-font-smoothing:antialiased;content:"\f118"}.status-message{background-color:#FFF;height:46px;left:-20px;right:0;margin:0;width:calc(100%+20px);position:relative;margin-top:2px;display:table}.status-message>div{float:left;padding:10px 20px;display:table-cell;vertical-align:middle}.status-message>.header{width:110px;height:26px;font-weight:600}.status-message.type-error>.header{background-color:#ff3814;color:#FFF}.status-message.type-tip>.header{background-color:#30aec4;color:#FFF}.status-message.type-attention>.header{background-color:#ffe900;color:#000}.status-message>.header>span{font:normal 16px/1 'dashicons';vertical-align:bottom;-webkit-font-smoothing:antialiased}.status-message.type-error>.header>span::before{content:"\f158"}.status-message.type-tip>.header>span::before{content:"\f227"}.status-message.type-attention>.header>span::before{content:"\f534"}.tinvwl-content label{font-size:14px;font-weight:600;margin:2px;line-height:42px}.tinvwl-content input[type=text]{appearance:none;border-radius:3px;border:1px solid #dbdbdb;font-size:11px;height:38px;margin:2px;padding:5px 5px 5px 5px;-moz-appearance:none;-webkit-appearance:none}.tinvwl-content textarea{appearance:none;border-radius:3px;width:100%;border:1px solid #dbdbdb;font-size:11px;margin:2px;padding:5px 5px 5px 5px;-moz-appearance:none;-webkit-appearance:none;resize:vertical}.tinvwl-content button{appearance:none;border-radius:3px;border:1px solid #96b100;background-color:#96b100;font-weight:600;font-size:11px;line-height:26px;vertical-align:middle;color:#FFF;height:38px;margin:2px;padding:5px 41px;cursor:pointer;text-align:center;-moz-appearance:none;-webkit-appearance:none;position:relative}.tinvwl-content button .dashicons{float:left;height:36px;line-height:36px;position:absolute;left:0;top:0;width:36px;vertical-align:middle}.tinvwl-content .status-btn-active .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-active .dashicons:before{content:"\f522"}.tinvwl-content .status-btn-pause{background-color:#515151;border-color:#515151}.tinvwl-content .status-btn-pause .dashicons{background-color:#434343}.tinvwl-content .status-btn-pause .dashicons:before{content:"\f523"}.tinvwl-content .status-btn-add .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-add .dashicons:before{content:"\f502"}.tinvwl-content .status-btn-add2 .dashicons:before{content:"\f132"}.tinvwl-content .status-btn-remove .dashicons:before{content:"\f335"}.tinvwl-content .status-btn-remove2 .dashicons:before{content:"\f460"}.tinvwl-content .status-btn-folder .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-folder .dashicons:before{content:"\f322"}.tinvwl-content .status-btn-ok .dashicons{background-color:#8aa300}.tinvwl-content .status-btn-ok .dashicons:before{content:"\f147"}.tinvwl-content .status-btn-preset-load .dashicons:before{content:"\f491"}.tinvwl-content .status-btn-preset-save .dashicons:before{content:"\f133"}.tinvwl-content .status-btn-back{background-color:#515151;border-color:#515151}.tinvwl-content .status-btn-back .dashicons{background-color:#434343}.tinvwl-content .status-btn-back .dashicons:before{content:"\f344"}.tinvwl-content select{appearance:none;background:transparent;background:url(https://cdn3.iconfinder.com/data/icons/google-material-design-icons/48/ic_keyboard_arrow_down_48px-128.png) 99% / 7% no-repeat #FFF;border-radius:3px;border:1px solid #dbdbdb;font-size:11px;height:38px;margin:2px;padding:5px 35px 5px 5px;width:130px;-moz-appearance:none;-webkit-appearance:none}.tinvwl-content select[multiple=multiple]{background:0;padding:5px 5px 5px 5px}@media screen and (min-width:0\0){.tinvwl-content select{background:0;padding:5px}}.tinvwl-content h2{margin:0;line-height:40px}.tinvwl-content{margin:14px 40px 10px 20px}.tinvwl-content section{margin-top:20px;background-color:#FFF;border-radius:5px}.tinvwl-content section:after{content:'';display:block;height:0;clear:both}.campaign-header .header{background-color:#fbfaf9;padding:40px;border-radius:5px 5px 0 0;text-align:center}.campaign-header h2{margin:20px;text-decoration:none;text-transform:uppercase;font-weight:800}.campaign-header .logo{position:relative;left:50%;margin-left:-55px;display:block;width:110px;height:110px;border-radius:50%;background-color:#f1eee8}.campaign-header section{margin-top:0;text-align:right}.campaign-header .helper{background-color:#FFF!important}.campaign-header .content{padding:40px!important}.campaign-header .content div{margin:6px}.campaign-header input,.campaign-header select,.campaign-header button{width:40%}.zone-header .header{background-color:#fbfaf9;padding:40px;border-radius:5px 5px 0 0;text-align:center}.zone-header h2{margin:20px;text-decoration:none;text-transform:uppercase;font-weight:800}.zone-header .logo{position:relative;left:50%;margin-left:-55px;display:block;width:110px;height:110px;border-radius:50%;background-color:#f1eee8}.zone-header section{margin-top:0;text-align:right}.zone-header .helper{background-color:#FFF!important}.zone-header .content{padding:40px!important}.zone-header .content div{margin:6px}.zone-header input,.zone-header .adgform-multirbox{width:40%}.zone-header .adgform-multirbox{text-align:center}section.basic{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}section.only-button{background:0}section.basic .content{-moz-flex:1 1 80%;-webkit-flex:1 1 80%;-ms-flex:1 1 80%;flex:1 1 80%;padding:0 30px}section.basic .helper{-moz-flex:1 0 300px;-webkit-flex:1 0 300px;-ms-flex:1 0 300px;flex:1 0 300px;padding:30px;border-radius:0 5px 5px 0;background-color:#fbfaf9}.tinvwl-content .content .content-in{padding:30px 0;position:relative;float:none}.content-in .tinvwl-targeting-type{display:none}.tinvwl-content .content-in+.content-in{border-top:2px solid #ececec}.tinvwl-form-onoff.right-onoff,.adgform-multirbox.right-onoff,button.right-onoff{right:0;top:30px;position:absolute}.tinvwl-content .right-elem{float:right}.adgform-multirbox.right-incexc,label.right-incexc{position:absolute;top:30px;right:162px}.tinvwl-user-content .user-rule+.user-rule{border-top:2px solid #ececec}.tinvwl-user-content .user-rule{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;align-items:center}.sizes-box .custom{padding-left:20px}.user-rule .user-width{-moz-flex:0 0 120px;-webkit-flex:0 0 120px;-ms-flex:0 0 120px;flex:0 0 120px;word-wrap:normal}.user-rule .user-size{-moz-flex:3 1;-webkit-flex:3 1;-ms-flex:3 1;flex:3 1;word-wrap:normal}.user-rule .user-size select{width:100%}.user-rule .user-custom{-moz-flex:2 1;-webkit-flex:2 1;-ms-flex:2 1;flex:2 1;word-wrap:normal;text-align:right}.user-rule .user-remove{-moz-flex:0 0 40px;-webkit-flex:0 0 40px;-ms-flex:0 0 40px;flex:0 0 40px;padding:0 20px;word-wrap:normal;text-align:right}.content .tinvwl-targeting-text{background-color:#fbfaf9;padding:20px}.tinvwl-targeting-text .filter-input{width:100%}.tinvwl-targeting-text .zone{padding:20px 0;min-height:42px}.tinvwl-targeting-text .after{border-top:1px solid #dfdfdf;padding-top:20px}.tinvwl-targeting-text button{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}.tinvwl-targeting-text button:hover{background-color:#96b100;color:#FFF}.tinvwl-targeting-text .dataset{position:absolute;z-index:99998;border-radius:3px;border:1px solid #dbdbdb;margin:2px;padding:5px;border-top-color:#FFF;background-color:#FFF}.tinvwl-targeting-text .dataset li{margin:0!important;cursor:pointer;width:100%;padding:5px 0}.tinvwl-targeting-text .dataset li+li{border-top:1px solid #dbdbdb}section .list-header{padding:30px!important}section .right{float:right}section .content-in.table{padding:0!important;width:100%;display:table;border-collapse:collapse}.zone-pos-top-left{-moz-transform:scale(-1,1);-webkit-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1);filter:FlipH;-ms-filter:"FlipH"}.zone-pos-bot-left{-moz-transform:scale(-1,1) rotate(90deg);-webkit-transform:scale(-1,1) rotate(90deg);-o-transform:scale(-1,1) rotate(90deg);transform:scale(-1,1) rotate(90deg);filter:FlipH;-ms-filter:"FlipH"}.zone-pos-bot-right{-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-webkit-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.tinvwl-big-table .status-btn-apply{background-color:#f4f3ef;border-color:#f4f3ef;color:#000;padding:5px}.table .tr,.table .tr-header{border:0;display:table-row;width:100%}.table .tr-header{font-weight:900;background:#f4f3ef;text-transform:uppercase;text-align:center}.table .header .cell{padding:30px 0}.table .tr{border-top:2px solid #ececec;border-bottom:2px solid #ececec}.table .tr>.td,.table .tr-header>.td{padding:6px 12px;display:table-cell;padding:20px;text-align:center}.table .tr.group{height:60px}.table .tr.group .group-name{position:absolute;height:20px;width:80%;font-weight:600;line-height:20px;text-transform:uppercase;padding:20px;cursor:pointer}.table .tr.active>.td.td-i-status span.dashicons:before{content:"\f523"}.table .tr.active{border-left:6px solid #b9cf09}.table .tr.deactive>.td.td-i-status span.dashicons:before{content:"\f522"}.table .tr.deactive{border-left:6px solid #ff5739}.table .tr>.td.td-i-status,.table .tr>.td.td-i-cb{width:20px}.table .tr>.td:last-child{width:20%}.table .preferences{text-align:right!important}.table .preferences ul{margin:0;white-space:nowrap}.table .preferences li{display:inline-block;margin-left:20px;margin-bottom:0}.table a{text-decoration:none;color:#000}.table .progress{display:block;width:100%;height:3px;background-color:#eae9e5}.table .progress span{float:right;background-color:#30aec4;width:50%;height:3px}section .list-foother{padding:30px!important;text-align:center}.list-foother .pagination li{display:inline-block}.list-foother .pagination li a{display:inline-block;border-radius:50%;padding:5px;width:20px;height:20px}.pagination a{color:#000;text-decoration:none}.pagination li+li{margin-left:10px}.pagination .prev a:before{content:'<'}.pagination .next a:before{content:'>'}.pagination .select{border-radius:50%;padding:5px;width:20px;height:20px;background-color:#f3f1ec}.pagination .prev a,.pagination .next a{background-color:#f3f1ec}.datetime-selectors{display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex}.content .tinvwl-targeting-period{background-color:#fbfaf9;padding:20px;-moz-flex:1 1;-webkit-flex:1 1;-ms-flex:1 1;flex:1 1}.tinvwl-targeting-period .zone{padding:10px 0;min-height:42px}.tinvwl-targeting-period .tinvwl-dateperiod,.tinvwl-targeting-period .tinvwl-timeperiod,.tinvwl-targeting-period button[name=period_add],.tinvwl-targeting-period .zone button{width:100%;text-align:center}.tinvwl-targeting-period .zone button,.tinvwl-targeting-period .after button{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}
asset/css/bootstrap.css CHANGED
@@ -1,6760 +1,6760 @@
1
- /*!
2
- * Bootstrap v3.3.6 (http://getbootstrap.com)
3
- * Copyright 2011-2015 Twitter, Inc.
4
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */
6
- /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
7
- html {
8
- font-family: sans-serif;
9
- -webkit-text-size-adjust: 100%;
10
- -ms-text-size-adjust: 100%;
11
- }
12
- body {
13
- margin: 0;
14
- }
15
- article,
16
- aside,
17
- details,
18
- figcaption,
19
- figure,
20
- footer,
21
- header,
22
- hgroup,
23
- main,
24
- menu,
25
- nav,
26
- section,
27
- summary {
28
- display: block;
29
- }
30
- audio,
31
- canvas,
32
- progress,
33
- video {
34
- display: inline-block;
35
- vertical-align: baseline;
36
- }
37
- audio:not([controls]) {
38
- display: none;
39
- height: 0;
40
- }
41
- [hidden],
42
- template {
43
- display: none;
44
- }
45
- a {
46
- background-color: transparent;
47
- }
48
- a:active,
49
- a:hover {
50
- outline: 0;
51
- }
52
- abbr[title] {
53
- border-bottom: 1px dotted;
54
- }
55
- b,
56
- strong {
57
- font-weight: bold;
58
- }
59
- dfn {
60
- font-style: italic;
61
- }
62
- h1 {
63
- margin: .67em 0;
64
- font-size: 2em;
65
- }
66
- mark {
67
- color: #000;
68
- background: #ff0;
69
- }
70
- small {
71
- font-size: 80%;
72
- }
73
- sub,
74
- sup {
75
- position: relative;
76
- font-size: 75%;
77
- line-height: 0;
78
- vertical-align: baseline;
79
- }
80
- sup {
81
- top: -.5em;
82
- }
83
- sub {
84
- bottom: -.25em;
85
- }
86
- img {
87
- border: 0;
88
- }
89
- svg:not(:root) {
90
- overflow: hidden;
91
- }
92
- figure {
93
- margin: 1em 40px;
94
- }
95
- hr {
96
- height: 0;
97
- -webkit-box-sizing: content-box;
98
- -moz-box-sizing: content-box;
99
- box-sizing: content-box;
100
- }
101
- pre {
102
- overflow: auto;
103
- }
104
- code,
105
- kbd,
106
- pre,
107
- samp {
108
- font-family: monospace, monospace;
109
- font-size: 1em;
110
- }
111
- button,
112
- input,
113
- optgroup,
114
- select,
115
- textarea {
116
- margin: 0;
117
- font: inherit;
118
- color: inherit;
119
- }
120
- button {
121
- overflow: visible;
122
- }
123
- button,
124
- select {
125
- text-transform: none;
126
- }
127
- button,
128
- html input[type="button"],
129
- input[type="reset"],
130
- input[type="submit"] {
131
- -webkit-appearance: button;
132
- cursor: pointer;
133
- }
134
- button[disabled],
135
- html input[disabled] {
136
- cursor: default;
137
- }
138
- button::-moz-focus-inner,
139
- input::-moz-focus-inner {
140
- padding: 0;
141
- border: 0;
142
- }
143
- input {
144
- line-height: normal;
145
- }
146
- input[type="checkbox"],
147
- input[type="radio"] {
148
- -webkit-box-sizing: border-box;
149
- -moz-box-sizing: border-box;
150
- box-sizing: border-box;
151
- padding: 0;
152
- }
153
- input[type="number"]::-webkit-inner-spin-button,
154
- input[type="number"]::-webkit-outer-spin-button {
155
- height: auto;
156
- }
157
- input[type="search"] {
158
- -webkit-box-sizing: content-box;
159
- -moz-box-sizing: content-box;
160
- box-sizing: content-box;
161
- -webkit-appearance: textfield;
162
- }
163
- input[type="search"]::-webkit-search-cancel-button,
164
- input[type="search"]::-webkit-search-decoration {
165
- -webkit-appearance: none;
166
- }
167
- fieldset {
168
- padding: .35em .625em .75em;
169
- margin: 0 2px;
170
- border: 1px solid #c0c0c0;
171
- }
172
- legend {
173
- padding: 0;
174
- border: 0;
175
- }
176
- textarea {
177
- overflow: auto;
178
- }
179
- optgroup {
180
- font-weight: bold;
181
- }
182
- table {
183
- border-spacing: 0;
184
- border-collapse: collapse;
185
- }
186
- td,
187
- th {
188
- padding: 0;
189
- }
190
- /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
191
- @media print {
192
- *,
193
- *:before,
194
- *:after {
195
- color: #000 !important;
196
- text-shadow: none !important;
197
- background: transparent !important;
198
- -webkit-box-shadow: none !important;
199
- box-shadow: none !important;
200
- }
201
- a,
202
- a:visited {
203
- text-decoration: underline;
204
- }
205
- a[href]:after {
206
- content: " (" attr(href) ")";
207
- }
208
- abbr[title]:after {
209
- content: " (" attr(title) ")";
210
- }
211
- a[href^="#"]:after,
212
- a[href^="javascript:"]:after {
213
- content: "";
214
- }
215
- pre,
216
- blockquote {
217
- border: 1px solid #999;
218
-
219
- page-break-inside: avoid;
220
- }
221
- thead {
222
- display: table-header-group;
223
- }
224
- tr,
225
- img {
226
- page-break-inside: avoid;
227
- }
228
- img {
229
- max-width: 100% !important;
230
- }
231
- p,
232
- h2,
233
- h3 {
234
- orphans: 3;
235
- widows: 3;
236
- }
237
- h2,
238
- h3 {
239
- page-break-after: avoid;
240
- }
241
- .navbar {
242
- display: none;
243
- }
244
- .btn > .caret,
245
- .dropup > .btn > .caret {
246
- border-top-color: #000 !important;
247
- }
248
- .label {
249
- border: 1px solid #000;
250
- }
251
- .table {
252
- border-collapse: collapse !important;
253
- }
254
- .table td,
255
- .table th {
256
- background-color: #fff !important;
257
- }
258
- .table-bordered th,
259
- .table-bordered td {
260
- border: 1px solid #ddd !important;
261
- }
262
- }
263
- @font-face {
264
- font-family: 'Glyphicons Halflings';
265
-
266
- src: url('../fonts/glyphicons-halflings-regular.eot');
267
- src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
268
- }
269
- .glyphicon {
270
- position: relative;
271
- top: 1px;
272
- display: inline-block;
273
- font-family: 'Glyphicons Halflings';
274
- font-style: normal;
275
- font-weight: normal;
276
- line-height: 1;
277
-
278
- -webkit-font-smoothing: antialiased;
279
- -moz-osx-font-smoothing: grayscale;
280
- }
281
- .glyphicon-asterisk:before {
282
- content: "\002a";
283
- }
284
- .glyphicon-plus:before {
285
- content: "\002b";
286
- }
287
- .glyphicon-euro:before,
288
- .glyphicon-eur:before {
289
- content: "\20ac";
290
- }
291
- .glyphicon-minus:before {
292
- content: "\2212";
293
- }
294
- .glyphicon-cloud:before {
295
- content: "\2601";
296
- }
297
- .glyphicon-envelope:before {
298
- content: "\2709";
299
- }
300
- .glyphicon-pencil:before {
301
- content: "\270f";
302
- }
303
- .glyphicon-glass:before {
304
- content: "\e001";
305
- }
306
- .glyphicon-music:before {
307
- content: "\e002";
308
- }
309
- .glyphicon-search:before {
310
- content: "\e003";
311
- }
312
- .glyphicon-heart:before {
313
- content: "\e005";
314
- }
315
- .glyphicon-star:before {
316
- content: "\e006";
317
- }
318
- .glyphicon-star-empty:before {
319
- content: "\e007";
320
- }
321
- .glyphicon-user:before {
322
- content: "\e008";
323
- }
324
- .glyphicon-film:before {
325
- content: "\e009";
326
- }
327
- .glyphicon-th-large:before {
328
- content: "\e010";
329
- }
330
- .glyphicon-th:before {
331
- content: "\e011";
332
- }
333
- .glyphicon-th-list:before {
334
- content: "\e012";
335
- }
336
- .glyphicon-ok:before {
337
- content: "\e013";
338
- }
339
- .glyphicon-remove:before {
340
- content: "\e014";
341
- }
342
- .glyphicon-zoom-in:before {
343
- content: "\e015";
344
- }
345
- .glyphicon-zoom-out:before {
346
- content: "\e016";
347
- }
348
- .glyphicon-off:before {
349
- content: "\e017";
350
- }
351
- .glyphicon-signal:before {
352
- content: "\e018";
353
- }
354
- .glyphicon-cog:before {
355
- content: "\e019";
356
- }
357
- .glyphicon-trash:before {
358
- content: "\e020";
359
- }
360
- .glyphicon-home:before {
361
- content: "\e021";
362
- }
363
- .glyphicon-file:before {
364
- content: "\e022";
365
- }
366
- .glyphicon-time:before {
367
- content: "\e023";
368
- }
369
- .glyphicon-road:before {
370
- content: "\e024";
371
- }
372
- .glyphicon-download-alt:before {
373
- content: "\e025";
374
- }
375
- .glyphicon-download:before {
376
- content: "\e026";
377
- }
378
- .glyphicon-upload:before {
379
- content: "\e027";
380
- }
381
- .glyphicon-inbox:before {
382
- content: "\e028";
383
- }
384
- .glyphicon-play-circle:before {
385
- content: "\e029";
386
- }
387
- .glyphicon-repeat:before {
388
- content: "\e030";
389
- }
390
- .glyphicon-refresh:before {
391
- content: "\e031";
392
- }
393
- .glyphicon-list-alt:before {
394
- content: "\e032";
395
- }
396
- .glyphicon-lock:before {
397
- content: "\e033";
398
- }
399
- .glyphicon-flag:before {
400
- content: "\e034";
401
- }
402
- .glyphicon-headphones:before {
403
- content: "\e035";
404
- }
405
- .glyphicon-volume-off:before {
406
- content: "\e036";
407
- }
408
- .glyphicon-volume-down:before {
409
- content: "\e037";
410
- }
411
- .glyphicon-volume-up:before {
412
- content: "\e038";
413
- }
414
- .glyphicon-qrcode:before {
415
- content: "\e039";
416
- }
417
- .glyphicon-barcode:before {
418
- content: "\e040";
419
- }
420
- .glyphicon-tag:before {
421
- content: "\e041";
422
- }
423
- .glyphicon-tags:before {
424
- content: "\e042";
425
- }
426
- .glyphicon-book:before {
427
- content: "\e043";
428
- }
429
- .glyphicon-bookmark:before {
430
- content: "\e044";
431
- }
432
- .glyphicon-print:before {
433
- content: "\e045";
434
- }
435
- .glyphicon-camera:before {
436
- content: "\e046";
437
- }
438
- .glyphicon-font:before {
439
- content: "\e047";
440
- }
441
- .glyphicon-bold:before {
442
- content: "\e048";
443
- }
444
- .glyphicon-italic:before {
445
- content: "\e049";
446
- }
447
- .glyphicon-text-height:before {
448
- content: "\e050";
449
- }
450
- .glyphicon-text-width:before {
451
- content: "\e051";
452
- }
453
- .glyphicon-align-left:before {
454
- content: "\e052";
455
- }
456
- .glyphicon-align-center:before {
457
- content: "\e053";
458
- }
459
- .glyphicon-align-right:before {
460
- content: "\e054";
461
- }
462
- .glyphicon-align-justify:before {
463
- content: "\e055";
464
- }
465
- .glyphicon-list:before {
466
- content: "\e056";
467
- }
468
- .glyphicon-indent-left:before {
469
- content: "\e057";
470
- }
471
- .glyphicon-indent-right:before {
472
- content: "\e058";
473
- }
474
- .glyphicon-facetime-video:before {
475
- content: "\e059";
476
- }
477
- .glyphicon-picture:before {
478
- content: "\e060";
479
- }
480
- .glyphicon-map-marker:before {
481
- content: "\e062";
482
- }
483
- .glyphicon-adjust:before {
484
- content: "\e063";
485
- }
486
- .glyphicon-tint:before {
487
- content: "\e064";
488
- }
489
- .glyphicon-edit:before {
490
- content: "\e065";
491
- }
492
- .glyphicon-share:before {
493
- content: "\e066";
494
- }
495
- .glyphicon-check:before {
496
- content: "\e067";
497
- }
498
- .glyphicon-move:before {
499
- content: "\e068";
500
- }
501
- .glyphicon-step-backward:before {
502
- content: "\e069";
503
- }
504
- .glyphicon-fast-backward:before {
505
- content: "\e070";
506
- }
507
- .glyphicon-backward:before {
508
- content: "\e071";
509
- }
510
- .glyphicon-play:before {
511
- content: "\e072";
512
- }
513
- .glyphicon-pause:before {
514
- content: "\e073";
515
- }
516
- .glyphicon-stop:before {
517
- content: "\e074";
518
- }
519
- .glyphicon-forward:before {
520
- content: "\e075";
521
- }
522
- .glyphicon-fast-forward:before {
523
- content: "\e076";
524
- }
525
- .glyphicon-step-forward:before {
526
- content: "\e077";
527
- }
528
- .glyphicon-eject:before {
529
- content: "\e078";
530
- }
531
- .glyphicon-chevron-left:before {
532
- content: "\e079";
533
- }
534
- .glyphicon-chevron-right:before {
535
- content: "\e080";
536
- }
537
- .glyphicon-plus-sign:before {
538
- content: "\e081";
539
- }
540
- .glyphicon-minus-sign:before {
541
- content: "\e082";
542
- }
543
- .glyphicon-remove-sign:before {
544
- content: "\e083";
545
- }
546
- .glyphicon-ok-sign:before {
547
- content: "\e084";
548
- }
549
- .glyphicon-question-sign:before {
550
- content: "\e085";
551
- }
552
- .glyphicon-info-sign:before {
553
- content: "\e086";
554
- }
555
- .glyphicon-screenshot:before {
556
- content: "\e087";
557
- }
558
- .glyphicon-remove-circle:before {
559
- content: "\e088";
560
- }
561
- .glyphicon-ok-circle:before {
562
- content: "\e089";
563
- }
564
- .glyphicon-ban-circle:before {
565
- content: "\e090";
566
- }
567
- .glyphicon-arrow-left:before {
568
- content: "\e091";
569
- }
570
- .glyphicon-arrow-right:before {
571
- content: "\e092";
572
- }
573
- .glyphicon-arrow-up:before {
574
- content: "\e093";
575
- }
576
- .glyphicon-arrow-down:before {
577
- content: "\e094";
578
- }
579
- .glyphicon-share-alt:before {
580
- content: "\e095";
581
- }
582
- .glyphicon-resize-full:before {
583
- content: "\e096";
584
- }
585
- .glyphicon-resize-small:before {
586
- content: "\e097";
587
- }
588
- .glyphicon-exclamation-sign:before {
589
- content: "\e101";
590
- }
591
- .glyphicon-gift:before {
592
- content: "\e102";
593
- }
594
- .glyphicon-leaf:before {
595
- content: "\e103";
596
- }
597
- .glyphicon-fire:before {
598
- content: "\e104";
599
- }
600
- .glyphicon-eye-open:before {
601
- content: "\e105";
602
- }
603
- .glyphicon-eye-close:before {
604
- content: "\e106";
605
- }
606
- .glyphicon-warning-sign:before {
607
- content: "\e107";
608
- }
609
- .glyphicon-plane:before {
610
- content: "\e108";
611
- }
612
- .glyphicon-calendar:before {
613
- content: "\e109";
614
- }
615
- .glyphicon-random:before {
616
- content: "\e110";
617
- }
618
- .glyphicon-comment:before {
619
- content: "\e111";
620
- }
621
- .glyphicon-magnet:before {
622
- content: "\e112";
623
- }
624
- .glyphicon-chevron-up:before {
625
- content: "\e113";
626
- }
627
- .glyphicon-chevron-down:before {
628
- content: "\e114";
629
- }
630
- .glyphicon-retweet:before {
631
- content: "\e115";
632
- }
633
- .glyphicon-shopping-cart:before {
634
- content: "\e116";
635
- }
636
- .glyphicon-folder-close:before {
637
- content: "\e117";
638
- }
639
- .glyphicon-folder-open:before {
640
- content: "\e118";
641
- }
642
- .glyphicon-resize-vertical:before {
643
- content: "\e119";
644
- }
645
- .glyphicon-resize-horizontal:before {
646
- content: "\e120";
647
- }
648
- .glyphicon-hdd:before {
649
- content: "\e121";
650
- }
651
- .glyphicon-bullhorn:before {
652
- content: "\e122";
653
- }
654
- .glyphicon-bell:before {
655
- content: "\e123";
656
- }
657
- .glyphicon-certificate:before {
658
- content: "\e124";
659
- }
660
- .glyphicon-thumbs-up:before {
661
- content: "\e125";
662
- }
663
- .glyphicon-thumbs-down:before {
664
- content: "\e126";
665
- }
666
- .glyphicon-hand-right:before {
667
- content: "\e127";
668
- }
669
- .glyphicon-hand-left:before {
670
- content: "\e128";
671
- }
672
- .glyphicon-hand-up:before {
673
- content: "\e129";
674
- }
675
- .glyphicon-hand-down:before {
676
- content: "\e130";
677
- }
678
- .glyphicon-circle-arrow-right:before {
679
- content: "\e131";
680
- }
681
- .glyphicon-circle-arrow-left:before {
682
- content: "\e132";
683
- }
684
- .glyphicon-circle-arrow-up:before {
685
- content: "\e133";
686
- }
687
- .glyphicon-circle-arrow-down:before {
688
- content: "\e134";
689
- }
690
- .glyphicon-globe:before {
691
- content: "\e135";
692
- }
693
- .glyphicon-wrench:before {
694
- content: "\e136";
695
- }
696
- .glyphicon-tasks:before {
697
- content: "\e137";
698
- }
699
- .glyphicon-filter:before {
700
- content: "\e138";
701
- }
702
- .glyphicon-briefcase:before {
703
- content: "\e139";
704
- }
705
- .glyphicon-fullscreen:before {
706
- content: "\e140";
707
- }
708
- .glyphicon-dashboard:before {
709
- content: "\e141";
710
- }
711
- .glyphicon-paperclip:before {
712
- content: "\e142";
713
- }
714
- .glyphicon-heart-empty:before {
715
- content: "\e143";
716
- }
717
- .glyphicon-link:before {
718
- content: "\e144";
719
- }
720
- .glyphicon-phone:before {
721
- content: "\e145";
722
- }
723
- .glyphicon-pushpin:before {
724
- content: "\e146";
725
- }
726
- .glyphicon-usd:before {
727
- content: "\e148";
728
- }
729
- .glyphicon-gbp:before {
730
- content: "\e149";
731
- }
732
- .glyphicon-sort:before {
733
- content: "\e150";
734
- }
735
- .glyphicon-sort-by-alphabet:before {
736
- content: "\e151";
737
- }
738
- .glyphicon-sort-by-alphabet-alt:before {
739
- content: "\e152";
740
- }
741
- .glyphicon-sort-by-order:before {
742
- content: "\e153";
743
- }
744
- .glyphicon-sort-by-order-alt:before {
745
- content: "\e154";
746
- }
747
- .glyphicon-sort-by-attributes:before {
748
- content: "\e155";
749
- }
750
- .glyphicon-sort-by-attributes-alt:before {
751
- content: "\e156";
752
- }
753
- .glyphicon-unchecked:before {
754
- content: "\e157";
755
- }
756
- .glyphicon-expand:before {
757
- content: "\e158";
758
- }
759
- .glyphicon-collapse-down:before {
760
- content: "\e159";
761
- }
762
- .glyphicon-collapse-up:before {
763
- content: "\e160";
764
- }
765
- .glyphicon-log-in:before {
766
- content: "\e161";
767
- }
768
- .glyphicon-flash:before {
769
- content: "\e162";
770
- }
771
- .glyphicon-log-out:before {
772
- content: "\e163";
773
- }
774
- .glyphicon-new-window:before {
775
- content: "\e164";
776
- }
777
- .glyphicon-record:before {
778
- content: "\e165";
779
- }
780
- .glyphicon-save:before {
781
- content: "\e166";
782
- }
783
- .glyphicon-open:before {
784
- content: "\e167";
785
- }
786
- .glyphicon-saved:before {
787
- content: "\e168";
788
- }
789
- .glyphicon-import:before {
790
- content: "\e169";
791
- }
792
- .glyphicon-export:before {
793
- content: "\e170";
794
- }
795
- .glyphicon-send:before {
796
- content: "\e171";
797
- }
798
- .glyphicon-floppy-disk:before {
799
- content: "\e172";
800
- }
801
- .glyphicon-floppy-saved:before {
802
- content: "\e173";
803
- }
804
- .glyphicon-floppy-remove:before {
805
- content: "\e174";
806
- }
807
- .glyphicon-floppy-save:before {
808
- content: "\e175";
809
- }
810
- .glyphicon-floppy-open:before {
811
- content: "\e176";
812
- }
813
- .glyphicon-credit-card:before {
814
- content: "\e177";
815
- }
816
- .glyphicon-transfer:before {
817
- content: "\e178";
818
- }
819
- .glyphicon-cutlery:before {
820
- content: "\e179";
821
- }
822
- .glyphicon-header:before {
823
- content: "\e180";
824
- }
825
- .glyphicon-compressed:before {
826
- content: "\e181";
827
- }
828
- .glyphicon-earphone:before {
829
- content: "\e182";
830
- }
831
- .glyphicon-phone-alt:before {
832
- content: "\e183";
833
- }
834
- .glyphicon-tower:before {
835
- content: "\e184";
836
- }
837
- .glyphicon-stats:before {
838
- content: "\e185";
839
- }
840
- .glyphicon-sd-video:before {
841
- content: "\e186";
842
- }
843
- .glyphicon-hd-video:before {
844
- content: "\e187";
845
- }
846
- .glyphicon-subtitles:before {
847
- content: "\e188";
848
- }
849
- .glyphicon-sound-stereo:before {
850
- content: "\e189";
851
- }
852
- .glyphicon-sound-dolby:before {
853
- content: "\e190";
854
- }
855
- .glyphicon-sound-5-1:before {
856
- content: "\e191";
857
- }
858
- .glyphicon-sound-6-1:before {
859
- content: "\e192";
860
- }
861
- .glyphicon-sound-7-1:before {
862
- content: "\e193";
863
- }
864
- .glyphicon-copyright-mark:before {
865
- content: "\e194";
866
- }
867
- .glyphicon-registration-mark:before {
868
- content: "\e195";
869
- }
870
- .glyphicon-cloud-download:before {
871
- content: "\e197";
872
- }
873
- .glyphicon-cloud-upload:before {
874
- content: "\e198";
875
- }
876
- .glyphicon-tree-conifer:before {
877
- content: "\e199";
878
- }
879
- .glyphicon-tree-deciduous:before {
880
- content: "\e200";
881
- }
882
- .glyphicon-cd:before {
883
- content: "\e201";
884
- }
885
- .glyphicon-save-file:before {
886
- content: "\e202";
887
- }
888
- .glyphicon-open-file:before {
889
- content: "\e203";
890
- }
891
- .glyphicon-level-up:before {
892
- content: "\e204";
893
- }
894
- .glyphicon-copy:before {
895
- content: "\e205";
896
- }
897
- .glyphicon-paste:before {
898
- content: "\e206";
899
- }
900
- .glyphicon-alert:before {
901
- content: "\e209";
902
- }
903
- .glyphicon-equalizer:before {
904
- content: "\e210";
905
- }
906
- .glyphicon-king:before {
907
- content: "\e211";
908
- }
909
- .glyphicon-queen:before {
910
- content: "\e212";
911
- }
912
- .glyphicon-pawn:before {
913
- content: "\e213";
914
- }
915
- .glyphicon-bishop:before {
916
- content: "\e214";
917
- }
918
- .glyphicon-knight:before {
919
- content: "\e215";
920
- }
921
- .glyphicon-baby-formula:before {
922
- content: "\e216";
923
- }
924
- .glyphicon-tent:before {
925
- content: "\26fa";
926
- }
927
- .glyphicon-blackboard:before {
928
- content: "\e218";
929
- }
930
- .glyphicon-bed:before {
931
- content: "\e219";
932
- }
933
- .glyphicon-apple:before {
934
- content: "\f8ff";
935
- }
936
- .glyphicon-erase:before {
937
- content: "\e221";
938
- }
939
- .glyphicon-hourglass:before {
940
- content: "\231b";
941
- }
942
- .glyphicon-lamp:before {
943
- content: "\e223";
944
- }
945
- .glyphicon-duplicate:before {
946
- content: "\e224";
947
- }
948
- .glyphicon-piggy-bank:before {
949
- content: "\e225";
950
- }
951
- .glyphicon-scissors:before {
952
- content: "\e226";
953
- }
954
- .glyphicon-bitcoin:before {
955
- content: "\e227";
956
- }
957
- .glyphicon-btc:before {
958
- content: "\e227";
959
- }
960
- .glyphicon-xbt:before {
961
- content: "\e227";
962
- }
963
- .glyphicon-yen:before {
964
- content: "\00a5";
965
- }
966
- .glyphicon-jpy:before {
967
- content: "\00a5";
968
- }
969
- .glyphicon-ruble:before {
970
- content: "\20bd";
971
- }
972
- .glyphicon-rub:before {
973
- content: "\20bd";
974
- }
975
- .glyphicon-scale:before {
976
- content: "\e230";
977
- }
978
- .glyphicon-ice-lolly:before {
979
- content: "\e231";
980
- }
981
- .glyphicon-ice-lolly-tasted:before {
982
- content: "\e232";
983
- }
984
- .glyphicon-education:before {
985
- content: "\e233";
986
- }
987
- .glyphicon-option-horizontal:before {
988
- content: "\e234";
989
- }
990
- .glyphicon-option-vertical:before {
991
- content: "\e235";
992
- }
993
- .glyphicon-menu-hamburger:before {
994
- content: "\e236";
995
- }
996
- .glyphicon-modal-window:before {
997
- content: "\e237";
998
- }
999
- .glyphicon-oil:before {
1000
- content: "\e238";
1001
- }
1002
- .glyphicon-grain:before {
1003
- content: "\e239";
1004
- }
1005
- .glyphicon-sunglasses:before {
1006
- content: "\e240";
1007
- }
1008
- .glyphicon-text-size:before {
1009
- content: "\e241";
1010
- }
1011
- .glyphicon-text-color:before {
1012
- content: "\e242";
1013
- }
1014
- .glyphicon-text-background:before {
1015
- content: "\e243";
1016
- }
1017
- .glyphicon-object-align-top:before {
1018
- content: "\e244";
1019
- }
1020
- .glyphicon-object-align-bottom:before {
1021
- content: "\e245";
1022
- }
1023
- .glyphicon-object-align-horizontal:before {
1024
- content: "\e246";
1025
- }
1026
- .glyphicon-object-align-left:before {
1027
- content: "\e247";
1028
- }
1029
- .glyphicon-object-align-vertical:before {
1030
- content: "\e248";
1031
- }
1032
- .glyphicon-object-align-right:before {
1033
- content: "\e249";
1034
- }
1035
- .glyphicon-triangle-right:before {
1036
- content: "\e250";
1037
- }
1038
- .glyphicon-triangle-left:before {
1039
- content: "\e251";
1040
- }
1041
- .glyphicon-triangle-bottom:before {
1042
- content: "\e252";
1043
- }
1044
- .glyphicon-triangle-top:before {
1045
- content: "\e253";
1046
- }
1047
- .glyphicon-console:before {
1048
- content: "\e254";
1049
- }
1050
- .glyphicon-superscript:before {
1051
- content: "\e255";
1052
- }
1053
- .glyphicon-subscript:before {
1054
- content: "\e256";
1055
- }
1056
- .glyphicon-menu-left:before {
1057
- content: "\e257";
1058
- }
1059
- .glyphicon-menu-right:before {
1060
- content: "\e258";
1061
- }
1062
- .glyphicon-menu-down:before {
1063
- content: "\e259";
1064
- }
1065
- .glyphicon-menu-up:before {
1066
- content: "\e260";
1067
- }
1068
- * {
1069
- -webkit-box-sizing: border-box;
1070
- -moz-box-sizing: border-box;
1071
- box-sizing: border-box;
1072
- }
1073
- *:before,
1074
- *:after {
1075
- -webkit-box-sizing: border-box;
1076
- -moz-box-sizing: border-box;
1077
- box-sizing: border-box;
1078
- }
1079
- html {
1080
- font-size: 10px;
1081
-
1082
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1083
- }
1084
- body {
1085
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1086
- font-size: 14px;
1087
- line-height: 1.42857143;
1088
- color: #333;
1089
- background-color: #fff;
1090
- }
1091
- input,
1092
- button,
1093
- select,
1094
- textarea {
1095
- font-family: inherit;
1096
- font-size: inherit;
1097
- line-height: inherit;
1098
- }
1099
- a {
1100
- color: #337ab7;
1101
- text-decoration: none;
1102
- }
1103
- a:hover,
1104
- a:focus {
1105
- color: #23527c;
1106
- text-decoration: underline;
1107
- }
1108
- a:focus {
1109
- outline: thin dotted;
1110
- outline: 5px auto -webkit-focus-ring-color;
1111
- outline-offset: -2px;
1112
- }
1113
- figure {
1114
- margin: 0;
1115
- }
1116
- img {
1117
- vertical-align: middle;
1118
- }
1119
- .img-responsive,
1120
- .thumbnail > img,
1121
- .thumbnail a > img,
1122
- .carousel-inner > .item > img,
1123
- .carousel-inner > .item > a > img {
1124
- display: block;
1125
- max-width: 100%;
1126
- height: auto;
1127
- }
1128
- .img-rounded {
1129
- border-radius: 6px;
1130
- }
1131
- .img-thumbnail {
1132
- display: inline-block;
1133
- max-width: 100%;
1134
- height: auto;
1135
- padding: 4px;
1136
- line-height: 1.42857143;
1137
- background-color: #fff;
1138
- border: 1px solid #ddd;
1139
- border-radius: 4px;
1140
- -webkit-transition: all .2s ease-in-out;
1141
- -o-transition: all .2s ease-in-out;
1142
- transition: all .2s ease-in-out;
1143
- }
1144
- .img-circle {
1145
- border-radius: 50%;
1146
- }
1147
- hr {
1148
- margin-top: 20px;
1149
- margin-bottom: 20px;
1150
- border: 0;
1151
- border-top: 1px solid #eee;
1152
- }
1153
- .sr-only {
1154
- position: absolute;
1155
- width: 1px;
1156
- height: 1px;
1157
- padding: 0;
1158
- margin: -1px;
1159
- overflow: hidden;
1160
- clip: rect(0, 0, 0, 0);
1161
- border: 0;
1162
- }
1163
- .sr-only-focusable:active,
1164
- .sr-only-focusable:focus {
1165
- position: static;
1166
- width: auto;
1167
- height: auto;
1168
- margin: 0;
1169
- overflow: visible;
1170
- clip: auto;
1171
- }
1172
- [role="button"] {
1173
- cursor: pointer;
1174
- }
1175
- h1,
1176
- h2,
1177
- h3,
1178
- h4,
1179
- h5,
1180
- h6,
1181
- .h1,
1182
- .h2,
1183
- .h3,
1184
- .h4,
1185
- .h5,
1186
- .h6 {
1187
- font-family: inherit;
1188
- font-weight: 500;
1189
- line-height: 1.1;
1190
- color: inherit;
1191
- }
1192
- h1 small,
1193
- h2 small,
1194
- h3 small,
1195
- h4 small,
1196
- h5 small,
1197
- h6 small,
1198
- .h1 small,
1199
- .h2 small,
1200
- .h3 small,
1201
- .h4 small,
1202
- .h5 small,
1203
- .h6 small,
1204
- h1 .small,
1205
- h2 .small,
1206
- h3 .small,
1207
- h4 .small,
1208
- h5 .small,
1209
- h6 .small,
1210
- .h1 .small,
1211
- .h2 .small,
1212
- .h3 .small,
1213
- .h4 .small,
1214
- .h5 .small,
1215
- .h6 .small {
1216
- font-weight: normal;
1217
- line-height: 1;
1218
- color: #777;
1219
- }
1220
- h1,
1221
- .h1,
1222
- h2,
1223
- .h2,
1224
- h3,
1225
- .h3 {
1226
- margin-top: 20px;
1227
- margin-bottom: 10px;
1228
- }
1229
- h1 small,
1230
- .h1 small,
1231
- h2 small,
1232
- .h2 small,
1233
- h3 small,
1234
- .h3 small,
1235
- h1 .small,
1236
- .h1 .small,
1237
- h2 .small,
1238
- .h2 .small,
1239
- h3 .small,
1240
- .h3 .small {
1241
- font-size: 65%;
1242
- }
1243
- h4,
1244
- .h4,
1245
- h5,
1246
- .h5,
1247
- h6,
1248
- .h6 {
1249
- margin-top: 10px;
1250
- margin-bottom: 10px;
1251
- }
1252
- h4 small,
1253
- .h4 small,
1254
- h5 small,
1255
- .h5 small,
1256
- h6 small,
1257
- .h6 small,
1258
- h4 .small,
1259
- .h4 .small,
1260
- h5 .small,
1261
- .h5 .small,
1262
- h6 .small,
1263
- .h6 .small {
1264
- font-size: 75%;
1265
- }
1266
- h1,
1267
- .h1 {
1268
- font-size: 36px;
1269
- }
1270
- h2,
1271
- .h2 {
1272
- font-size: 30px;
1273
- }
1274
- h3,
1275
- .h3 {
1276
- font-size: 24px;
1277
- }
1278
- h4,
1279
- .h4 {
1280
- font-size: 18px;
1281
- }
1282
- h5,
1283
- .h5 {
1284
- font-size: 14px;
1285
- }
1286
- h6,
1287
- .h6 {
1288
- font-size: 12px;
1289
- }
1290
- p {
1291
- margin: 0 0 10px;
1292
- }
1293
- .lead {
1294
- margin-bottom: 20px;
1295
- font-size: 16px;
1296
- font-weight: 300;
1297
- line-height: 1.4;
1298
- }
1299
- @media (min-width: 768px) {
1300
- .lead {
1301
- font-size: 21px;
1302
- }
1303
- }
1304
- small,
1305
- .small {
1306
- font-size: 85%;
1307
- }
1308
- mark,
1309
- .mark {
1310
- padding: .2em;
1311
- background-color: #fcf8e3;
1312
- }
1313
- .text-left {
1314
- text-align: left;
1315
- }
1316
- .text-right {
1317
- text-align: right;
1318
- }
1319
- .text-center {
1320
- text-align: center;
1321
- }
1322
- .text-justify {
1323
- text-align: justify;
1324
- }
1325
- .text-nowrap {
1326
- white-space: nowrap;
1327
- }
1328
- .text-lowercase {
1329
- text-transform: lowercase;
1330
- }
1331
- .text-uppercase {
1332
- text-transform: uppercase;
1333
- }
1334
- .text-capitalize {
1335
- text-transform: capitalize;
1336
- }
1337
- .text-muted {
1338
- color: #777;
1339
- }
1340
- .text-primary {
1341
- color: #337ab7;
1342
- }
1343
- a.text-primary:hover,
1344
- a.text-primary:focus {
1345
- color: #286090;
1346
- }
1347
- .text-success {
1348
- color: #3c763d;
1349
- }
1350
- a.text-success:hover,
1351
- a.text-success:focus {
1352
- color: #2b542c;
1353
- }
1354
- .text-info {
1355
- color: #31708f;
1356
- }
1357
- a.text-info:hover,
1358
- a.text-info:focus {
1359
- color: #245269;
1360
- }
1361
- .text-warning {
1362
- color: #8a6d3b;
1363
- }
1364
- a.text-warning:hover,
1365
- a.text-warning:focus {
1366
- color: #66512c;
1367
- }
1368
- .text-danger {
1369
- color: #a94442;
1370
- }
1371
- a.text-danger:hover,
1372
- a.text-danger:focus {
1373
- color: #843534;
1374
- }
1375
- .bg-primary {
1376
- color: #fff;
1377
- background-color: #337ab7;
1378
- }
1379
- a.bg-primary:hover,
1380
- a.bg-primary:focus {
1381
- background-color: #286090;
1382
- }
1383
- .bg-success {
1384
- background-color: #dff0d8;
1385
- }
1386
- a.bg-success:hover,
1387
- a.bg-success:focus {
1388
- background-color: #c1e2b3;
1389
- }
1390
- .bg-info {
1391
- background-color: #d9edf7;
1392
- }
1393
- a.bg-info:hover,
1394
- a.bg-info:focus {
1395
- background-color: #afd9ee;
1396
- }
1397
- .bg-warning {
1398
- background-color: #fcf8e3;
1399
- }
1400
- a.bg-warning:hover,
1401
- a.bg-warning:focus {
1402
- background-color: #f7ecb5;
1403
- }
1404
- .bg-danger {
1405
- background-color: #f2dede;
1406
- }
1407
- a.bg-danger:hover,
1408
- a.bg-danger:focus {
1409
- background-color: #e4b9b9;
1410
- }
1411
- .page-header {
1412
- padding-bottom: 9px;
1413
- margin: 40px 0 20px;
1414
- border-bottom: 1px solid #eee;
1415
- }
1416
- ul,
1417
- ol {
1418
- margin-top: 0;
1419
- margin-bottom: 10px;
1420
- }
1421
- ul ul,
1422
- ol ul,
1423
- ul ol,
1424
- ol ol {
1425
- margin-bottom: 0;
1426
- }
1427
- .list-unstyled {
1428
- padding-left: 0;
1429
- list-style: none;
1430
- }
1431
- .list-inline {
1432
- padding-left: 0;
1433
- margin-left: -5px;
1434
- list-style: none;
1435
- }
1436
- .list-inline > li {
1437
- display: inline-block;
1438
- padding-right: 5px;
1439
- padding-left: 5px;
1440
- }
1441
- dl {
1442
- margin-top: 0;
1443
- margin-bottom: 20px;
1444
- }
1445
- dt,
1446
- dd {
1447
- line-height: 1.42857143;
1448
- }
1449
- dt {
1450
- font-weight: bold;
1451
- }
1452
- dd {
1453
- margin-left: 0;
1454
- }
1455
- @media (min-width: 768px) {
1456
- .dl-horizontal dt {
1457
- float: left;
1458
- width: 160px;
1459
- overflow: hidden;
1460
- clear: left;
1461
- text-align: right;
1462
- text-overflow: ellipsis;
1463
- white-space: nowrap;
1464
- }
1465
- .dl-horizontal dd {
1466
- margin-left: 180px;
1467
- }
1468
- }
1469
- abbr[title],
1470
- abbr[data-original-title] {
1471
- cursor: help;
1472
- border-bottom: 1px dotted #777;
1473
- }
1474
- .initialism {
1475
- font-size: 90%;
1476
- text-transform: uppercase;
1477
- }
1478
- blockquote {
1479
- padding: 10px 20px;
1480
- margin: 0 0 20px;
1481
- font-size: 17.5px;
1482
- border-left: 5px solid #eee;
1483
- }
1484
- blockquote p:last-child,
1485
- blockquote ul:last-child,
1486
- blockquote ol:last-child {
1487
- margin-bottom: 0;
1488
- }
1489
- blockquote footer,
1490
- blockquote small,
1491
- blockquote .small {
1492
- display: block;
1493
- font-size: 80%;
1494
- line-height: 1.42857143;
1495
- color: #777;
1496
- }
1497
- blockquote footer:before,
1498
- blockquote small:before,
1499
- blockquote .small:before {
1500
- content: '\2014 \00A0';
1501
- }
1502
- .blockquote-reverse,
1503
- blockquote.pull-right {
1504
- padding-right: 15px;
1505
- padding-left: 0;
1506
- text-align: right;
1507
- border-right: 5px solid #eee;
1508
- border-left: 0;
1509
- }
1510
- .blockquote-reverse footer:before,
1511
- blockquote.pull-right footer:before,
1512
- .blockquote-reverse small:before,
1513
- blockquote.pull-right small:before,
1514
- .blockquote-reverse .small:before,
1515
- blockquote.pull-right .small:before {
1516
- content: '';
1517
- }
1518
- .blockquote-reverse footer:after,
1519
- blockquote.pull-right footer:after,
1520
- .blockquote-reverse small:after,
1521
- blockquote.pull-right small:after,
1522
- .blockquote-reverse .small:after,
1523
- blockquote.pull-right .small:after {
1524
- content: '\00A0 \2014';
1525
- }
1526
- address {
1527
- margin-bottom: 20px;
1528
- font-style: normal;
1529
- line-height: 1.42857143;
1530
- }
1531
- code,
1532
- kbd,
1533
- pre,
1534
- samp {
1535
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1536
- }
1537
- code {
1538
- padding: 2px 4px;
1539
- font-size: 90%;
1540
- color: #c7254e;
1541
- background-color: #f9f2f4;
1542
- border-radius: 4px;
1543
- }
1544
- kbd {
1545
- padding: 2px 4px;
1546
- font-size: 90%;
1547
- color: #fff;
1548
- background-color: #333;
1549
- border-radius: 3px;
1550
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1551
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1552
- }
1553
- kbd kbd {
1554
- padding: 0;
1555
- font-size: 100%;
1556
- font-weight: bold;
1557
- -webkit-box-shadow: none;
1558
- box-shadow: none;
1559
- }
1560
- pre {
1561
- display: block;
1562
- padding: 9.5px;
1563
- margin: 0 0 10px;
1564
- font-size: 13px;
1565
- line-height: 1.42857143;
1566
- color: #333;
1567
- word-break: break-all;
1568
- word-wrap: break-word;
1569
- background-color: #f5f5f5;
1570
- border: 1px solid #ccc;
1571
- border-radius: 4px;
1572
- }
1573
- pre code {
1574
- padding: 0;
1575
- font-size: inherit;
1576
- color: inherit;
1577
- white-space: pre-wrap;
1578
- background-color: transparent;
1579
- border-radius: 0;
1580
- }
1581
- .pre-scrollable {
1582
- max-height: 340px;
1583
- overflow-y: scroll;
1584
- }
1585
- .container {
1586
- padding-right: 15px;
1587
- padding-left: 15px;
1588
- margin-right: auto;
1589
- margin-left: auto;
1590
- }
1591
- @media (min-width: 768px) {
1592
- .container {
1593
- width: 750px;
1594
- }
1595
- }
1596
- @media (min-width: 992px) {
1597
- .container {
1598
- width: 970px;
1599
- }
1600
- }
1601
- @media (min-width: 1200px) {
1602
- .container {
1603
- width: 1170px;
1604
- }
1605
- }
1606
- .container-fluid {
1607
- padding-right: 15px;
1608
- padding-left: 15px;
1609
- margin-right: auto;
1610
- margin-left: auto;
1611
- }
1612
- .row {
1613
- margin-right: -15px;
1614
- margin-left: -15px;
1615
- }
1616
- .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
1617
- position: relative;
1618
- min-height: 1px;
1619
- padding-right: 15px;
1620
- padding-left: 15px;
1621
- }
1622
- .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
1623
- float: left;
1624
- }
1625
- .col-xs-12 {
1626
- width: 100%;
1627
- }
1628
- .col-xs-11 {
1629
- width: 91.66666667%;
1630
- }
1631
- .col-xs-10 {
1632
- width: 83.33333333%;
1633
- }
1634
- .col-xs-9 {
1635
- width: 75%;
1636
- }
1637
- .col-xs-8 {
1638
- width: 66.66666667%;
1639
- }
1640
- .col-xs-7 {
1641
- width: 58.33333333%;
1642
- }
1643
- .col-xs-6 {
1644
- width: 50%;
1645
- }
1646
- .col-xs-5 {
1647
- width: 41.66666667%;
1648
- }
1649
- .col-xs-4 {
1650
- width: 33.33333333%;
1651
- }
1652
- .col-xs-3 {
1653
- width: 25%;
1654
- }
1655
- .col-xs-2 {
1656
- width: 16.66666667%;
1657
- }
1658
- .col-xs-1 {
1659
- width: 8.33333333%;
1660
- }
1661
- .col-xs-pull-12 {
1662
- right: 100%;
1663
- }
1664
- .col-xs-pull-11 {
1665
- right: 91.66666667%;
1666
- }
1667
- .col-xs-pull-10 {
1668
- right: 83.33333333%;
1669
- }
1670
- .col-xs-pull-9 {
1671
- right: 75%;
1672
- }
1673
- .col-xs-pull-8 {
1674
- right: 66.66666667%;
1675
- }
1676
- .col-xs-pull-7 {
1677
- right: 58.33333333%;
1678
- }
1679
- .col-xs-pull-6 {
1680
- right: 50%;
1681
- }
1682
- .col-xs-pull-5 {
1683
- right: 41.66666667%;
1684
- }
1685
- .col-xs-pull-4 {
1686
- right: 33.33333333%;
1687
- }
1688
- .col-xs-pull-3 {
1689
- right: 25%;
1690
- }
1691
- .col-xs-pull-2 {
1692
- right: 16.66666667%;
1693
- }
1694
- .col-xs-pull-1 {
1695
- right: 8.33333333%;
1696
- }
1697
- .col-xs-pull-0 {
1698
- right: auto;
1699
- }
1700
- .col-xs-push-12 {
1701
- left: 100%;
1702
- }
1703
- .col-xs-push-11 {
1704
- left: 91.66666667%;
1705
- }
1706
- .col-xs-push-10 {
1707
- left: 83.33333333%;
1708
- }
1709
- .col-xs-push-9 {
1710
- left: 75%;
1711
- }
1712
- .col-xs-push-8 {
1713
- left: 66.66666667%;
1714
- }
1715
- .col-xs-push-7 {
1716
- left: 58.33333333%;
1717
- }
1718
- .col-xs-push-6 {
1719
- left: 50%;
1720
- }
1721
- .col-xs-push-5 {
1722
- left: 41.66666667%;
1723
- }
1724
- .col-xs-push-4 {
1725
- left: 33.33333333%;
1726
- }
1727
- .col-xs-push-3 {
1728
- left: 25%;
1729
- }
1730
- .col-xs-push-2 {
1731
- left: 16.66666667%;
1732
- }
1733
- .col-xs-push-1 {
1734
- left: 8.33333333%;
1735
- }
1736
- .col-xs-push-0 {
1737
- left: auto;
1738
- }
1739
- .col-xs-offset-12 {
1740
- margin-left: 100%;
1741
- }
1742
- .col-xs-offset-11 {
1743
- margin-left: 91.66666667%;
1744
- }
1745
- .col-xs-offset-10 {
1746
- margin-left: 83.33333333%;
1747
- }
1748
- .col-xs-offset-9 {
1749
- margin-left: 75%;
1750
- }
1751
- .col-xs-offset-8 {
1752
- margin-left: 66.66666667%;
1753
- }
1754
- .col-xs-offset-7 {
1755
- margin-left: 58.33333333%;
1756
- }
1757
- .col-xs-offset-6 {
1758
- margin-left: 50%;
1759
- }
1760
- .col-xs-offset-5 {
1761
- margin-left: 41.66666667%;
1762
- }
1763
- .col-xs-offset-4 {
1764
- margin-left: 33.33333333%;
1765
- }
1766
- .col-xs-offset-3 {
1767
- margin-left: 25%;
1768
- }
1769
- .col-xs-offset-2 {
1770
- margin-left: 16.66666667%;
1771
- }
1772
- .col-xs-offset-1 {
1773
- margin-left: 8.33333333%;
1774
- }
1775
- .col-xs-offset-0 {
1776
- margin-left: 0;
1777
- }
1778
- @media (min-width: 768px) {
1779
- .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
1780
- float: left;
1781
- }
1782
- .col-sm-12 {
1783
- width: 100%;
1784
- }
1785
- .col-sm-11 {
1786
- width: 91.66666667%;
1787
- }
1788
- .col-sm-10 {
1789
- width: 83.33333333%;
1790
- }
1791
- .col-sm-9 {
1792
- width: 75%;
1793
- }
1794
- .col-sm-8 {
1795
- width: 66.66666667%;
1796
- }
1797
- .col-sm-7 {
1798
- width: 58.33333333%;
1799
- }
1800
- .col-sm-6 {
1801
- width: 50%;
1802
- }
1803
- .col-sm-5 {
1804
- width: 41.66666667%;
1805
- }
1806
- .col-sm-4 {
1807
- width: 33.33333333%;
1808
- }
1809
- .col-sm-3 {
1810
- width: 25%;
1811
- }
1812
- .col-sm-2 {
1813
- width: 16.66666667%;
1814
- }
1815
- .col-sm-1 {
1816
- width: 8.33333333%;
1817
- }
1818
- .col-sm-pull-12 {
1819
- right: 100%;
1820
- }
1821
- .col-sm-pull-11 {
1822
- right: 91.66666667%;
1823
- }
1824
- .col-sm-pull-10 {
1825
- right: 83.33333333%;
1826
- }
1827
- .col-sm-pull-9 {
1828
- right: 75%;
1829
- }
1830
- .col-sm-pull-8 {
1831
- right: 66.66666667%;
1832
- }
1833
- .col-sm-pull-7 {
1834
- right: 58.33333333%;
1835
- }
1836
- .col-sm-pull-6 {
1837
- right: 50%;
1838
- }
1839
- .col-sm-pull-5 {
1840
- right: 41.66666667%;
1841
- }
1842
- .col-sm-pull-4 {
1843
- right: 33.33333333%;
1844
- }
1845
- .col-sm-pull-3 {
1846
- right: 25%;
1847
- }
1848
- .col-sm-pull-2 {
1849
- right: 16.66666667%;
1850
- }
1851
- .col-sm-pull-1 {
1852
- right: 8.33333333%;
1853
- }
1854
- .col-sm-pull-0 {
1855
- right: auto;
1856
- }
1857
- .col-sm-push-12 {
1858
- left: 100%;
1859
- }
1860
- .col-sm-push-11 {
1861
- left: 91.66666667%;
1862
- }
1863
- .col-sm-push-10 {
1864
- left: 83.33333333%;
1865
- }
1866
- .col-sm-push-9 {
1867
- left: 75%;
1868
- }
1869
- .col-sm-push-8 {
1870
- left: 66.66666667%;
1871
- }
1872
- .col-sm-push-7 {
1873
- left: 58.33333333%;
1874
- }
1875
- .col-sm-push-6 {
1876
- left: 50%;
1877
- }
1878
- .col-sm-push-5 {
1879
- left: 41.66666667%;
1880
- }
1881
- .col-sm-push-4 {
1882
- left: 33.33333333%;
1883
- }
1884
- .col-sm-push-3 {
1885
- left: 25%;
1886
- }
1887
- .col-sm-push-2 {
1888
- left: 16.66666667%;
1889
- }
1890
- .col-sm-push-1 {
1891
- left: 8.33333333%;
1892
- }
1893
- .col-sm-push-0 {
1894
- left: auto;
1895
- }
1896
- .col-sm-offset-12 {
1897
- margin-left: 100%;
1898
- }
1899
- .col-sm-offset-11 {
1900
- margin-left: 91.66666667%;
1901
- }
1902
- .col-sm-offset-10 {
1903
- margin-left: 83.33333333%;
1904
- }
1905
- .col-sm-offset-9 {
1906
- margin-left: 75%;
1907
- }
1908
- .col-sm-offset-8 {
1909
- margin-left: 66.66666667%;
1910
- }
1911
- .col-sm-offset-7 {
1912
- margin-left: 58.33333333%;
1913
- }
1914
- .col-sm-offset-6 {
1915
- margin-left: 50%;
1916
- }
1917
- .col-sm-offset-5 {
1918
- margin-left: 41.66666667%;
1919
- }
1920
- .col-sm-offset-4 {
1921
- margin-left: 33.33333333%;
1922
- }
1923
- .col-sm-offset-3 {
1924
- margin-left: 25%;
1925
- }
1926
- .col-sm-offset-2 {
1927
- margin-left: 16.66666667%;
1928
- }
1929
- .col-sm-offset-1 {
1930
- margin-left: 8.33333333%;
1931
- }
1932
- .col-sm-offset-0 {
1933
- margin-left: 0;
1934
- }
1935
- }
1936
- @media (min-width: 992px) {
1937
- .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1938
- float: left;
1939
- }
1940
- .col-md-12 {
1941
- width: 100%;
1942
- }
1943
- .col-md-11 {
1944
- width: 91.66666667%;
1945
- }
1946
- .col-md-10 {
1947
- width: 83.33333333%;
1948
- }
1949
- .col-md-9 {
1950
- width: 75%;
1951
- }
1952
- .col-md-8 {
1953
- width: 66.66666667%;
1954
- }
1955
- .col-md-7 {
1956
- width: 58.33333333%;
1957
- }
1958
- .col-md-6 {
1959
- width: 50%;
1960
- }
1961
- .col-md-5 {
1962
- width: 41.66666667%;
1963
- }
1964
- .col-md-4 {
1965
- width: 33.33333333%;
1966
- }
1967
- .col-md-3 {
1968
- width: 25%;
1969
- }
1970
- .col-md-2 {
1971
- width: 16.66666667%;
1972
- }
1973
- .col-md-1 {
1974
- width: 8.33333333%;
1975
- }
1976
- .col-md-pull-12 {
1977
- right: 100%;
1978
- }
1979
- .col-md-pull-11 {
1980
- right: 91.66666667%;
1981
- }
1982
- .col-md-pull-10 {
1983
- right: 83.33333333%;
1984
- }
1985
- .col-md-pull-9 {
1986
- right: 75%;
1987
- }
1988
- .col-md-pull-8 {
1989
- right: 66.66666667%;
1990
- }
1991
- .col-md-pull-7 {
1992
- right: 58.33333333%;
1993
- }
1994
- .col-md-pull-6 {
1995
- right: 50%;
1996
- }
1997
- .col-md-pull-5 {
1998
- right: 41.66666667%;
1999
- }
2000
- .col-md-pull-4 {
2001
- right: 33.33333333%;
2002
- }
2003
- .col-md-pull-3 {
2004
- right: 25%;
2005
- }
2006
- .col-md-pull-2 {
2007
- right: 16.66666667%;
2008
- }
2009
- .col-md-pull-1 {
2010
- right: 8.33333333%;
2011
- }
2012
- .col-md-pull-0 {
2013
- right: auto;
2014
- }
2015
- .col-md-push-12 {
2016
- left: 100%;
2017
- }
2018
- .col-md-push-11 {
2019
- left: 91.66666667%;
2020
- }
2021
- .col-md-push-10 {
2022
- left: 83.33333333%;
2023
- }
2024
- .col-md-push-9 {
2025
- left: 75%;
2026
- }
2027
- .col-md-push-8 {
2028
- left: 66.66666667%;
2029
- }
2030
- .col-md-push-7 {
2031
- left: 58.33333333%;
2032
- }
2033
- .col-md-push-6 {
2034
- left: 50%;
2035
- }
2036
- .col-md-push-5 {
2037
- left: 41.66666667%;
2038
- }
2039
- .col-md-push-4 {
2040
- left: 33.33333333%;
2041
- }
2042
- .col-md-push-3 {
2043
- left: 25%;
2044
- }
2045
- .col-md-push-2 {
2046
- left: 16.66666667%;
2047
- }
2048
- .col-md-push-1 {
2049
- left: 8.33333333%;
2050
- }
2051
- .col-md-push-0 {
2052
- left: auto;
2053
- }
2054
- .col-md-offset-12 {
2055
- margin-left: 100%;
2056
- }
2057
- .col-md-offset-11 {
2058
- margin-left: 91.66666667%;
2059
- }
2060
- .col-md-offset-10 {
2061
- margin-left: 83.33333333%;
2062
- }
2063
- .col-md-offset-9 {
2064
- margin-left: 75%;
2065
- }
2066
- .col-md-offset-8 {
2067
- margin-left: 66.66666667%;
2068
- }
2069
- .col-md-offset-7 {
2070
- margin-left: 58.33333333%;
2071
- }
2072
- .col-md-offset-6 {
2073
- margin-left: 50%;
2074
- }
2075
- .col-md-offset-5 {
2076
- margin-left: 41.66666667%;
2077
- }
2078
- .col-md-offset-4 {
2079
- margin-left: 33.33333333%;
2080
- }
2081
- .col-md-offset-3 {
2082
- margin-left: 25%;
2083
- }
2084
- .col-md-offset-2 {
2085
- margin-left: 16.66666667%;
2086
- }
2087
- .col-md-offset-1 {
2088
- margin-left: 8.33333333%;
2089
- }
2090
- .col-md-offset-0 {
2091
- margin-left: 0;
2092
- }
2093
- }
2094
- @media (min-width: 1200px) {
2095
- .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
2096
- float: left;
2097
- }
2098
- .col-lg-12 {
2099
- width: 100%;
2100
- }
2101
- .col-lg-11 {
2102
- width: 91.66666667%;
2103
- }
2104
- .col-lg-10 {
2105
- width: 83.33333333%;
2106
- }
2107
- .col-lg-9 {
2108
- width: 75%;
2109
- }
2110
- .col-lg-8 {
2111
- width: 66.66666667%;
2112
- }
2113
- .col-lg-7 {
2114
- width: 58.33333333%;
2115
- }
2116
- .col-lg-6 {
2117
- width: 50%;
2118
- }
2119
- .col-lg-5 {
2120
- width: 41.66666667%;
2121
- }
2122
- .col-lg-4 {
2123
- width: 33.33333333%;
2124
- }
2125
- .col-lg-3 {
2126
- width: 25%;
2127
- }
2128
- .col-lg-2 {
2129
- width: 16.66666667%;
2130
- }
2131
- .col-lg-1 {
2132
- width: 8.33333333%;
2133
- }
2134
- .col-lg-pull-12 {
2135
- right: 100%;
2136
- }
2137
- .col-lg-pull-11 {
2138
- right: 91.66666667%;
2139
- }
2140
- .col-lg-pull-10 {
2141
- right: 83.33333333%;
2142
- }
2143
- .col-lg-pull-9 {
2144
- right: 75%;
2145
- }
2146
- .col-lg-pull-8 {
2147
- right: 66.66666667%;
2148
- }
2149
- .col-lg-pull-7 {
2150
- right: 58.33333333%;
2151
- }
2152
- .col-lg-pull-6 {
2153
- right: 50%;
2154
- }
2155
- .col-lg-pull-5 {
2156
- right: 41.66666667%;
2157
- }
2158
- .col-lg-pull-4 {
2159
- right: 33.33333333%;
2160
- }
2161
- .col-lg-pull-3 {
2162
- right: 25%;
2163
- }
2164
- .col-lg-pull-2 {
2165
- right: 16.66666667%;
2166
- }
2167
- .col-lg-pull-1 {
2168
- right: 8.33333333%;
2169
- }
2170
- .col-lg-pull-0 {
2171
- right: auto;
2172
- }
2173
- .col-lg-push-12 {
2174
- left: 100%;
2175
- }
2176
- .col-lg-push-11 {
2177
- left: 91.66666667%;
2178
- }
2179
- .col-lg-push-10 {
2180
- left: 83.33333333%;
2181
- }
2182
- .col-lg-push-9 {
2183
- left: 75%;
2184
- }
2185
- .col-lg-push-8 {
2186
- left: 66.66666667%;
2187
- }
2188
- .col-lg-push-7 {
2189
- left: 58.33333333%;
2190
- }
2191
- .col-lg-push-6 {
2192
- left: 50%;
2193
- }
2194
- .col-lg-push-5 {
2195
- left: 41.66666667%;
2196
- }
2197
- .col-lg-push-4 {
2198
- left: 33.33333333%;
2199
- }
2200
- .col-lg-push-3 {
2201
- left: 25%;
2202
- }
2203
- .col-lg-push-2 {
2204
- left: 16.66666667%;
2205
- }
2206
- .col-lg-push-1 {
2207
- left: 8.33333333%;
2208
- }
2209
- .col-lg-push-0 {
2210
- left: auto;
2211
- }
2212
- .col-lg-offset-12 {
2213
- margin-left: 100%;
2214
- }
2215
- .col-lg-offset-11 {
2216
- margin-left: 91.66666667%;
2217
- }
2218
- .col-lg-offset-10 {
2219
- margin-left: 83.33333333%;
2220
- }
2221
- .col-lg-offset-9 {
2222
- margin-left: 75%;
2223
- }
2224
- .col-lg-offset-8 {
2225
- margin-left: 66.66666667%;
2226
- }
2227
- .col-lg-offset-7 {
2228
- margin-left: 58.33333333%;
2229
- }
2230
- .col-lg-offset-6 {
2231
- margin-left: 50%;
2232
- }
2233
- .col-lg-offset-5 {
2234
- margin-left: 41.66666667%;
2235
- }
2236
- .col-lg-offset-4 {
2237
- margin-left: 33.33333333%;
2238
- }
2239
- .col-lg-offset-3 {
2240
- margin-left: 25%;
2241
- }
2242
- .col-lg-offset-2 {
2243
- margin-left: 16.66666667%;
2244
- }
2245
- .col-lg-offset-1 {
2246
- margin-left: 8.33333333%;
2247
- }
2248
- .col-lg-offset-0 {
2249
- margin-left: 0;
2250
- }
2251
- }
2252
- table {
2253
- background-color: transparent;
2254
- }
2255
- caption {
2256
- padding-top: 8px;
2257
- padding-bottom: 8px;
2258
- color: #777;
2259
- text-align: left;
2260
- }
2261
- th {
2262
- text-align: left;
2263
- }
2264
- .table {
2265
- width: 100%;
2266
- max-width: 100%;
2267
- margin-bottom: 20px;
2268
- }
2269
- .table > thead > tr > th,
2270
- .table > tbody > tr > th,
2271
- .table > tfoot > tr > th,
2272
- .table > thead > tr > td,
2273
- .table > tbody > tr > td,
2274
- .table > tfoot > tr > td {
2275
- padding: 8px;
2276
- line-height: 1.42857143;
2277
- vertical-align: top;
2278
- border-top: 1px solid #ddd;
2279
- }
2280
- .table > thead > tr > th {
2281
- vertical-align: bottom;
2282
- border-bottom: 2px solid #ddd;
2283
- }
2284
- .table > caption + thead > tr:first-child > th,
2285
- .table > colgroup + thead > tr:first-child > th,
2286
- .table > thead:first-child > tr:first-child > th,
2287
- .table > caption + thead > tr:first-child > td,
2288
- .table > colgroup + thead > tr:first-child > td,
2289
- .table > thead:first-child > tr:first-child > td {
2290
- border-top: 0;
2291
- }
2292
- .table > tbody + tbody {
2293
- border-top: 2px solid #ddd;
2294
- }
2295
- .table .table {
2296
- background-color: #fff;
2297
- }
2298
- .table-condensed > thead > tr > th,
2299
- .table-condensed > tbody > tr > th,
2300
- .table-condensed > tfoot > tr > th,
2301
- .table-condensed > thead > tr > td,
2302
- .table-condensed > tbody > tr > td,
2303
- .table-condensed > tfoot > tr > td {
2304
- padding: 5px;
2305
- }
2306
- .table-bordered {
2307
- border: 1px solid #ddd;
2308
- }
2309
- .table-bordered > thead > tr > th,
2310
- .table-bordered > tbody > tr > th,
2311
- .table-bordered > tfoot > tr > th,
2312
- .table-bordered > thead > tr > td,
2313
- .table-bordered > tbody > tr > td,
2314
- .table-bordered > tfoot > tr > td {
2315
- border: 1px solid #ddd;
2316
- }
2317
- .table-bordered > thead > tr > th,
2318
- .table-bordered > thead > tr > td {
2319
- border-bottom-width: 2px;
2320
- }
2321
- .table-striped > tbody > tr:nth-of-type(odd) {
2322
- background-color: #f9f9f9;
2323
- }
2324
- .table-hover > tbody > tr:hover {
2325
- background-color: #f5f5f5;
2326
- }
2327
- table col[class*="col-"] {
2328
- position: static;
2329
- display: table-column;
2330
- float: none;
2331
- }
2332
- table td[class*="col-"],
2333
- table th[class*="col-"] {
2334
- position: static;
2335
- display: table-cell;
2336
- float: none;
2337
- }
2338
- .table > thead > tr > td.active,
2339
- .table > tbody > tr > td.active,
2340
- .table > tfoot > tr > td.active,
2341
- .table > thead > tr > th.active,
2342
- .table > tbody > tr > th.active,
2343
- .table > tfoot > tr > th.active,
2344
- .table > thead > tr.active > td,
2345
- .table > tbody > tr.active > td,
2346
- .table > tfoot > tr.active > td,
2347
- .table > thead > tr.active > th,
2348
- .table > tbody > tr.active > th,
2349
- .table > tfoot > tr.active > th {
2350
- background-color: #f5f5f5;
2351
- }
2352
- .table-hover > tbody > tr > td.active:hover,
2353
- .table-hover > tbody > tr > th.active:hover,
2354
- .table-hover > tbody > tr.active:hover > td,
2355
- .table-hover > tbody > tr:hover > .active,
2356
- .table-hover > tbody > tr.active:hover > th {
2357
- background-color: #e8e8e8;
2358
- }
2359
- .table > thead > tr > td.success,
2360
- .table > tbody > tr > td.success,
2361
- .table > tfoot > tr > td.success,
2362
- .table > thead > tr > th.success,
2363
- .table > tbody > tr > th.success,
2364
- .table > tfoot > tr > th.success,
2365
- .table > thead > tr.success > td,
2366
- .table > tbody > tr.success > td,
2367
- .table > tfoot > tr.success > td,
2368
- .table > thead > tr.success > th,
2369
- .table > tbody > tr.success > th,
2370
- .table > tfoot > tr.success > th {
2371
- background-color: #dff0d8;
2372
- }
2373
- .table-hover > tbody > tr > td.success:hover,
2374
- .table-hover > tbody > tr > th.success:hover,
2375
- .table-hover > tbody > tr.success:hover > td,
2376
- .table-hover > tbody > tr:hover > .success,
2377
- .table-hover > tbody > tr.success:hover > th {
2378
- background-color: #d0e9c6;
2379
- }
2380
- .table > thead > tr > td.info,
2381
- .table > tbody > tr > td.info,
2382
- .table > tfoot > tr > td.info,
2383
- .table > thead > tr > th.info,
2384
- .table > tbody > tr > th.info,
2385
- .table > tfoot > tr > th.info,
2386
- .table > thead > tr.info > td,
2387
- .table > tbody > tr.info > td,
2388
- .table > tfoot > tr.info > td,
2389
- .table > thead > tr.info > th,
2390
- .table > tbody > tr.info > th,
2391
- .table > tfoot > tr.info > th {
2392
- background-color: #d9edf7;
2393
- }
2394
- .table-hover > tbody > tr > td.info:hover,
2395
- .table-hover > tbody > tr > th.info:hover,
2396
- .table-hover > tbody > tr.info:hover > td,
2397
- .table-hover > tbody > tr:hover > .info,
2398
- .table-hover > tbody > tr.info:hover > th {
2399
- background-color: #c4e3f3;
2400
- }
2401
- .table > thead > tr > td.warning,
2402
- .table > tbody > tr > td.warning,
2403
- .table > tfoot > tr > td.warning,
2404
- .table > thead > tr > th.warning,
2405
- .table > tbody > tr > th.warning,
2406
- .table > tfoot > tr > th.warning,
2407
- .table > thead > tr.warning > td,
2408
- .table > tbody > tr.warning > td,
2409
- .table > tfoot > tr.warning > td,
2410
- .table > thead > tr.warning > th,
2411
- .table > tbody > tr.warning > th,
2412
- .table > tfoot > tr.warning > th {
2413
- background-color: #fcf8e3;
2414
- }
2415
- .table-hover > tbody > tr > td.warning:hover,
2416
- .table-hover > tbody > tr > th.warning:hover,
2417
- .table-hover > tbody > tr.warning:hover > td,
2418
- .table-hover > tbody > tr:hover > .warning,
2419
- .table-hover > tbody > tr.warning:hover > th {
2420
- background-color: #faf2cc;
2421
- }
2422
- .table > thead > tr > td.danger,
2423
- .table > tbody > tr > td.danger,
2424
- .table > tfoot > tr > td.danger,
2425
- .table > thead > tr > th.danger,
2426
- .table > tbody > tr > th.danger,
2427
- .table > tfoot > tr > th.danger,
2428
- .table > thead > tr.danger > td,
2429
- .table > tbody > tr.danger > td,
2430
- .table > tfoot > tr.danger > td,
2431
- .table > thead > tr.danger > th,
2432
- .table > tbody > tr.danger > th,
2433
- .table > tfoot > tr.danger > th {
2434
- background-color: #f2dede;
2435
- }
2436
- .table-hover > tbody > tr > td.danger:hover,
2437
- .table-hover > tbody > tr > th.danger:hover,
2438
- .table-hover > tbody > tr.danger:hover > td,
2439
- .table-hover > tbody > tr:hover > .danger,
2440
- .table-hover > tbody > tr.danger:hover > th {
2441
- background-color: #ebcccc;
2442
- }
2443
- .table-responsive {
2444
- min-height: .01%;
2445
- overflow-x: auto;
2446
- }
2447
- @media screen and (max-width: 767px) {
2448
- .table-responsive {
2449
- width: 100%;
2450
- margin-bottom: 15px;
2451
- overflow-y: hidden;
2452
- -ms-overflow-style: -ms-autohiding-scrollbar;
2453
- border: 1px solid #ddd;
2454
- }
2455
- .table-responsive > .table {
2456
- margin-bottom: 0;
2457
- }
2458
- .table-responsive > .table > thead > tr > th,
2459
- .table-responsive > .table > tbody > tr > th,
2460
- .table-responsive > .table > tfoot > tr > th,
2461
- .table-responsive > .table > thead > tr > td,
2462
- .table-responsive > .table > tbody > tr > td,
2463
- .table-responsive > .table > tfoot > tr > td {
2464
- white-space: nowrap;
2465
- }
2466
- .table-responsive > .table-bordered {
2467
- border: 0;
2468
- }
2469
- .table-responsive > .table-bordered > thead > tr > th:first-child,
2470
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
2471
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
2472
- .table-responsive > .table-bordered > thead > tr > td:first-child,
2473
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
2474
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
2475
- border-left: 0;
2476
- }
2477
- .table-responsive > .table-bordered > thead > tr > th:last-child,
2478
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
2479
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
2480
- .table-responsive > .table-bordered > thead > tr > td:last-child,
2481
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
2482
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
2483
- border-right: 0;
2484
- }
2485
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
2486
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
2487
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
2488
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
2489
- border-bottom: 0;
2490
- }
2491
- }
2492
- fieldset {
2493
- min-width: 0;
2494
- padding: 0;
2495
- margin: 0;
2496
- border: 0;
2497
- }
2498
- legend {
2499
- display: block;
2500
- width: 100%;
2501
- padding: 0;
2502
- margin-bottom: 20px;
2503
- font-size: 21px;
2504
- line-height: inherit;
2505
- color: #333;
2506
- border: 0;
2507
- border-bottom: 1px solid #e5e5e5;
2508
- }
2509
- label {
2510
- display: inline-block;
2511
- max-width: 100%;
2512
- margin-bottom: 5px;
2513
- font-weight: bold;
2514
- }
2515
- input[type="search"] {
2516
- -webkit-box-sizing: border-box;
2517
- -moz-box-sizing: border-box;
2518
- box-sizing: border-box;
2519
- }
2520
- input[type="radio"],
2521
- input[type="checkbox"] {
2522
- margin: 4px 0 0;
2523
- margin-top: 1px \9;
2524
- line-height: normal;
2525
- }
2526
- input[type="file"] {
2527
- display: block;
2528
- }
2529
- input[type="range"] {
2530
- display: block;
2531
- width: 100%;
2532
- }
2533
- select[multiple],
2534
- select[size] {
2535
- height: auto;
2536
- }
2537
- input[type="file"]:focus,
2538
- input[type="radio"]:focus,
2539
- input[type="checkbox"]:focus {
2540
- outline: thin dotted;
2541
- outline: 5px auto -webkit-focus-ring-color;
2542
- outline-offset: -2px;
2543
- }
2544
- output {
2545
- display: block;
2546
- padding-top: 7px;
2547
- font-size: 14px;
2548
- line-height: 1.42857143;
2549
- color: #555;
2550
- }
2551
- .form-control {
2552
- display: block;
2553
- width: 100%;
2554
- height: 34px;
2555
- padding: 6px 12px;
2556
- font-size: 14px;
2557
- line-height: 1.42857143;
2558
- color: #555;
2559
- background-color: #fff;
2560
- background-image: none;
2561
- border: 1px solid #ccc;
2562
- border-radius: 4px;
2563
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2564
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2565
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2566
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2567
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2568
- }
2569
- .form-control:focus {
2570
- border-color: #66afe9;
2571
- outline: 0;
2572
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2573
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2574
- }
2575
- .form-control::-moz-placeholder {
2576
- color: #999;
2577
- opacity: 1;
2578
- }
2579
- .form-control:-ms-input-placeholder {
2580
- color: #999;
2581
- }
2582
- .form-control::-webkit-input-placeholder {
2583
- color: #999;
2584
- }
2585
- .form-control::-ms-expand {
2586
- background-color: transparent;
2587
- border: 0;
2588
- }
2589
- .form-control[disabled],
2590
- .form-control[readonly],
2591
- fieldset[disabled] .form-control {
2592
- background-color: #eee;
2593
- opacity: 1;
2594
- }
2595
- .form-control[disabled],
2596
- fieldset[disabled] .form-control {
2597
- cursor: not-allowed;
2598
- }
2599
- textarea.form-control {
2600
- height: auto;
2601
- }
2602
- input[type="search"] {
2603
- -webkit-appearance: none;
2604
- }
2605
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
2606
- input[type="date"].form-control,
2607
- input[type="time"].form-control,
2608
- input[type="datetime-local"].form-control,
2609
- input[type="month"].form-control {
2610
- line-height: 34px;
2611
- }
2612
- input[type="date"].input-sm,
2613
- input[type="time"].input-sm,
2614
- input[type="datetime-local"].input-sm,
2615
- input[type="month"].input-sm,
2616
- .input-group-sm input[type="date"],
2617
- .input-group-sm input[type="time"],
2618
- .input-group-sm input[type="datetime-local"],
2619
- .input-group-sm input[type="month"] {
2620
- line-height: 30px;
2621
- }
2622
- input[type="date"].input-lg,
2623
- input[type="time"].input-lg,
2624
- input[type="datetime-local"].input-lg,
2625
- input[type="month"].input-lg,
2626
- .input-group-lg input[type="date"],
2627
- .input-group-lg input[type="time"],
2628
- .input-group-lg input[type="datetime-local"],
2629
- .input-group-lg input[type="month"] {
2630
- line-height: 46px;
2631
- }
2632
- }
2633
- .form-group {
2634
- margin-bottom: 15px;
2635
- }
2636
- .radio,
2637
- .checkbox {
2638
- position: relative;
2639
- display: block;
2640
- margin-top: 10px;
2641
- margin-bottom: 10px;
2642
- }
2643
- .radio label,
2644
- .checkbox label {
2645
- min-height: 20px;
2646
- padding-left: 20px;
2647
- margin-bottom: 0;
2648
- font-weight: normal;
2649
- cursor: pointer;
2650
- }
2651
- .radio input[type="radio"],
2652
- .radio-inline input[type="radio"],
2653
- .checkbox input[type="checkbox"],
2654
- .checkbox-inline input[type="checkbox"] {
2655
- position: absolute;
2656
- margin-top: 4px \9;
2657
- margin-left: -20px;
2658
- }
2659
- .radio + .radio,
2660
- .checkbox + .checkbox {
2661
- margin-top: -5px;
2662
- }
2663
- .radio-inline,
2664
- .checkbox-inline {
2665
- position: relative;
2666
- display: inline-block;
2667
- padding-left: 20px;
2668
- margin-bottom: 0;
2669
- font-weight: normal;
2670
- vertical-align: middle;
2671
- cursor: pointer;
2672
- }
2673
- .radio-inline + .radio-inline,
2674
- .checkbox-inline + .checkbox-inline {
2675
- margin-top: 0;
2676
- margin-left: 10px;
2677
- }
2678
- input[type="radio"][disabled],
2679
- input[type="checkbox"][disabled],
2680
- input[type="radio"].disabled,
2681
- input[type="checkbox"].disabled,
2682
- fieldset[disabled] input[type="radio"],
2683
- fieldset[disabled] input[type="checkbox"] {
2684
- cursor: not-allowed;
2685
- }
2686
- .radio-inline.disabled,
2687
- .checkbox-inline.disabled,
2688
- fieldset[disabled] .radio-inline,
2689
- fieldset[disabled] .checkbox-inline {
2690
- cursor: not-allowed;
2691
- }
2692
- .radio.disabled label,
2693
- .checkbox.disabled label,
2694
- fieldset[disabled] .radio label,
2695
- fieldset[disabled] .checkbox label {
2696
- cursor: not-allowed;
2697
- }
2698
- .form-control-static {
2699
- min-height: 34px;
2700
- padding-top: 7px;
2701
- padding-bottom: 7px;
2702
- margin-bottom: 0;
2703
- }
2704
- .form-control-static.input-lg,
2705
- .form-control-static.input-sm {
2706
- padding-right: 0;
2707
- padding-left: 0;
2708
- }
2709
- .input-sm {
2710
- height: 30px;
2711
- padding: 5px 10px;
2712
- font-size: 12px;
2713
- line-height: 1.5;
2714
- border-radius: 3px;
2715
- }
2716
- select.input-sm {
2717
- height: 30px;
2718
- line-height: 30px;
2719
- }
2720
- textarea.input-sm,
2721
- select[multiple].input-sm {
2722
- height: auto;
2723
- }
2724
- .form-group-sm .form-control {
2725
- height: 30px;
2726
- padding: 5px 10px;
2727
- font-size: 12px;
2728
- line-height: 1.5;
2729
- border-radius: 3px;
2730
- }
2731
- .form-group-sm select.form-control {
2732
- height: 30px;
2733
- line-height: 30px;
2734
- }
2735
- .form-group-sm textarea.form-control,
2736
- .form-group-sm select[multiple].form-control {
2737
- height: auto;
2738
- }
2739
- .form-group-sm .form-control-static {
2740
- height: 30px;
2741
- min-height: 32px;
2742
- padding: 6px 10px;
2743
- font-size: 12px;
2744
- line-height: 1.5;
2745
- }
2746
- .input-lg {
2747
- height: 46px;
2748
- padding: 10px 16px;
2749
- font-size: 18px;
2750
- line-height: 1.3333333;
2751
- border-radius: 6px;
2752
- }
2753
- select.input-lg {
2754
- height: 46px;
2755
- line-height: 46px;
2756
- }
2757
- textarea.input-lg,
2758
- select[multiple].input-lg {
2759
- height: auto;
2760
- }
2761
- .form-group-lg .form-control {
2762
- height: 46px;
2763
- padding: 10px 16px;
2764
- font-size: 18px;
2765
- line-height: 1.3333333;
2766
- border-radius: 6px;
2767
- }
2768
- .form-group-lg select.form-control {
2769
- height: 46px;
2770
- line-height: 46px;
2771
- }
2772
- .form-group-lg textarea.form-control,
2773
- .form-group-lg select[multiple].form-control {
2774
- height: auto;
2775
- }
2776
- .form-group-lg .form-control-static {
2777
- height: 46px;
2778
- min-height: 38px;
2779
- padding: 11px 16px;
2780
- font-size: 18px;
2781
- line-height: 1.3333333;
2782
- }
2783
- .has-feedback {
2784
- position: relative;
2785
- }
2786
- .has-feedback .form-control {
2787
- padding-right: 42.5px;
2788
- }
2789
- .form-control-feedback {
2790
- position: absolute;
2791
- top: 0;
2792
- right: 0;
2793
- z-index: 2;
2794
- display: block;
2795
- width: 34px;
2796
- height: 34px;
2797
- line-height: 34px;
2798
- text-align: center;
2799
- pointer-events: none;
2800
- }
2801
- .input-lg + .form-control-feedback,
2802
- .input-group-lg + .form-control-feedback,
2803
- .form-group-lg .form-control + .form-control-feedback {
2804
- width: 46px;
2805
- height: 46px;
2806
- line-height: 46px;
2807
- }
2808
- .input-sm + .form-control-feedback,
2809
- .input-group-sm + .form-control-feedback,
2810
- .form-group-sm .form-control + .form-control-feedback {
2811
- width: 30px;
2812
- height: 30px;
2813
- line-height: 30px;
2814
- }
2815
- .has-success .help-block,
2816
- .has-success .control-label,
2817
- .has-success .radio,
2818
- .has-success .checkbox,
2819
- .has-success .radio-inline,
2820
- .has-success .checkbox-inline,
2821
- .has-success.radio label,
2822
- .has-success.checkbox label,
2823
- .has-success.radio-inline label,
2824
- .has-success.checkbox-inline label {
2825
- color: #3c763d;
2826
- }
2827
- .has-success .form-control {
2828
- border-color: #3c763d;
2829
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2830
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2831
- }
2832
- .has-success .form-control:focus {
2833
- border-color: #2b542c;
2834
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2835
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2836
- }
2837
- .has-success .input-group-addon {
2838
- color: #3c763d;
2839
- background-color: #dff0d8;
2840
- border-color: #3c763d;
2841
- }
2842
- .has-success .form-control-feedback {
2843
- color: #3c763d;
2844
- }
2845
- .has-warning .help-block,
2846
- .has-warning .control-label,
2847
- .has-warning .radio,
2848
- .has-warning .checkbox,
2849
- .has-warning .radio-inline,
2850
- .has-warning .checkbox-inline,
2851
- .has-warning.radio label,
2852
- .has-warning.checkbox label,
2853
- .has-warning.radio-inline label,
2854
- .has-warning.checkbox-inline label {
2855
- color: #8a6d3b;
2856
- }
2857
- .has-warning .form-control {
2858
- border-color: #8a6d3b;
2859
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2860
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2861
- }
2862
- .has-warning .form-control:focus {
2863
- border-color: #66512c;
2864
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2865
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2866
- }
2867
- .has-warning .input-group-addon {
2868
- color: #8a6d3b;
2869
- background-color: #fcf8e3;
2870
- border-color: #8a6d3b;
2871
- }
2872
- .has-warning .form-control-feedback {
2873
- color: #8a6d3b;
2874
- }
2875
- .has-error .help-block,
2876
- .has-error .control-label,
2877
- .has-error .radio,
2878
- .has-error .checkbox,
2879
- .has-error .radio-inline,
2880
- .has-error .checkbox-inline,
2881
- .has-error.radio label,
2882
- .has-error.checkbox label,
2883
- .has-error.radio-inline label,
2884
- .has-error.checkbox-inline label {
2885
- color: #a94442;
2886
- }
2887
- .has-error .form-control {
2888
- border-color: #a94442;
2889
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2890
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2891
- }
2892
- .has-error .form-control:focus {
2893
- border-color: #843534;
2894
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2895
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2896
- }
2897
- .has-error .input-group-addon {
2898
- color: #a94442;
2899
- background-color: #f2dede;
2900
- border-color: #a94442;
2901
- }
2902
- .has-error .form-control-feedback {
2903
- color: #a94442;
2904
- }
2905
- .has-feedback label ~ .form-control-feedback {
2906
- top: 25px;
2907
- }
2908
- .has-feedback label.sr-only ~ .form-control-feedback {
2909
- top: 0;
2910
- }
2911
- .help-block {
2912
- display: block;
2913
- margin-top: 5px;
2914
- margin-bottom: 10px;
2915
- color: #737373;
2916
- }
2917
- @media (min-width: 768px) {
2918
- .form-inline .form-group {
2919
- display: inline-block;
2920
- margin-bottom: 0;
2921
- vertical-align: middle;
2922
- }
2923
- .form-inline .form-control {
2924
- display: inline-block;
2925
- width: auto;
2926
- vertical-align: middle;
2927
- }
2928
- .form-inline .form-control-static {
2929
- display: inline-block;
2930
- }
2931
- .form-inline .input-group {
2932
- display: inline-table;
2933
- vertical-align: middle;
2934
- }
2935
- .form-inline .input-group .input-group-addon,
2936
- .form-inline .input-group .input-group-btn,
2937
- .form-inline .input-group .form-control {
2938
- width: auto;
2939
- }
2940
- .form-inline .input-group > .form-control {
2941
- width: 100%;
2942
- }
2943
- .form-inline .control-label {
2944
- margin-bottom: 0;
2945
- vertical-align: middle;
2946
- }
2947
- .form-inline .radio,
2948
- .form-inline .checkbox {
2949
- display: inline-block;
2950
- margin-top: 0;
2951
- margin-bottom: 0;
2952
- vertical-align: middle;
2953
- }
2954
- .form-inline .radio label,
2955
- .form-inline .checkbox label {
2956
- padding-left: 0;
2957
- }
2958
- .form-inline .radio input[type="radio"],
2959
- .form-inline .checkbox input[type="checkbox"] {
2960
- position: relative;
2961
- margin-left: 0;
2962
- }
2963
- .form-inline .has-feedback .form-control-feedback {
2964
- top: 0;
2965
- }
2966
- }
2967
- .form-horizontal .radio,
2968
- .form-horizontal .checkbox,
2969
- .form-horizontal .radio-inline,
2970
- .form-horizontal .checkbox-inline {
2971
- padding-top: 7px;
2972
- margin-top: 0;
2973
- margin-bottom: 0;
2974
- }
2975
- .form-horizontal .radio,
2976
- .form-horizontal .checkbox {
2977
- min-height: 27px;
2978
- }
2979
- .form-horizontal .form-group {
2980
- margin-right: -15px;
2981
- margin-left: -15px;
2982
- }
2983
- @media (min-width: 768px) {
2984
- .form-horizontal .control-label {
2985
- padding-top: 7px;
2986
- margin-bottom: 0;
2987
- text-align: right;
2988
- }
2989
- }
2990
- .form-horizontal .has-feedback .form-control-feedback {
2991
- right: 15px;
2992
- }
2993
- @media (min-width: 768px) {
2994
- .form-horizontal .form-group-lg .control-label {
2995
- padding-top: 11px;
2996
- font-size: 18px;
2997
- }
2998
- }
2999
- @media (min-width: 768px) {
3000
- .form-horizontal .form-group-sm .control-label {
3001
- padding-top: 6px;
3002
- font-size: 12px;
3003
- }
3004
- }
3005
- .btn {
3006
- display: inline-block;
3007
- padding: 6px 12px;
3008
- margin-bottom: 0;
3009
- font-size: 14px;
3010
- font-weight: normal;
3011
- line-height: 1.42857143;
3012
- text-align: center;
3013
- white-space: nowrap;
3014
- vertical-align: middle;
3015
- -ms-touch-action: manipulation;
3016
- touch-action: manipulation;
3017
- cursor: pointer;
3018
- -webkit-user-select: none;
3019
- -moz-user-select: none;
3020
- -ms-user-select: none;
3021
- user-select: none;
3022
- background-image: none;
3023
- border: 1px solid transparent;
3024
- border-radius: 4px;
3025
- }
3026
- .btn:focus,
3027
- .btn:active:focus,
3028
- .btn.active:focus,
3029
- .btn.focus,
3030
- .btn:active.focus,
3031
- .btn.active.focus {
3032
- outline: thin dotted;
3033
- outline: 5px auto -webkit-focus-ring-color;
3034
- outline-offset: -2px;
3035
- }
3036
- .btn:hover,
3037
- .btn:focus,
3038
- .btn.focus {
3039
- color: #333;
3040
- text-decoration: none;
3041
- }
3042
- .btn:active,
3043
- .btn.active {
3044
- background-image: none;
3045
- outline: 0;
3046
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3047
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3048
- }
3049
- .btn.disabled,
3050
- .btn[disabled],
3051
- fieldset[disabled] .btn {
3052
- cursor: not-allowed;
3053
- filter: alpha(opacity=65);
3054
- -webkit-box-shadow: none;
3055
- box-shadow: none;
3056
- opacity: .65;
3057
- }
3058
- a.btn.disabled,
3059
- fieldset[disabled] a.btn {
3060
- pointer-events: none;
3061
- }
3062
- .btn-default {
3063
- color: #333;
3064
- background-color: #fff;
3065
- border-color: #ccc;
3066
- }
3067
- .btn-default:focus,
3068
- .btn-default.focus {
3069
- color: #333;
3070
- background-color: #e6e6e6;
3071
- border-color: #8c8c8c;
3072
- }
3073
- .btn-default:hover {
3074
- color: #333;
3075
- background-color: #e6e6e6;
3076
- border-color: #adadad;
3077
- }
3078
- .btn-default:active,
3079
- .btn-default.active,
3080
- .open > .dropdown-toggle.btn-default {
3081
- color: #333;
3082
- background-color: #e6e6e6;
3083
- border-color: #adadad;
3084
- }
3085
- .btn-default:active:hover,
3086
- .btn-default.active:hover,
3087
- .open > .dropdown-toggle.btn-default:hover,
3088
- .btn-default:active:focus,
3089
- .btn-default.active:focus,
3090
- .open > .dropdown-toggle.btn-default:focus,
3091
- .btn-default:active.focus,
3092
- .btn-default.active.focus,
3093
- .open > .dropdown-toggle.btn-default.focus {
3094
- color: #333;
3095
- background-color: #d4d4d4;
3096
- border-color: #8c8c8c;
3097
- }
3098
- .btn-default:active,
3099
- .btn-default.active,
3100
- .open > .dropdown-toggle.btn-default {
3101
- background-image: none;
3102
- }
3103
- .btn-default.disabled:hover,
3104
- .btn-default[disabled]:hover,
3105
- fieldset[disabled] .btn-default:hover,
3106
- .btn-default.disabled:focus,
3107
- .btn-default[disabled]:focus,
3108
- fieldset[disabled] .btn-default:focus,
3109
- .btn-default.disabled.focus,
3110
- .btn-default[disabled].focus,
3111
- fieldset[disabled] .btn-default.focus {
3112
- background-color: #fff;
3113
- border-color: #ccc;
3114
- }
3115
- .btn-default .badge {
3116
- color: #fff;
3117
- background-color: #333;
3118
- }
3119
- .btn-primary {
3120
- color: #fff;
3121
- background-color: #337ab7;
3122
- border-color: #2e6da4;
3123
- }
3124
- .btn-primary:focus,
3125
- .btn-primary.focus {
3126
- color: #fff;
3127
- background-color: #286090;
3128
- border-color: #122b40;
3129
- }
3130
- .btn-primary:hover {
3131
- color: #fff;
3132
- background-color: #286090;
3133
- border-color: #204d74;
3134
- }
3135
- .btn-primary:active,
3136
- .btn-primary.active,
3137
- .open > .dropdown-toggle.btn-primary {
3138
- color: #fff;
3139
- background-color: #286090;
3140
- border-color: #204d74;
3141
- }
3142
- .btn-primary:active:hover,
3143
- .btn-primary.active:hover,
3144
- .open > .dropdown-toggle.btn-primary:hover,
3145
- .btn-primary:active:focus,
3146
- .btn-primary.active:focus,
3147
- .open > .dropdown-toggle.btn-primary:focus,
3148
- .btn-primary:active.focus,
3149
- .btn-primary.active.focus,
3150
- .open > .dropdown-toggle.btn-primary.focus {
3151
- color: #fff;
3152
- background-color: #204d74;
3153
- border-color: #122b40;
3154
- }
3155
- .btn-primary:active,
3156
- .btn-primary.active,
3157
- .open > .dropdown-toggle.btn-primary {
3158
- background-image: none;
3159
- }
3160
- .btn-primary.disabled:hover,
3161
- .btn-primary[disabled]:hover,
3162
- fieldset[disabled] .btn-primary:hover,
3163
- .btn-primary.disabled:focus,
3164
- .btn-primary[disabled]:focus,
3165
- fieldset[disabled] .btn-primary:focus,
3166
- .btn-primary.disabled.focus,
3167
- .btn-primary[disabled].focus,
3168
- fieldset[disabled] .btn-primary.focus {
3169
- background-color: #337ab7;
3170
- border-color: #2e6da4;
3171
- }
3172
- .btn-primary .badge {
3173
- color: #337ab7;
3174
- background-color: #fff;
3175
- }
3176
- .btn-success {
3177
- color: #fff;
3178
- background-color: #5cb85c;
3179
- border-color: #4cae4c;
3180
- }
3181
- .btn-success:focus,
3182
- .btn-success.focus {
3183
- color: #fff;
3184
- background-color: #449d44;
3185
- border-color: #255625;
3186
- }
3187
- .btn-success:hover {
3188
- color: #fff;
3189
- background-color: #449d44;
3190
- border-color: #398439;
3191
- }
3192
- .btn-success:active,
3193
- .btn-success.active,
3194
- .open > .dropdown-toggle.btn-success {
3195
- color: #fff;
3196
- background-color: #449d44;
3197
- border-color: #398439;
3198
- }
3199
- .btn-success:active:hover,
3200
- .btn-success.active:hover,
3201
- .open > .dropdown-toggle.btn-success:hover,
3202
- .btn-success:active:focus,
3203
- .btn-success.active:focus,
3204
- .open > .dropdown-toggle.btn-success:focus,
3205
- .btn-success:active.focus,
3206
- .btn-success.active.focus,
3207
- .open > .dropdown-toggle.btn-success.focus {
3208
- color: #fff;
3209
- background-color: #398439;
3210
- border-color: #255625;
3211
- }
3212
- .btn-success:active,
3213
- .btn-success.active,
3214
- .open > .dropdown-toggle.btn-success {
3215
- background-image: none;
3216
- }
3217
- .btn-success.disabled:hover,
3218
- .btn-success[disabled]:hover,
3219
- fieldset[disabled] .btn-success:hover,
3220
- .btn-success.disabled:focus,
3221
- .btn-success[disabled]:focus,
3222
- fieldset[disabled] .btn-success:focus,
3223
- .btn-success.disabled.focus,
3224
- .btn-success[disabled].focus,
3225
- fieldset[disabled] .btn-success.focus {
3226
- background-color: #5cb85c;
3227
- border-color: #4cae4c;
3228
- }
3229
- .btn-success .badge {
3230
- color: #5cb85c;
3231
- background-color: #fff;
3232
- }
3233
- .btn-info {
3234
- color: #fff;
3235
- background-color: #5bc0de;
3236
- border-color: #46b8da;
3237
- }
3238
- .btn-info:focus,
3239
- .btn-info.focus {
3240
- color: #fff;
3241
- background-color: #31b0d5;
3242
- border-color: #1b6d85;
3243
- }
3244
- .btn-info:hover {
3245
- color: #fff;
3246
- background-color: #31b0d5;
3247
- border-color: #269abc;
3248
- }
3249
- .btn-info:active,
3250
- .btn-info.active,
3251
- .open > .dropdown-toggle.btn-info {
3252
- color: #fff;
3253
- background-color: #31b0d5;
3254
- border-color: #269abc;
3255
- }
3256
- .btn-info:active:hover,
3257
- .btn-info.active:hover,
3258
- .open > .dropdown-toggle.btn-info:hover,
3259
- .btn-info:active:focus,
3260
- .btn-info.active:focus,
3261
- .open > .dropdown-toggle.btn-info:focus,
3262
- .btn-info:active.focus,
3263
- .btn-info.active.focus,
3264
- .open > .dropdown-toggle.btn-info.focus {
3265
- color: #fff;
3266
- background-color: #269abc;
3267
- border-color: #1b6d85;
3268
- }
3269
- .btn-info:active,
3270
- .btn-info.active,
3271
- .open > .dropdown-toggle.btn-info {
3272
- background-image: none;
3273
- }
3274
- .btn-info.disabled:hover,
3275
- .btn-info[disabled]:hover,
3276
- fieldset[disabled] .btn-info:hover,
3277
- .btn-info.disabled:focus,
3278
- .btn-info[disabled]:focus,
3279
- fieldset[disabled] .btn-info:focus,
3280
- .btn-info.disabled.focus,
3281
- .btn-info[disabled].focus,
3282
- fieldset[disabled] .btn-info.focus {
3283
- background-color: #5bc0de;
3284
- border-color: #46b8da;
3285
- }
3286
- .btn-info .badge {
3287
- color: #5bc0de;
3288
- background-color: #fff;
3289
- }
3290
- .btn-warning {
3291
- color: #fff;
3292
- background-color: #f0ad4e;
3293
- border-color: #eea236;
3294
- }
3295
- .btn-warning:focus,
3296
- .btn-warning.focus {
3297
- color: #fff;
3298
- background-color: #ec971f;
3299
- border-color: #985f0d;
3300
- }
3301
- .btn-warning:hover {
3302
- color: #fff;
3303
- background-color: #ec971f;
3304
- border-color: #d58512;
3305
- }
3306
- .btn-warning:active,
3307
- .btn-warning.active,
3308
- .open > .dropdown-toggle.btn-warning {
3309
- color: #fff;
3310
- background-color: #ec971f;
3311
- border-color: #d58512;
3312
- }
3313
- .btn-warning:active:hover,
3314
- .btn-warning.active:hover,
3315
- .open > .dropdown-toggle.btn-warning:hover,
3316
- .btn-warning:active:focus,
3317
- .btn-warning.active:focus,
3318
- .open > .dropdown-toggle.btn-warning:focus,
3319
- .btn-warning:active.focus,
3320
- .btn-warning.active.focus,
3321
- .open > .dropdown-toggle.btn-warning.focus {
3322
- color: #fff;
3323
- background-color: #d58512;
3324
- border-color: #985f0d;
3325
- }
3326
- .btn-warning:active,
3327
- .btn-warning.active,
3328
- .open > .dropdown-toggle.btn-warning {
3329
- background-image: none;
3330
- }
3331
- .btn-warning.disabled:hover,
3332
- .btn-warning[disabled]:hover,
3333
- fieldset[disabled] .btn-warning:hover,
3334
- .btn-warning.disabled:focus,
3335
- .btn-warning[disabled]:focus,
3336
- fieldset[disabled] .btn-warning:focus,
3337
- .btn-warning.disabled.focus,
3338
- .btn-warning[disabled].focus,
3339
- fieldset[disabled] .btn-warning.focus {
3340
- background-color: #f0ad4e;
3341
- border-color: #eea236;
3342
- }
3343
- .btn-warning .badge {
3344
- color: #f0ad4e;
3345
- background-color: #fff;
3346
- }
3347
- .btn-danger {
3348
- color: #fff;
3349
- background-color: #d9534f;
3350
- border-color: #d43f3a;
3351
- }
3352
- .btn-danger:focus,
3353
- .btn-danger.focus {
3354
- color: #fff;
3355
- background-color: #c9302c;
3356
- border-color: #761c19;
3357
- }
3358
- .btn-danger:hover {
3359
- color: #fff;
3360
- background-color: #c9302c;
3361
- border-color: #ac2925;
3362
- }
3363
- .btn-danger:active,
3364
- .btn-danger.active,
3365
- .open > .dropdown-toggle.btn-danger {
3366
- color: #fff;
3367
- background-color: #c9302c;
3368
- border-color: #ac2925;
3369
- }
3370
- .btn-danger:active:hover,
3371
- .btn-danger.active:hover,
3372
- .open > .dropdown-toggle.btn-danger:hover,
3373
- .btn-danger:active:focus,
3374
- .btn-danger.active:focus,
3375
- .open > .dropdown-toggle.btn-danger:focus,
3376
- .btn-danger:active.focus,
3377
- .btn-danger.active.focus,
3378
- .open > .dropdown-toggle.btn-danger.focus {
3379
- color: #fff;
3380
- background-color: #ac2925;
3381
- border-color: #761c19;
3382
- }
3383
- .btn-danger:active,
3384
- .btn-danger.active,
3385
- .open > .dropdown-toggle.btn-danger {
3386
- background-image: none;
3387
- }
3388
- .btn-danger.disabled:hover,
3389
- .btn-danger[disabled]:hover,
3390
- fieldset[disabled] .btn-danger:hover,
3391
- .btn-danger.disabled:focus,
3392
- .btn-danger[disabled]:focus,
3393
- fieldset[disabled] .btn-danger:focus,
3394
- .btn-danger.disabled.focus,
3395
- .btn-danger[disabled].focus,
3396
- fieldset[disabled] .btn-danger.focus {
3397
- background-color: #d9534f;
3398
- border-color: #d43f3a;
3399
- }
3400
- .btn-danger .badge {
3401
- color: #d9534f;
3402
- background-color: #fff;
3403
- }
3404
- .btn-link {
3405
- font-weight: normal;
3406
- color: #337ab7;
3407
- border-radius: 0;
3408
- }
3409
- .btn-link,
3410
- .btn-link:active,
3411
- .btn-link.active,
3412
- .btn-link[disabled],
3413
- fieldset[disabled] .btn-link {
3414
- background-color: transparent;
3415
- -webkit-box-shadow: none;
3416
- box-shadow: none;
3417
- }
3418
- .btn-link,
3419
- .btn-link:hover,
3420
- .btn-link:focus,
3421
- .btn-link:active {
3422
- border-color: transparent;
3423
- }
3424
- .btn-link:hover,
3425
- .btn-link:focus {
3426
- color: #23527c;
3427
- text-decoration: underline;
3428
- background-color: transparent;
3429
- }
3430
- .btn-link[disabled]:hover,
3431
- fieldset[disabled] .btn-link:hover,
3432
- .btn-link[disabled]:focus,
3433
- fieldset[disabled] .btn-link:focus {
3434
- color: #777;
3435
- text-decoration: none;
3436
- }
3437
- .btn-lg,
3438
- .btn-group-lg > .btn {
3439
- padding: 10px 16px;
3440
- font-size: 18px;
3441
- line-height: 1.3333333;
3442
- border-radius: 6px;
3443
- }
3444
- .btn-sm,
3445
- .btn-group-sm > .btn {
3446
- padding: 5px 10px;
3447
- font-size: 12px;
3448
- line-height: 1.5;
3449
- border-radius: 3px;
3450
- }
3451
- .btn-xs,
3452
- .btn-group-xs > .btn {
3453
- padding: 1px 5px;
3454
- font-size: 12px;
3455
- line-height: 1.5;
3456
- border-radius: 3px;
3457
- }
3458
- .btn-block {
3459
- display: block;
3460
- width: 100%;
3461
- }
3462
- .btn-block + .btn-block {
3463
- margin-top: 5px;
3464
- }
3465
- input[type="submit"].btn-block,
3466
- input[type="reset"].btn-block,
3467
- input[type="button"].btn-block {
3468
- width: 100%;
3469
- }
3470
- .fade {
3471
- opacity: 0;
3472
- -webkit-transition: opacity .15s linear;
3473
- -o-transition: opacity .15s linear;
3474
- transition: opacity .15s linear;
3475
- }
3476
- .fade.in {
3477
- opacity: 1;
3478
- }
3479
- .collapse {
3480
- display: none;
3481
- }
3482
- .collapse.in {
3483
- display: block;
3484
- }
3485
- tr.collapse.in {
3486
- display: table-row;
3487
- }
3488
- tbody.collapse.in {
3489
- display: table-row-group;
3490
- }
3491
- .collapsing {
3492
- position: relative;
3493
- height: 0;
3494
- overflow: hidden;
3495
- -webkit-transition-timing-function: ease;
3496
- -o-transition-timing-function: ease;
3497
- transition-timing-function: ease;
3498
- -webkit-transition-duration: .35s;
3499
- -o-transition-duration: .35s;
3500
- transition-duration: .35s;
3501
- -webkit-transition-property: height, visibility;
3502
- -o-transition-property: height, visibility;
3503
- transition-property: height, visibility;
3504
- }
3505
- .caret {
3506
- display: inline-block;
3507
- width: 0;
3508
- height: 0;
3509
- margin-left: 2px;
3510
- vertical-align: middle;
3511
- border-top: 4px dashed;
3512
- border-top: 4px solid \9;
3513
- border-right: 4px solid transparent;
3514
- border-left: 4px solid transparent;
3515
- }
3516
- .dropup,
3517
- .dropdown {
3518
- position: relative;
3519
- }
3520
- .dropdown-toggle:focus {
3521
- outline: 0;
3522
- }
3523
- .dropdown-menu {
3524
- position: absolute;
3525
- top: 100%;
3526
- left: 0;
3527
- z-index: 1000;
3528
- display: none;
3529
- float: left;
3530
- min-width: 160px;
3531
- padding: 5px 0;
3532
- margin: 2px 0 0;
3533
- font-size: 14px;
3534
- text-align: left;
3535
- list-style: none;
3536
- background-color: #fff;
3537
- -webkit-background-clip: padding-box;
3538
- background-clip: padding-box;
3539
- border: 1px solid #ccc;
3540
- border: 1px solid rgba(0, 0, 0, .15);
3541
- border-radius: 4px;
3542
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3543
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3544
- }
3545
- .dropdown-menu.pull-right {
3546
- right: 0;
3547
- left: auto;
3548
- }
3549
- .dropdown-menu .divider {
3550
- height: 1px;
3551
- margin: 9px 0;
3552
- overflow: hidden;
3553
- background-color: #e5e5e5;
3554
- }
3555
- .dropdown-menu > li > a {
3556
- display: block;
3557
- padding: 3px 20px;
3558
- clear: both;
3559
- font-weight: normal;
3560
- line-height: 1.42857143;
3561
- color: #333;
3562
- white-space: nowrap;
3563
- }
3564
- .dropdown-menu > li > a:hover,
3565
- .dropdown-menu > li > a:focus {
3566
- color: #262626;
3567
- text-decoration: none;
3568
- background-color: #f5f5f5;
3569
- }
3570
- .dropdown-menu > .active > a,
3571
- .dropdown-menu > .active > a:hover,
3572
- .dropdown-menu > .active > a:focus {
3573
- color: #fff;
3574
- text-decoration: none;
3575
- background-color: #337ab7;
3576
- outline: 0;
3577
- }
3578
- .dropdown-menu > .disabled > a,
3579
- .dropdown-menu > .disabled > a:hover,
3580
- .dropdown-menu > .disabled > a:focus {
3581
- color: #777;
3582
- }
3583
- .dropdown-menu > .disabled > a:hover,
3584
- .dropdown-menu > .disabled > a:focus {
3585
- text-decoration: none;
3586
- cursor: not-allowed;
3587
- background-color: transparent;
3588
- background-image: none;
3589
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3590
- }
3591
- .open > .dropdown-menu {
3592
- display: block;
3593
- }
3594
- .open > a {
3595
- outline: 0;
3596
- }
3597
- .dropdown-menu-right {
3598
- right: 0;
3599
- left: auto;
3600
- }
3601
- .dropdown-menu-left {
3602
- right: auto;
3603
- left: 0;
3604
- }
3605
- .dropdown-header {
3606
- display: block;
3607
- padding: 3px 20px;
3608
- font-size: 12px;
3609
- line-height: 1.42857143;
3610
- color: #777;
3611
- white-space: nowrap;
3612
- }
3613
- .dropdown-backdrop {
3614
- position: fixed;
3615
- top: 0;
3616
- right: 0;
3617
- bottom: 0;
3618
- left: 0;
3619
- z-index: 990;
3620
- }
3621
- .pull-right > .dropdown-menu {
3622
- right: 0;
3623
- left: auto;
3624
- }
3625
- .dropup .caret,
3626
- .navbar-fixed-bottom .dropdown .caret {
3627
- content: "";
3628
- border-top: 0;
3629
- border-bottom: 4px dashed;
3630
- border-bottom: 4px solid \9;
3631
- }
3632
- .dropup .dropdown-menu,
3633
- .navbar-fixed-bottom .dropdown .dropdown-menu {
3634
- top: auto;
3635
- bottom: 100%;
3636
- margin-bottom: 2px;
3637
- }
3638
- @media (min-width: 768px) {
3639
- .navbar-right .dropdown-menu {
3640
- right: 0;
3641
- left: auto;
3642
- }
3643
- .navbar-right .dropdown-menu-left {
3644
- right: auto;
3645
- left: 0;
3646
- }
3647
- }
3648
- .btn-group,
3649
- .btn-group-vertical {
3650
- position: relative;
3651
- display: inline-block;
3652
- vertical-align: middle;
3653
- }
3654
- .btn-group > .btn,
3655
- .btn-group-vertical > .btn {
3656
- position: relative;
3657
- float: left;
3658
- }
3659
- .btn-group > .btn:hover,
3660
- .btn-group-vertical > .btn:hover,
3661
- .btn-group > .btn:focus,
3662
- .btn-group-vertical > .btn:focus,
3663
- .btn-group > .btn:active,
3664
- .btn-group-vertical > .btn:active,
3665
- .btn-group > .btn.active,
3666
- .btn-group-vertical > .btn.active {
3667
- z-index: 2;
3668
- }
3669
- .btn-group .btn + .btn,
3670
- .btn-group .btn + .btn-group,
3671
- .btn-group .btn-group + .btn,
3672
- .btn-group .btn-group + .btn-group {
3673
- margin-left: -1px;
3674
- }
3675
- .btn-toolbar {
3676
- margin-left: -5px;
3677
- }
3678
- .btn-toolbar .btn,
3679
- .btn-toolbar .btn-group,
3680
- .btn-toolbar .input-group {
3681
- float: left;
3682
- }
3683
- .btn-toolbar > .btn,
3684
- .btn-toolbar > .btn-group,
3685
- .btn-toolbar > .input-group {
3686
- margin-left: 5px;
3687
- }
3688
- .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3689
- border-radius: 0;
3690
- }
3691
- .btn-group > .btn:first-child {
3692
- margin-left: 0;
3693
- }
3694
- .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3695
- border-top-right-radius: 0;
3696
- border-bottom-right-radius: 0;
3697
- }
3698
- .btn-group > .btn:last-child:not(:first-child),
3699
- .btn-group > .dropdown-toggle:not(:first-child) {
3700
- border-top-left-radius: 0;
3701
- border-bottom-left-radius: 0;
3702
- }
3703
- .btn-group > .btn-group {
3704
- float: left;
3705
- }
3706
- .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3707
- border-radius: 0;
3708
- }
3709
- .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3710
- .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3711
- border-top-right-radius: 0;
3712
- border-bottom-right-radius: 0;
3713
- }
3714
- .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3715
- border-top-left-radius: 0;
3716
- border-bottom-left-radius: 0;
3717
- }
3718
- .btn-group .dropdown-toggle:active,
3719
- .btn-group.open .dropdown-toggle {
3720
- outline: 0;
3721
- }
3722
- .btn-group > .btn + .dropdown-toggle {
3723
- padding-right: 8px;
3724
- padding-left: 8px;
3725
- }
3726
- .btn-group > .btn-lg + .dropdown-toggle {
3727
- padding-right: 12px;
3728
- padding-left: 12px;
3729
- }
3730
- .btn-group.open .dropdown-toggle {
3731
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3732
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3733
- }
3734
- .btn-group.open .dropdown-toggle.btn-link {
3735
- -webkit-box-shadow: none;
3736
- box-shadow: none;
3737
- }
3738
- .btn .caret {
3739
- margin-left: 0;
3740
- }
3741
- .btn-lg .caret {
3742
- border-width: 5px 5px 0;
3743
- border-bottom-width: 0;
3744
- }
3745
- .dropup .btn-lg .caret {
3746
- border-width: 0 5px 5px;
3747
- }
3748
- .btn-group-vertical > .btn,
3749
- .btn-group-vertical > .btn-group,
3750
- .btn-group-vertical > .btn-group > .btn {
3751
- display: block;
3752
- float: none;
3753
- width: 100%;
3754
- max-width: 100%;
3755
- }
3756
- .btn-group-vertical > .btn-group > .btn {
3757
- float: none;
3758
- }
3759
- .btn-group-vertical > .btn + .btn,
3760
- .btn-group-vertical > .btn + .btn-group,
3761
- .btn-group-vertical > .btn-group + .btn,
3762
- .btn-group-vertical > .btn-group + .btn-group {
3763
- margin-top: -1px;
3764
- margin-left: 0;
3765
- }
3766
- .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3767
- border-radius: 0;
3768
- }
3769
- .btn-group-vertical > .btn:first-child:not(:last-child) {
3770
- border-top-left-radius: 4px;
3771
- border-top-right-radius: 4px;
3772
- border-bottom-right-radius: 0;
3773
- border-bottom-left-radius: 0;
3774
- }
3775
- .btn-group-vertical > .btn:last-child:not(:first-child) {
3776
- border-top-left-radius: 0;
3777
- border-top-right-radius: 0;
3778
- border-bottom-right-radius: 4px;
3779
- border-bottom-left-radius: 4px;
3780
- }
3781
- .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3782
- border-radius: 0;
3783
- }
3784
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3785
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3786
- border-bottom-right-radius: 0;
3787
- border-bottom-left-radius: 0;
3788
- }
3789
- .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3790
- border-top-left-radius: 0;
3791
- border-top-right-radius: 0;
3792
- }
3793
- .btn-group-justified {
3794
- display: table;
3795
- width: 100%;
3796
- table-layout: fixed;
3797
- border-collapse: separate;
3798
- }
3799
- .btn-group-justified > .btn,
3800
- .btn-group-justified > .btn-group {
3801
- display: table-cell;
3802
- float: none;
3803
- width: 1%;
3804
- }
3805
- .btn-group-justified > .btn-group .btn {
3806
- width: 100%;
3807
- }
3808
- .btn-group-justified > .btn-group .dropdown-menu {
3809
- left: auto;
3810
- }
3811
- [data-toggle="buttons"] > .btn input[type="radio"],
3812
- [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3813
- [data-toggle="buttons"] > .btn input[type="checkbox"],
3814
- [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3815
- position: absolute;
3816
- clip: rect(0, 0, 0, 0);
3817
- pointer-events: none;
3818
- }
3819
- .input-group {
3820
- position: relative;
3821
- display: table;
3822
- border-collapse: separate;
3823
- }
3824
- .input-group[class*="col-"] {
3825
- float: none;
3826
- padding-right: 0;
3827
- padding-left: 0;
3828
- }
3829
- .input-group .form-control {
3830
- position: relative;
3831
- z-index: 2;
3832
- float: left;
3833
- width: 100%;
3834
- margin-bottom: 0;
3835
- }
3836
- .input-group .form-control:focus {
3837
- z-index: 3;
3838
- }
3839
- .input-group-lg > .form-control,
3840
- .input-group-lg > .input-group-addon,
3841
- .input-group-lg > .input-group-btn > .btn {
3842
- height: 46px;
3843
- padding: 10px 16px;
3844
- font-size: 18px;
3845
- line-height: 1.3333333;
3846
- border-radius: 6px;
3847
- }
3848
- select.input-group-lg > .form-control,
3849
- select.input-group-lg > .input-group-addon,
3850
- select.input-group-lg > .input-group-btn > .btn {
3851
- height: 46px;
3852
- line-height: 46px;
3853
- }
3854
- textarea.input-group-lg > .form-control,
3855
- textarea.input-group-lg > .input-group-addon,
3856
- textarea.input-group-lg > .input-group-btn > .btn,
3857
- select[multiple].input-group-lg > .form-control,
3858
- select[multiple].input-group-lg > .input-group-addon,
3859
- select[multiple].input-group-lg > .input-group-btn > .btn {
3860
- height: auto;
3861
- }
3862
- .input-group-sm > .form-control,
3863
- .input-group-sm > .input-group-addon,
3864
- .input-group-sm > .input-group-btn > .btn {
3865
- height: 30px;
3866
- padding: 5px 10px;
3867
- font-size: 12px;
3868
- line-height: 1.5;
3869
- border-radius: 3px;
3870
- }
3871
- select.input-group-sm > .form-control,
3872
- select.input-group-sm > .input-group-addon,
3873
- select.input-group-sm > .input-group-btn > .btn {
3874
- height: 30px;
3875
- line-height: 30px;
3876
- }
3877
- textarea.input-group-sm > .form-control,
3878
- textarea.input-group-sm > .input-group-addon,
3879
- textarea.input-group-sm > .input-group-btn > .btn,
3880
- select[multiple].input-group-sm > .form-control,
3881
- select[multiple].input-group-sm > .input-group-addon,
3882
- select[multiple].input-group-sm > .input-group-btn > .btn {
3883
- height: auto;
3884
- }
3885
- .input-group-addon,
3886
- .input-group-btn,
3887
- .input-group .form-control {
3888
- display: table-cell;
3889
- }
3890
- .input-group-addon:not(:first-child):not(:last-child),
3891
- .input-group-btn:not(:first-child):not(:last-child),
3892
- .input-group .form-control:not(:first-child):not(:last-child) {
3893
- border-radius: 0;
3894
- }
3895
- .input-group-addon,
3896
- .input-group-btn {
3897
- width: 1%;
3898
- white-space: nowrap;
3899
- vertical-align: middle;
3900
- }
3901
- .input-group-addon {
3902
- padding: 6px 12px;
3903
- font-size: 14px;
3904
- font-weight: normal;
3905
- line-height: 1;
3906
- color: #555;
3907
- text-align: center;
3908
- background-color: #eee;
3909
- border: 1px solid #ccc;
3910
- border-radius: 4px;
3911
- }
3912
- .input-group-addon.input-sm {
3913
- padding: 5px 10px;
3914
- font-size: 12px;
3915
- border-radius: 3px;
3916
- }
3917
- .input-group-addon.input-lg {
3918
- padding: 10px 16px;
3919
- font-size: 18px;
3920
- border-radius: 6px;
3921
- }
3922
- .input-group-addon input[type="radio"],
3923
- .input-group-addon input[type="checkbox"] {
3924
- margin-top: 0;
3925
- }
3926
- .input-group .form-control:first-child,
3927
- .input-group-addon:first-child,
3928
- .input-group-btn:first-child > .btn,
3929
- .input-group-btn:first-child > .btn-group > .btn,
3930
- .input-group-btn:first-child > .dropdown-toggle,
3931
- .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3932
- .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3933
- border-top-right-radius: 0;
3934
- border-bottom-right-radius: 0;
3935
- }
3936
- .input-group-addon:first-child {
3937
- border-right: 0;
3938
- }
3939
- .input-group .form-control:last-child,
3940
- .input-group-addon:last-child,
3941
- .input-group-btn:last-child > .btn,
3942
- .input-group-btn:last-child > .btn-group > .btn,
3943
- .input-group-btn:last-child > .dropdown-toggle,
3944
- .input-group-btn:first-child > .btn:not(:first-child),
3945
- .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3946
- border-top-left-radius: 0;
3947
- border-bottom-left-radius: 0;
3948
- }
3949
- .input-group-addon:last-child {
3950
- border-left: 0;
3951
- }
3952
- .input-group-btn {
3953
- position: relative;
3954
- font-size: 0;
3955
- white-space: nowrap;
3956
- }
3957
- .input-group-btn > .btn {
3958
- position: relative;
3959
- }
3960
- .input-group-btn > .btn + .btn {
3961
- margin-left: -1px;
3962
- }
3963
- .input-group-btn > .btn:hover,
3964
- .input-group-btn > .btn:focus,
3965
- .input-group-btn > .btn:active {
3966
- z-index: 2;
3967
- }
3968
- .input-group-btn:first-child > .btn,
3969
- .input-group-btn:first-child > .btn-group {
3970
- margin-right: -1px;
3971
- }
3972
- .input-group-btn:last-child > .btn,
3973
- .input-group-btn:last-child > .btn-group {
3974
- z-index: 2;
3975
- margin-left: -1px;
3976
- }
3977
- .nav {
3978
- padding-left: 0;
3979
- margin-bottom: 0;
3980
- list-style: none;
3981
- }
3982
- .nav > li {
3983
- position: relative;
3984
- display: block;
3985
- }
3986
- .nav > li > a {
3987
- position: relative;
3988
- display: block;
3989
- padding: 10px 15px;
3990
- }
3991
- .nav > li > a:hover,
3992
- .nav > li > a:focus {
3993
- text-decoration: none;
3994
- background-color: #eee;
3995
- }
3996
- .nav > li.disabled > a {
3997
- color: #777;
3998
- }
3999
- .nav > li.disabled > a:hover,
4000
- .nav > li.disabled > a:focus {
4001
- color: #777;
4002
- text-decoration: none;
4003
- cursor: not-allowed;
4004
- background-color: transparent;
4005
- }
4006
- .nav .open > a,
4007
- .nav .open > a:hover,
4008
- .nav .open > a:focus {
4009
- background-color: #eee;
4010
- border-color: #337ab7;
4011
- }
4012
- .nav .nav-divider {
4013
- height: 1px;
4014
- margin: 9px 0;
4015
- overflow: hidden;
4016
- background-color: #e5e5e5;
4017
- }
4018
- .nav > li > a > img {
4019
- max-width: none;
4020
- }
4021
- .nav-tabs {
4022
- border-bottom: 1px solid #ddd;
4023
- }
4024
- .nav-tabs > li {
4025
- float: left;
4026
- margin-bottom: -1px;
4027
- }
4028
- .nav-tabs > li > a {
4029
- margin-right: 2px;
4030
- line-height: 1.42857143;
4031
- border: 1px solid transparent;
4032
- border-radius: 4px 4px 0 0;
4033
- }
4034
- .nav-tabs > li > a:hover {
4035
- border-color: #eee #eee #ddd;
4036
- }
4037
- .nav-tabs > li.active > a,
4038
- .nav-tabs > li.active > a:hover,
4039
- .nav-tabs > li.active > a:focus {
4040
- color: #555;
4041
- cursor: default;
4042
- background-color: #fff;
4043
- border: 1px solid #ddd;
4044
- border-bottom-color: transparent;
4045
- }
4046
- .nav-tabs.nav-justified {
4047
- width: 100%;
4048
- border-bottom: 0;
4049
- }
4050
- .nav-tabs.nav-justified > li {
4051
- float: none;
4052
- }
4053
- .nav-tabs.nav-justified > li > a {
4054
- margin-bottom: 5px;
4055
- text-align: center;
4056
- }
4057
- .nav-tabs.nav-justified > .dropdown .dropdown-menu {
4058
- top: auto;
4059
- left: auto;
4060
- }
4061
- @media (min-width: 768px) {
4062
- .nav-tabs.nav-justified > li {
4063
- display: table-cell;
4064
- width: 1%;
4065
- }
4066
- .nav-tabs.nav-justified > li > a {
4067
- margin-bottom: 0;
4068
- }
4069
- }
4070
- .nav-tabs.nav-justified > li > a {
4071
- margin-right: 0;
4072
- border-radius: 4px;
4073
- }
4074
- .nav-tabs.nav-justified > .active > a,
4075
- .nav-tabs.nav-justified > .active > a:hover,
4076
- .nav-tabs.nav-justified > .active > a:focus {
4077
- border: 1px solid #ddd;
4078
- }
4079
- @media (min-width: 768px) {
4080
- .nav-tabs.nav-justified > li > a {
4081
- border-bottom: 1px solid #ddd;
4082
- border-radius: 4px 4px 0 0;
4083
- }
4084
- .nav-tabs.nav-justified > .active > a,
4085
- .nav-tabs.nav-justified > .active > a:hover,
4086
- .nav-tabs.nav-justified > .active > a:focus {
4087
- border-bottom-color: #fff;
4088
- }
4089
- }
4090
- .nav-pills > li {
4091
- float: left;
4092
- }
4093
- .nav-pills > li > a {
4094
- border-radius: 4px;
4095
- }
4096
- .nav-pills > li + li {
4097
- margin-left: 2px;
4098
- }
4099
- .nav-pills > li.active > a,
4100
- .nav-pills > li.active > a:hover,
4101
- .nav-pills > li.active > a:focus {
4102
- color: #fff;
4103
- background-color: #337ab7;
4104
- }
4105
- .nav-stacked > li {
4106
- float: none;
4107
- }
4108
- .nav-stacked > li + li {
4109
- margin-top: 2px;
4110
- margin-left: 0;
4111
- }
4112
- .nav-justified {
4113
- width: 100%;
4114
- }
4115
- .nav-justified > li {
4116
- float: none;
4117
- }
4118
- .nav-justified > li > a {
4119
- margin-bottom: 5px;
4120
- text-align: center;
4121
- }
4122
- .nav-justified > .dropdown .dropdown-menu {
4123
- top: auto;
4124
- left: auto;
4125
- }
4126
- @media (min-width: 768px) {
4127
- .nav-justified > li {
4128
- display: table-cell;
4129
- width: 1%;
4130
- }
4131
- .nav-justified > li > a {
4132
- margin-bottom: 0;
4133
- }
4134
- }
4135
- .nav-tabs-justified {
4136
- border-bottom: 0;
4137
- }
4138
- .nav-tabs-justified > li > a {
4139
- margin-right: 0;
4140
- border-radius: 4px;
4141
- }
4142
- .nav-tabs-justified > .active > a,
4143
- .nav-tabs-justified > .active > a:hover,
4144
- .nav-tabs-justified > .active > a:focus {
4145
- border: 1px solid #ddd;
4146
- }
4147
- @media (min-width: 768px) {
4148
- .nav-tabs-justified > li > a {
4149
- border-bottom: 1px solid #ddd;
4150
- border-radius: 4px 4px 0 0;
4151
- }
4152
- .nav-tabs-justified > .active > a,
4153
- .nav-tabs-justified > .active > a:hover,
4154
- .nav-tabs-justified > .active > a:focus {
4155
- border-bottom-color: #fff;
4156
- }
4157
- }
4158
- .tab-content > .tab-pane {
4159
- display: none;
4160
- }
4161
- .tab-content > .active {
4162
- display: block;
4163
- }
4164
- .nav-tabs .dropdown-menu {
4165
- margin-top: -1px;
4166
- border-top-left-radius: 0;
4167
- border-top-right-radius: 0;
4168
- }
4169
- .navbar {
4170
- position: relative;
4171
- min-height: 50px;
4172
- margin-bottom: 20px;
4173
- border: 1px solid transparent;
4174
- }
4175
- @media (min-width: 768px) {
4176
- .navbar {
4177
- border-radius: 4px;
4178
- }
4179
- }
4180
- @media (min-width: 768px) {
4181
- .navbar-header {
4182
- float: left;
4183
- }
4184
- }
4185
- .navbar-collapse {
4186
- padding-right: 15px;
4187
- padding-left: 15px;
4188
- overflow-x: visible;
4189
- -webkit-overflow-scrolling: touch;
4190
- border-top: 1px solid transparent;
4191
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
4192
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
4193
- }
4194
- .navbar-collapse.in {
4195
- overflow-y: auto;
4196
- }
4197
- @media (min-width: 768px) {
4198
- .navbar-collapse {
4199
- width: auto;
4200
- border-top: 0;
4201
- -webkit-box-shadow: none;
4202
- box-shadow: none;
4203
- }
4204
- .navbar-collapse.collapse {
4205
- display: block !important;
4206
- height: auto !important;
4207
- padding-bottom: 0;
4208
- overflow: visible !important;
4209
- }
4210
- .navbar-collapse.in {
4211
- overflow-y: visible;
4212
- }
4213
- .navbar-fixed-top .navbar-collapse,
4214
- .navbar-static-top .navbar-collapse,
4215
- .navbar-fixed-bottom .navbar-collapse {
4216
- padding-right: 0;
4217
- padding-left: 0;
4218
- }
4219
- }
4220
- .navbar-fixed-top .navbar-collapse,
4221
- .navbar-fixed-bottom .navbar-collapse {
4222
- max-height: 340px;
4223
- }
4224
- @media (max-device-width: 480px) and (orientation: landscape) {
4225
- .navbar-fixed-top .navbar-collapse,
4226
- .navbar-fixed-bottom .navbar-collapse {
4227
- max-height: 200px;
4228
- }
4229
- }
4230
- .container > .navbar-header,
4231
- .container-fluid > .navbar-header,
4232
- .container > .navbar-collapse,
4233
- .container-fluid > .navbar-collapse {
4234
- margin-right: -15px;
4235
- margin-left: -15px;
4236
- }
4237
- @media (min-width: 768px) {
4238
- .container > .navbar-header,
4239
- .container-fluid > .navbar-header,
4240
- .container > .navbar-collapse,
4241
- .container-fluid > .navbar-collapse {
4242
- margin-right: 0;
4243
- margin-left: 0;
4244
- }
4245
- }
4246
- .navbar-static-top {
4247
- z-index: 1000;
4248
- border-width: 0 0 1px;
4249
- }
4250
- @media (min-width: 768px) {
4251
- .navbar-static-top {
4252
- border-radius: 0;
4253
- }
4254
- }
4255
- .navbar-fixed-top,
4256
- .navbar-fixed-bottom {
4257
- position: fixed;
4258
- right: 0;
4259
- left: 0;
4260
- z-index: 1030;
4261
- }
4262
- @media (min-width: 768px) {
4263
- .navbar-fixed-top,
4264
- .navbar-fixed-bottom {
4265
- border-radius: 0;
4266
- }
4267
- }
4268
- .navbar-fixed-top {
4269
- top: 0;
4270
- border-width: 0 0 1px;
4271
- }
4272
- .navbar-fixed-bottom {
4273
- bottom: 0;
4274
- margin-bottom: 0;
4275
- border-width: 1px 0 0;
4276
- }
4277
- .navbar-brand {
4278
- float: left;
4279
- height: 50px;
4280
- padding: 15px 15px;
4281
- font-size: 18px;
4282
- line-height: 20px;
4283
- }
4284
- .navbar-brand:hover,
4285
- .navbar-brand:focus {
4286
- text-decoration: none;
4287
- }
4288
- .navbar-brand > img {
4289
- display: block;
4290
- }
4291
- @media (min-width: 768px) {
4292
- .navbar > .container .navbar-brand,
4293
- .navbar > .container-fluid .navbar-brand {
4294
- margin-left: -15px;
4295
- }
4296
- }
4297
- .navbar-toggle {
4298
- position: relative;
4299
- float: right;
4300
- padding: 9px 10px;
4301
- margin-top: 8px;
4302
- margin-right: 15px;
4303
- margin-bottom: 8px;
4304
- background-color: transparent;
4305
- background-image: none;
4306
- border: 1px solid transparent;
4307
- border-radius: 4px;
4308
- }
4309
- .navbar-toggle:focus {
4310
- outline: 0;
4311
- }
4312
- .navbar-toggle .icon-bar {
4313
- display: block;
4314
- width: 22px;
4315
- height: 2px;
4316
- border-radius: 1px;
4317
- }
4318
- .navbar-toggle .icon-bar + .icon-bar {
4319
- margin-top: 4px;
4320
- }
4321
- @media (min-width: 768px) {
4322
- .navbar-toggle {
4323
- display: none;
4324
- }
4325
- }
4326
- .navbar-nav {
4327
- margin: 7.5px -15px;
4328
- }
4329
- .navbar-nav > li > a {
4330
- padding-top: 10px;
4331
- padding-bottom: 10px;
4332
- line-height: 20px;
4333
- }
4334
- @media (max-width: 767px) {
4335
- .navbar-nav .open .dropdown-menu {
4336
- position: static;
4337
- float: none;
4338
- width: auto;
4339
- margin-top: 0;
4340
- background-color: transparent;
4341
- border: 0;
4342
- -webkit-box-shadow: none;
4343
- box-shadow: none;
4344
- }
4345
- .navbar-nav .open .dropdown-menu > li > a,
4346
- .navbar-nav .open .dropdown-menu .dropdown-header {
4347
- padding: 5px 15px 5px 25px;
4348
- }
4349
- .navbar-nav .open .dropdown-menu > li > a {
4350
- line-height: 20px;
4351
- }
4352
- .navbar-nav .open .dropdown-menu > li > a:hover,
4353
- .navbar-nav .open .dropdown-menu > li > a:focus {
4354
- background-image: none;
4355
- }
4356
- }
4357
- @media (min-width: 768px) {
4358
- .navbar-nav {
4359
- float: left;
4360
- margin: 0;
4361
- }
4362
- .navbar-nav > li {
4363
- float: left;
4364
- }
4365
- .navbar-nav > li > a {
4366
- padding-top: 15px;
4367
- padding-bottom: 15px;
4368
- }
4369
- }
4370
- .navbar-form {
4371
- padding: 10px 15px;
4372
- margin-top: 8px;
4373
- margin-right: -15px;
4374
- margin-bottom: 8px;
4375
- margin-left: -15px;
4376
- border-top: 1px solid transparent;
4377
- border-bottom: 1px solid transparent;
4378
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
4379
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
4380
- }
4381
- @media (min-width: 768px) {
4382
- .navbar-form .form-group {
4383
- display: inline-block;
4384
- margin-bottom: 0;
4385
- vertical-align: middle;
4386
- }
4387
- .navbar-form .form-control {
4388
- display: inline-block;
4389
- width: auto;
4390
- vertical-align: middle;
4391
- }
4392
- .navbar-form .form-control-static {
4393
- display: inline-block;
4394
- }
4395
- .navbar-form .input-group {
4396
- display: inline-table;
4397
- vertical-align: middle;
4398
- }
4399
- .navbar-form .input-group .input-group-addon,
4400
- .navbar-form .input-group .input-group-btn,
4401
- .navbar-form .input-group .form-control {
4402
- width: auto;
4403
- }
4404
- .navbar-form .input-group > .form-control {
4405
- width: 100%;
4406
- }
4407
- .navbar-form .control-label {
4408
- margin-bottom: 0;
4409
- vertical-align: middle;
4410
- }
4411
- .navbar-form .radio,
4412
- .navbar-form .checkbox {
4413
- display: inline-block;
4414
- margin-top: 0;
4415
- margin-bottom: 0;
4416
- vertical-align: middle;
4417
- }
4418
- .navbar-form .radio label,
4419
- .navbar-form .checkbox label {
4420
- padding-left: 0;
4421
- }
4422
- .navbar-form .radio input[type="radio"],
4423
- .navbar-form .checkbox input[type="checkbox"] {
4424
- position: relative;
4425
- margin-left: 0;
4426
- }
4427
- .navbar-form .has-feedback .form-control-feedback {
4428
- top: 0;
4429
- }
4430
- }
4431
- @media (max-width: 767px) {
4432
- .navbar-form .form-group {
4433
- margin-bottom: 5px;
4434
- }
4435
- .navbar-form .form-group:last-child {
4436
- margin-bottom: 0;
4437
- }
4438
- }
4439
- @media (min-width: 768px) {
4440
- .navbar-form {
4441
- width: auto;
4442
- padding-top: 0;
4443
- padding-bottom: 0;
4444
- margin-right: 0;
4445
- margin-left: 0;
4446
- border: 0;
4447
- -webkit-box-shadow: none;
4448
- box-shadow: none;
4449
- }
4450
- }
4451
- .navbar-nav > li > .dropdown-menu {
4452
- margin-top: 0;
4453
- border-top-left-radius: 0;
4454
- border-top-right-radius: 0;
4455
- }
4456
- .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4457
- margin-bottom: 0;
4458
- border-top-left-radius: 4px;
4459
- border-top-right-radius: 4px;
4460
- border-bottom-right-radius: 0;
4461
- border-bottom-left-radius: 0;
4462
- }
4463
- .navbar-btn {
4464
- margin-top: 8px;
4465
- margin-bottom: 8px;
4466
- }
4467
- .navbar-btn.btn-sm {
4468
- margin-top: 10px;
4469
- margin-bottom: 10px;
4470
- }
4471
- .navbar-btn.btn-xs {
4472
- margin-top: 14px;
4473
- margin-bottom: 14px;
4474
- }
4475
- .navbar-text {
4476
- margin-top: 15px;
4477
- margin-bottom: 15px;
4478
- }
4479
- @media (min-width: 768px) {
4480
- .navbar-text {
4481
- float: left;
4482
- margin-right: 15px;
4483
- margin-left: 15px;
4484
- }
4485
- }
4486
- @media (min-width: 768px) {
4487
- .navbar-left {
4488
- float: left !important;
4489
- }
4490
- .navbar-right {
4491
- float: right !important;
4492
- margin-right: -15px;
4493
- }
4494
- .navbar-right ~ .navbar-right {
4495
- margin-right: 0;
4496
- }
4497
- }
4498
- .navbar-default {
4499
- background-color: #f8f8f8;
4500
- border-color: #e7e7e7;
4501
- }
4502
- .navbar-default .navbar-brand {
4503
- color: #777;
4504
- }
4505
- .navbar-default .navbar-brand:hover,
4506
- .navbar-default .navbar-brand:focus {
4507
- color: #5e5e5e;
4508
- background-color: transparent;
4509
- }
4510
- .navbar-default .navbar-text {
4511
- color: #777;
4512
- }
4513
- .navbar-default .navbar-nav > li > a {
4514
- color: #777;
4515
- }
4516
- .navbar-default .navbar-nav > li > a:hover,
4517
- .navbar-default .navbar-nav > li > a:focus {
4518
- color: #333;
4519
- background-color: transparent;
4520
- }
4521
- .navbar-default .navbar-nav > .active > a,
4522
- .navbar-default .navbar-nav > .active > a:hover,
4523
- .navbar-default .navbar-nav > .active > a:focus {
4524
- color: #555;
4525
- background-color: #e7e7e7;
4526
- }
4527
- .navbar-default .navbar-nav > .disabled > a,
4528
- .navbar-default .navbar-nav > .disabled > a:hover,
4529
- .navbar-default .navbar-nav > .disabled > a:focus {
4530
- color: #ccc;
4531
- background-color: transparent;
4532
- }
4533
- .navbar-default .navbar-toggle {
4534
- border-color: #ddd;
4535
- }
4536
- .navbar-default .navbar-toggle:hover,
4537
- .navbar-default .navbar-toggle:focus {
4538
- background-color: #ddd;
4539
- }
4540
- .navbar-default .navbar-toggle .icon-bar {
4541
- background-color: #888;
4542
- }
4543
- .navbar-default .navbar-collapse,
4544
- .navbar-default .navbar-form {
4545
- border-color: #e7e7e7;
4546
- }
4547
- .navbar-default .navbar-nav > .open > a,
4548
- .navbar-default .navbar-nav > .open > a:hover,
4549
- .navbar-default .navbar-nav > .open > a:focus {
4550
- color: #555;
4551
- background-color: #e7e7e7;
4552
- }
4553
- @media (max-width: 767px) {
4554
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
4555
- color: #777;
4556
- }
4557
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
4558
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
4559
- color: #333;
4560
- background-color: transparent;
4561
- }
4562
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4563
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4564
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4565
- color: #555;
4566
- background-color: #e7e7e7;
4567
- }
4568
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4569
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4570
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4571
- color: #ccc;
4572
- background-color: transparent;
4573
- }
4574
- }
4575
- .navbar-default .navbar-link {
4576
- color: #777;
4577
- }
4578
- .navbar-default .navbar-link:hover {
4579
- color: #333;
4580
- }
4581
- .navbar-default .btn-link {
4582
- color: #777;
4583
- }
4584
- .navbar-default .btn-link:hover,
4585
- .navbar-default .btn-link:focus {
4586
- color: #333;
4587
- }
4588
- .navbar-default .btn-link[disabled]:hover,
4589
- fieldset[disabled] .navbar-default .btn-link:hover,
4590
- .navbar-default .btn-link[disabled]:focus,
4591
- fieldset[disabled] .navbar-default .btn-link:focus {
4592
- color: #ccc;
4593
- }
4594
- .navbar-inverse {
4595
- background-color: #222;
4596
- border-color: #080808;
4597
- }
4598
- .navbar-inverse .navbar-brand {
4599
- color: #9d9d9d;
4600
- }
4601
- .navbar-inverse .navbar-brand:hover,
4602
- .navbar-inverse .navbar-brand:focus {
4603
- color: #fff;
4604
- background-color: transparent;
4605
- }
4606
- .navbar-inverse .navbar-text {
4607
- color: #9d9d9d;
4608
- }
4609
- .navbar-inverse .navbar-nav > li > a {
4610
- color: #9d9d9d;
4611
- }
4612
- .navbar-inverse .navbar-nav > li > a:hover,
4613
- .navbar-inverse .navbar-nav > li > a:focus {
4614
- color: #fff;
4615
- background-color: transparent;
4616
- }
4617
- .navbar-inverse .navbar-nav > .active > a,
4618
- .navbar-inverse .navbar-nav > .active > a:hover,
4619
- .navbar-inverse .navbar-nav > .active > a:focus {
4620
- color: #fff;
4621
- background-color: #080808;
4622
- }
4623
- .navbar-inverse .navbar-nav > .disabled > a,
4624
- .navbar-inverse .navbar-nav > .disabled > a:hover,
4625
- .navbar-inverse .navbar-nav > .disabled > a:focus {
4626
- color: #444;
4627
- background-color: transparent;
4628
- }
4629
- .navbar-inverse .navbar-toggle {
4630
- border-color: #333;
4631
- }
4632
- .navbar-inverse .navbar-toggle:hover,
4633
- .navbar-inverse .navbar-toggle:focus {
4634
- background-color: #333;
4635
- }
4636
- .navbar-inverse .navbar-toggle .icon-bar {
4637
- background-color: #fff;
4638
- }
4639
- .navbar-inverse .navbar-collapse,
4640
- .navbar-inverse .navbar-form {
4641
- border-color: #101010;
4642
- }
4643
- .navbar-inverse .navbar-nav > .open > a,
4644
- .navbar-inverse .navbar-nav > .open > a:hover,
4645
- .navbar-inverse .navbar-nav > .open > a:focus {
4646
- color: #fff;
4647
- background-color: #080808;
4648
- }
4649
- @media (max-width: 767px) {
4650
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4651
- border-color: #080808;
4652
- }
4653
- .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4654
- background-color: #080808;
4655
- }
4656
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4657
- color: #9d9d9d;
4658
- }
4659
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4660
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4661
- color: #fff;
4662
- background-color: transparent;
4663
- }
4664
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4665
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4666
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4667
- color: #fff;
4668
- background-color: #080808;
4669
- }
4670
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4671
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4672
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4673
- color: #444;
4674
- background-color: transparent;
4675
- }
4676
- }
4677
- .navbar-inverse .navbar-link {
4678
- color: #9d9d9d;
4679
- }
4680
- .navbar-inverse .navbar-link:hover {
4681
- color: #fff;
4682
- }
4683
- .navbar-inverse .btn-link {
4684
- color: #9d9d9d;
4685
- }
4686
- .navbar-inverse .btn-link:hover,
4687
- .navbar-inverse .btn-link:focus {
4688
- color: #fff;
4689
- }
4690
- .navbar-inverse .btn-link[disabled]:hover,
4691
- fieldset[disabled] .navbar-inverse .btn-link:hover,
4692
- .navbar-inverse .btn-link[disabled]:focus,
4693
- fieldset[disabled] .navbar-inverse .btn-link:focus {
4694
- color: #444;
4695
- }
4696
- .breadcrumb {
4697
- padding: 8px 15px;
4698
- margin-bottom: 20px;
4699
- list-style: none;
4700
- background-color: #f5f5f5;
4701
- border-radius: 4px;
4702
- }
4703
- .breadcrumb > li {
4704
- display: inline-block;
4705
- }
4706
- .breadcrumb > li + li:before {
4707
- padding: 0 5px;
4708
- color: #ccc;
4709
- content: "/\00a0";
4710
- }
4711
- .breadcrumb > .active {
4712
- color: #777;
4713
- }
4714
- .pagination {
4715
- display: inline-block;
4716
- padding-left: 0;
4717
- margin: 20px 0;
4718
- border-radius: 4px;
4719
- }
4720
- .pagination > li {
4721
- display: inline;
4722
- }
4723
- .pagination > li > a,
4724
- .pagination > li > span {
4725
- position: relative;
4726
- float: left;
4727
- padding: 6px 12px;
4728
- margin-left: -1px;
4729
- line-height: 1.42857143;
4730
- color: #337ab7;
4731
- text-decoration: none;
4732
- background-color: #fff;
4733
- border: 1px solid #ddd;
4734
- }
4735
- .pagination > li:first-child > a,
4736
- .pagination > li:first-child > span {
4737
- margin-left: 0;
4738
- border-top-left-radius: 4px;
4739
- border-bottom-left-radius: 4px;
4740
- }
4741
- .pagination > li:last-child > a,
4742
- .pagination > li:last-child > span {
4743
- border-top-right-radius: 4px;
4744
- border-bottom-right-radius: 4px;
4745
- }
4746
- .pagination > li > a:hover,
4747
- .pagination > li > span:hover,
4748
- .pagination > li > a:focus,
4749
- .pagination > li > span:focus {
4750
- z-index: 2;
4751
- color: #23527c;
4752
- background-color: #eee;
4753
- border-color: #ddd;
4754
- }
4755
- .pagination > .active > a,
4756
- .pagination > .active > span,
4757
- .pagination > .active > a:hover,
4758
- .pagination > .active > span:hover,
4759
- .pagination > .active > a:focus,
4760
- .pagination > .active > span:focus {
4761
- z-index: 3;
4762
- color: #fff;
4763
- cursor: default;
4764
- background-color: #337ab7;
4765
- border-color: #337ab7;
4766
- }
4767
- .pagination > .disabled > span,
4768
- .pagination > .disabled > span:hover,
4769
- .pagination > .disabled > span:focus,
4770
- .pagination > .disabled > a,
4771
- .pagination > .disabled > a:hover,
4772
- .pagination > .disabled > a:focus {
4773
- color: #777;
4774
- cursor: not-allowed;
4775
- background-color: #fff;
4776
- border-color: #ddd;
4777
- }
4778
- .pagination-lg > li > a,
4779
- .pagination-lg > li > span {
4780
- padding: 10px 16px;
4781
- font-size: 18px;
4782
- line-height: 1.3333333;
4783
- }
4784
- .pagination-lg > li:first-child > a,
4785
- .pagination-lg > li:first-child > span {
4786
- border-top-left-radius: 6px;
4787
- border-bottom-left-radius: 6px;
4788
- }
4789
- .pagination-lg > li:last-child > a,
4790
- .pagination-lg > li:last-child > span {
4791
- border-top-right-radius: 6px;
4792
- border-bottom-right-radius: 6px;
4793
- }
4794
- .pagination-sm > li > a,
4795
- .pagination-sm > li > span {
4796
- padding: 5px 10px;
4797
- font-size: 12px;
4798
- line-height: 1.5;
4799
- }
4800
- .pagination-sm > li:first-child > a,
4801
- .pagination-sm > li:first-child > span {
4802
- border-top-left-radius: 3px;
4803
- border-bottom-left-radius: 3px;
4804
- }
4805
- .pagination-sm > li:last-child > a,
4806
- .pagination-sm > li:last-child > span {
4807
- border-top-right-radius: 3px;
4808
- border-bottom-right-radius: 3px;
4809
- }
4810
- .pager {
4811
- padding-left: 0;
4812
- margin: 20px 0;
4813
- text-align: center;
4814
- list-style: none;
4815
- }
4816
- .pager li {
4817
- display: inline;
4818
- }
4819
- .pager li > a,
4820
- .pager li > span {
4821
- display: inline-block;
4822
- padding: 5px 14px;
4823
- background-color: #fff;
4824
- border: 1px solid #ddd;
4825
- border-radius: 15px;
4826
- }
4827
- .pager li > a:hover,
4828
- .pager li > a:focus {
4829
- text-decoration: none;
4830
- background-color: #eee;
4831
- }
4832
- .pager .next > a,
4833
- .pager .next > span {
4834
- float: right;
4835
- }
4836
- .pager .previous > a,
4837
- .pager .previous > span {
4838
- float: left;
4839
- }
4840
- .pager .disabled > a,
4841
- .pager .disabled > a:hover,
4842
- .pager .disabled > a:focus,
4843
- .pager .disabled > span {
4844
- color: #777;
4845
- cursor: not-allowed;
4846
- background-color: #fff;
4847
- }
4848
- .label {
4849
- display: inline;
4850
- padding: .2em .6em .3em;
4851
- font-size: 75%;
4852
- font-weight: bold;
4853
- line-height: 1;
4854
- color: #fff;
4855
- text-align: center;
4856
- white-space: nowrap;
4857
- vertical-align: baseline;
4858
- border-radius: .25em;
4859
- }
4860
- a.label:hover,
4861
- a.label:focus {
4862
- color: #fff;
4863
- text-decoration: none;
4864
- cursor: pointer;
4865
- }
4866
- .label:empty {
4867
- display: none;
4868
- }
4869
- .btn .label {
4870
- position: relative;
4871
- top: -1px;
4872
- }
4873
- .label-default {
4874
- background-color: #777;
4875
- }
4876
- .label-default[href]:hover,
4877
- .label-default[href]:focus {
4878
- background-color: #5e5e5e;
4879
- }
4880
- .label-primary {
4881
- background-color: #337ab7;
4882
- }
4883
- .label-primary[href]:hover,
4884
- .label-primary[href]:focus {
4885
- background-color: #286090;
4886
- }
4887
- .label-success {
4888
- background-color: #5cb85c;
4889
- }
4890
- .label-success[href]:hover,
4891
- .label-success[href]:focus {
4892
- background-color: #449d44;
4893
- }
4894
- .label-info {
4895
- background-color: #5bc0de;
4896
- }
4897
- .label-info[href]:hover,
4898
- .label-info[href]:focus {
4899
- background-color: #31b0d5;
4900
- }
4901
- .label-warning {
4902
- background-color: #f0ad4e;
4903
- }
4904
- .label-warning[href]:hover,
4905
- .label-warning[href]:focus {
4906
- background-color: #ec971f;
4907
- }
4908
- .label-danger {
4909
- background-color: #d9534f;
4910
- }
4911
- .label-danger[href]:hover,
4912
- .label-danger[href]:focus {
4913
- background-color: #c9302c;
4914
- }
4915
- .badge {
4916
- display: inline-block;
4917
- min-width: 10px;
4918
- padding: 3px 7px;
4919
- font-size: 12px;
4920
- font-weight: bold;
4921
- line-height: 1;
4922
- color: #fff;
4923
- text-align: center;
4924
- white-space: nowrap;
4925
- vertical-align: middle;
4926
- background-color: #777;
4927
- border-radius: 10px;
4928
- }
4929
- .badge:empty {
4930
- display: none;
4931
- }
4932
- .btn .badge {
4933
- position: relative;
4934
- top: -1px;
4935
- }
4936
- .btn-xs .badge,
4937
- .btn-group-xs > .btn .badge {
4938
- top: 0;
4939
- padding: 1px 5px;
4940
- }
4941
- a.badge:hover,
4942
- a.badge:focus {
4943
- color: #fff;
4944
- text-decoration: none;
4945
- cursor: pointer;
4946
- }
4947
- .list-group-item.active > .badge,
4948
- .nav-pills > .active > a > .badge {
4949
- color: #337ab7;
4950
- background-color: #fff;
4951
- }
4952
- .list-group-item > .badge {
4953
- float: right;
4954
- }
4955
- .list-group-item > .badge + .badge {
4956
- margin-right: 5px;
4957
- }
4958
- .nav-pills > li > a > .badge {
4959
- margin-left: 3px;
4960
- }
4961
- .jumbotron {
4962
- padding-top: 30px;
4963
- padding-bottom: 30px;
4964
- margin-bottom: 30px;
4965
- color: inherit;
4966
- background-color: #eee;
4967
- }
4968
- .jumbotron h1,
4969
- .jumbotron .h1 {
4970
- color: inherit;
4971
- }
4972
- .jumbotron p {
4973
- margin-bottom: 15px;
4974
- font-size: 21px;
4975
- font-weight: 200;
4976
- }
4977
- .jumbotron > hr {
4978
- border-top-color: #d5d5d5;
4979
- }
4980
- .container .jumbotron,
4981
- .container-fluid .jumbotron {
4982
- padding-right: 15px;
4983
- padding-left: 15px;
4984
- border-radius: 6px;
4985
- }
4986
- .jumbotron .container {
4987
- max-width: 100%;
4988
- }
4989
- @media screen and (min-width: 768px) {
4990
- .jumbotron {
4991
- padding-top: 48px;
4992
- padding-bottom: 48px;
4993
- }
4994
- .container .jumbotron,
4995
- .container-fluid .jumbotron {
4996
- padding-right: 60px;
4997
- padding-left: 60px;
4998
- }
4999
- .jumbotron h1,
5000
- .jumbotron .h1 {
5001
- font-size: 63px;
5002
- }
5003
- }
5004
- .thumbnail {
5005
- display: block;
5006
- padding: 4px;
5007
- margin-bottom: 20px;
5008
- line-height: 1.42857143;
5009
- background-color: #fff;
5010
- border: 1px solid #ddd;
5011
- border-radius: 4px;
5012
- -webkit-transition: border .2s ease-in-out;
5013
- -o-transition: border .2s ease-in-out;
5014
- transition: border .2s ease-in-out;
5015
- }
5016
- .thumbnail > img,
5017
- .thumbnail a > img {
5018
- margin-right: auto;
5019
- margin-left: auto;
5020
- }
5021
- a.thumbnail:hover,
5022
- a.thumbnail:focus,
5023
- a.thumbnail.active {
5024
- border-color: #337ab7;
5025
- }
5026
- .thumbnail .caption {
5027
- padding: 9px;
5028
- color: #333;
5029
- }
5030
- .alert {
5031
- padding: 15px;
5032
- margin-bottom: 20px;
5033
- border: 1px solid transparent;
5034
- border-radius: 4px;
5035
- }
5036
- .alert h4 {
5037
- margin-top: 0;
5038
- color: inherit;
5039
- }
5040
- .alert .alert-link {
5041
- font-weight: bold;
5042
- }
5043
- .alert > p,
5044
- .alert > ul {
5045
- margin-bottom: 0;
5046
- }
5047
- .alert > p + p {
5048
- margin-top: 5px;
5049
- }
5050
- .alert-dismissable,
5051
- .alert-dismissible {
5052
- padding-right: 35px;
5053
- }
5054
- .alert-dismissable .close,
5055
- .alert-dismissible .close {
5056
- position: relative;
5057
- top: -2px;
5058
- right: -21px;
5059
- color: inherit;
5060
- }
5061
- .alert-success {
5062
- color: #3c763d;
5063
- background-color: #dff0d8;
5064
- border-color: #d6e9c6;
5065
- }
5066
- .alert-success hr {
5067
- border-top-color: #c9e2b3;
5068
- }
5069
- .alert-success .alert-link {
5070
- color: #2b542c;
5071
- }
5072
- .alert-info {
5073
- color: #31708f;
5074
- background-color: #d9edf7;
5075
- border-color: #bce8f1;
5076
- }
5077
- .alert-info hr {
5078
- border-top-color: #a6e1ec;
5079
- }
5080
- .alert-info .alert-link {
5081
- color: #245269;
5082
- }
5083
- .alert-warning {
5084
- color: #8a6d3b;
5085
- background-color: #fcf8e3;
5086
- border-color: #faebcc;
5087
- }
5088
- .alert-warning hr {
5089
- border-top-color: #f7e1b5;
5090
- }
5091
- .alert-warning .alert-link {
5092
- color: #66512c;
5093
- }
5094
- .alert-danger {
5095
- color: #a94442;
5096
- background-color: #f2dede;
5097
- border-color: #ebccd1;
5098
- }
5099
- .alert-danger hr {
5100
- border-top-color: #e4b9c0;
5101
- }
5102
- .alert-danger .alert-link {
5103
- color: #843534;
5104
- }
5105
- @-webkit-keyframes progress-bar-stripes {
5106
- from {
5107
- background-position: 40px 0;
5108
- }
5109
- to {
5110
- background-position: 0 0;
5111
- }
5112
- }
5113
- @-o-keyframes progress-bar-stripes {
5114
- from {
5115
- background-position: 40px 0;
5116
- }
5117
- to {
5118
- background-position: 0 0;
5119
- }
5120
- }
5121
- @keyframes progress-bar-stripes {
5122
- from {
5123
- background-position: 40px 0;
5124
- }
5125
- to {
5126
- background-position: 0 0;
5127
- }
5128
- }
5129
- .progress {
5130
- height: 20px;
5131
- margin-bottom: 20px;
5132
- overflow: hidden;
5133
- background-color: #f5f5f5;
5134
- border-radius: 4px;
5135
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
5136
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
5137
- }
5138
- .progress-bar {
5139
- float: left;
5140
- width: 0;
5141
- height: 100%;
5142
- font-size: 12px;
5143
- line-height: 20px;
5144
- color: #fff;
5145
- text-align: center;
5146
- background-color: #337ab7;
5147
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
5148
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
5149
- -webkit-transition: width .6s ease;
5150
- -o-transition: width .6s ease;
5151
- transition: width .6s ease;
5152
- }
5153
- .progress-striped .progress-bar,
5154
- .progress-bar-striped {
5155
- 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);
5156
- 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);
5157
- 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);
5158
- -webkit-background-size: 40px 40px;
5159
- background-size: 40px 40px;
5160
- }
5161
- .progress.active .progress-bar,
5162
- .progress-bar.active {
5163
- -webkit-animation: progress-bar-stripes 2s linear infinite;
5164
- -o-animation: progress-bar-stripes 2s linear infinite;
5165
- animation: progress-bar-stripes 2s linear infinite;
5166
- }
5167
- .progress-bar-success {
5168
- background-color: #5cb85c;
5169
- }
5170
- .progress-striped .progress-bar-success {
5171
- 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);
5172
- 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);
5173
- 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);
5174
- }
5175
- .progress-bar-info {
5176
- background-color: #5bc0de;
5177
- }
5178
- .progress-striped .progress-bar-info {
5179
- 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);
5180
- 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);
5181
- 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);
5182
- }
5183
- .progress-bar-warning {
5184
- background-color: #f0ad4e;
5185
- }
5186
- .progress-striped .progress-bar-warning {
5187
- 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);
5188
- 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);
5189
- 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);
5190
- }
5191
- .progress-bar-danger {
5192
- background-color: #d9534f;
5193
- }
5194
- .progress-striped .progress-bar-danger {
5195
- 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);
5196
- 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);
5197
- 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);
5198
- }
5199
- .media {
5200
- margin-top: 15px;
5201
- }
5202
- .media:first-child {
5203
- margin-top: 0;
5204
- }
5205
- .media,
5206
- .media-body {
5207
- overflow: hidden;
5208
- zoom: 1;
5209
- }
5210
- .media-body {
5211
- width: 10000px;
5212
- }
5213
- .media-object {
5214
- display: block;
5215
- }
5216
- .media-object.img-thumbnail {
5217
- max-width: none;
5218
- }
5219
- .media-right,
5220
- .media > .pull-right {
5221
- padding-left: 10px;
5222
- }
5223
- .media-left,
5224
- .media > .pull-left {
5225
- padding-right: 10px;
5226
- }
5227
- .media-left,
5228
- .media-right,
5229
- .media-body {
5230
- display: table-cell;
5231
- vertical-align: top;
5232
- }
5233
- .media-middle {
5234
- vertical-align: middle;
5235
- }
5236
- .media-bottom {
5237
- vertical-align: bottom;
5238
- }
5239
- .media-heading {
5240
- margin-top: 0;
5241
- margin-bottom: 5px;
5242
- }
5243
- .media-list {
5244
- padding-left: 0;
5245
- list-style: none;
5246
- }
5247
- .list-group {
5248
- padding-left: 0;
5249
- margin-bottom: 20px;
5250
- }
5251
- .list-group-item {
5252
- position: relative;
5253
- display: block;
5254
- padding: 10px 15px;
5255
- margin-bottom: -1px;
5256
- background-color: #fff;
5257
- border: 1px solid #ddd;
5258
- }
5259
- .list-group-item:first-child {
5260
- border-top-left-radius: 4px;
5261
- border-top-right-radius: 4px;
5262
- }
5263
- .list-group-item:last-child {
5264
- margin-bottom: 0;
5265
- border-bottom-right-radius: 4px;
5266
- border-bottom-left-radius: 4px;
5267
- }
5268
- a.list-group-item,
5269
- button.list-group-item {
5270
- color: #555;
5271
- }
5272
- a.list-group-item .list-group-item-heading,
5273
- button.list-group-item .list-group-item-heading {
5274
- color: #333;
5275
- }
5276
- a.list-group-item:hover,
5277
- button.list-group-item:hover,
5278
- a.list-group-item:focus,
5279
- button.list-group-item:focus {
5280
- color: #555;
5281
- text-decoration: none;
5282
- background-color: #f5f5f5;
5283
- }
5284
- button.list-group-item {
5285
- width: 100%;
5286
- text-align: left;
5287
- }
5288
- .list-group-item.disabled,
5289
- .list-group-item.disabled:hover,
5290
- .list-group-item.disabled:focus {
5291
- color: #777;
5292
- cursor: not-allowed;
5293
- background-color: #eee;
5294
- }
5295
- .list-group-item.disabled .list-group-item-heading,
5296
- .list-group-item.disabled:hover .list-group-item-heading,
5297
- .list-group-item.disabled:focus .list-group-item-heading {
5298
- color: inherit;
5299
- }
5300
- .list-group-item.disabled .list-group-item-text,
5301
- .list-group-item.disabled:hover .list-group-item-text,
5302
- .list-group-item.disabled:focus .list-group-item-text {
5303
- color: #777;
5304
- }
5305
- .list-group-item.active,
5306
- .list-group-item.active:hover,
5307
- .list-group-item.active:focus {
5308
- z-index: 2;
5309
- color: #fff;
5310
- background-color: #337ab7;
5311
- border-color: #337ab7;
5312
- }
5313
- .list-group-item.active .list-group-item-heading,
5314
- .list-group-item.active:hover .list-group-item-heading,
5315
- .list-group-item.active:focus .list-group-item-heading,
5316
- .list-group-item.active .list-group-item-heading > small,
5317
- .list-group-item.active:hover .list-group-item-heading > small,
5318
- .list-group-item.active:focus .list-group-item-heading > small,
5319
- .list-group-item.active .list-group-item-heading > .small,
5320
- .list-group-item.active:hover .list-group-item-heading > .small,
5321
- .list-group-item.active:focus .list-group-item-heading > .small {
5322
- color: inherit;
5323
- }
5324
- .list-group-item.active .list-group-item-text,
5325
- .list-group-item.active:hover .list-group-item-text,
5326
- .list-group-item.active:focus .list-group-item-text {
5327
- color: #c7ddef;
5328
- }
5329
- .list-group-item-success {
5330
- color: #3c763d;
5331
- background-color: #dff0d8;
5332
- }
5333
- a.list-group-item-success,
5334
- button.list-group-item-success {
5335
- color: #3c763d;
5336
- }
5337
- a.list-group-item-success .list-group-item-heading,
5338
- button.list-group-item-success .list-group-item-heading {
5339
- color: inherit;
5340
- }
5341
- a.list-group-item-success:hover,
5342
- button.list-group-item-success:hover,
5343
- a.list-group-item-success:focus,
5344
- button.list-group-item-success:focus {
5345
- color: #3c763d;
5346
- background-color: #d0e9c6;
5347
- }
5348
- a.list-group-item-success.active,
5349
- button.list-group-item-success.active,
5350
- a.list-group-item-success.active:hover,
5351
- button.list-group-item-success.active:hover,
5352
- a.list-group-item-success.active:focus,
5353
- button.list-group-item-success.active:focus {
5354
- color: #fff;
5355
- background-color: #3c763d;
5356
- border-color: #3c763d;
5357
- }
5358
- .list-group-item-info {
5359
- color: #31708f;
5360
- background-color: #d9edf7;
5361
- }
5362
- a.list-group-item-info,
5363
- button.list-group-item-info {
5364
- color: #31708f;
5365
- }
5366
- a.list-group-item-info .list-group-item-heading,
5367
- button.list-group-item-info .list-group-item-heading {
5368
- color: inherit;
5369
- }
5370
- a.list-group-item-info:hover,
5371
- button.list-group-item-info:hover,
5372
- a.list-group-item-info:focus,
5373
- button.list-group-item-info:focus {
5374
- color: #31708f;
5375
- background-color: #c4e3f3;
5376
- }
5377
- a.list-group-item-info.active,
5378
- button.list-group-item-info.active,
5379
- a.list-group-item-info.active:hover,
5380
- button.list-group-item-info.active:hover,
5381
- a.list-group-item-info.active:focus,
5382
- button.list-group-item-info.active:focus {
5383
- color: #fff;
5384
- background-color: #31708f;
5385
- border-color: #31708f;
5386
- }
5387
- .list-group-item-warning {
5388
- color: #8a6d3b;
5389
- background-color: #fcf8e3;
5390
- }
5391
- a.list-group-item-warning,
5392
- button.list-group-item-warning {
5393
- color: #8a6d3b;
5394
- }
5395
- a.list-group-item-warning .list-group-item-heading,
5396
- button.list-group-item-warning .list-group-item-heading {
5397
- color: inherit;
5398
- }
5399
- a.list-group-item-warning:hover,
5400
- button.list-group-item-warning:hover,
5401
- a.list-group-item-warning:focus,
5402
- button.list-group-item-warning:focus {
5403
- color: #8a6d3b;
5404
- background-color: #faf2cc;
5405
- }
5406
- a.list-group-item-warning.active,
5407
- button.list-group-item-warning.active,
5408
- a.list-group-item-warning.active:hover,
5409
- button.list-group-item-warning.active:hover,
5410
- a.list-group-item-warning.active:focus,
5411
- button.list-group-item-warning.active:focus {
5412
- color: #fff;
5413
- background-color: #8a6d3b;
5414
- border-color: #8a6d3b;
5415
- }
5416
- .list-group-item-danger {
5417
- color: #a94442;
5418
- background-color: #f2dede;
5419
- }
5420
- a.list-group-item-danger,
5421
- button.list-group-item-danger {
5422
- color: #a94442;
5423
- }
5424
- a.list-group-item-danger .list-group-item-heading,
5425
- button.list-group-item-danger .list-group-item-heading {
5426
- color: inherit;
5427
- }
5428
- a.list-group-item-danger:hover,
5429
- button.list-group-item-danger:hover,
5430
- a.list-group-item-danger:focus,
5431
- button.list-group-item-danger:focus {
5432
- color: #a94442;
5433
- background-color: #ebcccc;
5434
- }
5435
- a.list-group-item-danger.active,
5436
- button.list-group-item-danger.active,
5437
- a.list-group-item-danger.active:hover,
5438
- button.list-group-item-danger.active:hover,
5439
- a.list-group-item-danger.active:focus,
5440
- button.list-group-item-danger.active:focus {
5441
- color: #fff;
5442
- background-color: #a94442;
5443
- border-color: #a94442;
5444
- }
5445
- .list-group-item-heading {
5446
- margin-top: 0;
5447
- margin-bottom: 5px;
5448
- }
5449
- .list-group-item-text {
5450
- margin-bottom: 0;
5451
- line-height: 1.3;
5452
- }
5453
- .panel {
5454
- margin-bottom: 20px;
5455
- background-color: #fff;
5456
- border: 1px solid transparent;
5457
- border-radius: 4px;
5458
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5459
- box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5460
- }
5461
- .panel-body {
5462
- padding: 15px;
5463
- }
5464
- .panel-heading {
5465
- padding: 10px 15px;
5466
- border-bottom: 1px solid transparent;
5467
- border-top-left-radius: 3px;
5468
- border-top-right-radius: 3px;
5469
- }
5470
- .panel-heading > .dropdown .dropdown-toggle {
5471
- color: inherit;
5472
- }
5473
- .panel-title {
5474
- margin-top: 0;
5475
- margin-bottom: 0;
5476
- font-size: 16px;
5477
- color: inherit;
5478
- }
5479
- .panel-title > a,
5480
- .panel-title > small,
5481
- .panel-title > .small,
5482
- .panel-title > small > a,
5483
- .panel-title > .small > a {
5484
- color: inherit;
5485
- }
5486
- .panel-footer {
5487
- padding: 10px 15px;
5488
- background-color: #f5f5f5;
5489
- border-top: 1px solid #ddd;
5490
- border-bottom-right-radius: 3px;
5491
- border-bottom-left-radius: 3px;
5492
- }
5493
- .panel > .list-group,
5494
- .panel > .panel-collapse > .list-group {
5495
- margin-bottom: 0;
5496
- }
5497
- .panel > .list-group .list-group-item,
5498
- .panel > .panel-collapse > .list-group .list-group-item {
5499
- border-width: 1px 0;
5500
- border-radius: 0;
5501
- }
5502
- .panel > .list-group:first-child .list-group-item:first-child,
5503
- .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5504
- border-top: 0;
5505
- border-top-left-radius: 3px;
5506
- border-top-right-radius: 3px;
5507
- }
5508
- .panel > .list-group:last-child .list-group-item:last-child,
5509
- .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5510
- border-bottom: 0;
5511
- border-bottom-right-radius: 3px;
5512
- border-bottom-left-radius: 3px;
5513
- }
5514
- .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
5515
- border-top-left-radius: 0;
5516
- border-top-right-radius: 0;
5517
- }
5518
- .panel-heading + .list-group .list-group-item:first-child {
5519
- border-top-width: 0;
5520
- }
5521
- .list-group + .panel-footer {
5522
- border-top-width: 0;
5523
- }
5524
- .panel > .table,
5525
- .panel > .table-responsive > .table,
5526
- .panel > .panel-collapse > .table {
5527
- margin-bottom: 0;
5528
- }
5529
- .panel > .table caption,
5530
- .panel > .table-responsive > .table caption,
5531
- .panel > .panel-collapse > .table caption {
5532
- padding-right: 15px;
5533
- padding-left: 15px;
5534
- }
5535
- .panel > .table:first-child,
5536
- .panel > .table-responsive:first-child > .table:first-child {
5537
- border-top-left-radius: 3px;
5538
- border-top-right-radius: 3px;
5539
- }
5540
- .panel > .table:first-child > thead:first-child > tr:first-child,
5541
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5542
- .panel > .table:first-child > tbody:first-child > tr:first-child,
5543
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5544
- border-top-left-radius: 3px;
5545
- border-top-right-radius: 3px;
5546
- }
5547
- .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5548
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5549
- .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5550
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5551
- .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
5552
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
5553
- .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
5554
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
5555
- border-top-left-radius: 3px;
5556
- }
5557
- .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
5558
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
5559
- .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5560
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5561
- .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
5562
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
5563
- .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
5564
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
5565
- border-top-right-radius: 3px;
5566
- }
5567
- .panel > .table:last-child,
5568
- .panel > .table-responsive:last-child > .table:last-child {
5569
- border-bottom-right-radius: 3px;
5570
- border-bottom-left-radius: 3px;
5571
- }
5572
- .panel > .table:last-child > tbody:last-child > tr:last-child,
5573
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5574
- .panel > .table:last-child > tfoot:last-child > tr:last-child,
5575
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5576
- border-bottom-right-radius: 3px;
5577
- border-bottom-left-radius: 3px;
5578
- }
5579
- .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5580
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5581
- .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5582
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5583
- .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5584
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5585
- .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
5586
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
5587
- border-bottom-left-radius: 3px;
5588
- }
5589
- .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5590
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5591
- .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5592
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5593
- .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5594
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5595
- .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
5596
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
5597
- border-bottom-right-radius: 3px;
5598
- }
5599
- .panel > .panel-body + .table,
5600
- .panel > .panel-body + .table-responsive,
5601
- .panel > .table + .panel-body,
5602
- .panel > .table-responsive + .panel-body {
5603
- border-top: 1px solid #ddd;
5604
- }
5605
- .panel > .table > tbody:first-child > tr:first-child th,
5606
- .panel > .table > tbody:first-child > tr:first-child td {
5607
- border-top: 0;
5608
- }
5609
- .panel > .table-bordered,
5610
- .panel > .table-responsive > .table-bordered {
5611
- border: 0;
5612
- }
5613
- .panel > .table-bordered > thead > tr > th:first-child,
5614
- .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5615
- .panel > .table-bordered > tbody > tr > th:first-child,
5616
- .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5617
- .panel > .table-bordered > tfoot > tr > th:first-child,
5618
- .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5619
- .panel > .table-bordered > thead > tr > td:first-child,
5620
- .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5621
- .panel > .table-bordered > tbody > tr > td:first-child,
5622
- .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5623
- .panel > .table-bordered > tfoot > tr > td:first-child,
5624
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5625
- border-left: 0;
5626
- }
5627
- .panel > .table-bordered > thead > tr > th:last-child,
5628
- .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5629
- .panel > .table-bordered > tbody > tr > th:last-child,
5630
- .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5631
- .panel > .table-bordered > tfoot > tr > th:last-child,
5632
- .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5633
- .panel > .table-bordered > thead > tr > td:last-child,
5634
- .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5635
- .panel > .table-bordered > tbody > tr > td:last-child,
5636
- .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5637
- .panel > .table-bordered > tfoot > tr > td:last-child,
5638
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5639
- border-right: 0;
5640
- }
5641
- .panel > .table-bordered > thead > tr:first-child > td,
5642
- .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
5643
- .panel > .table-bordered > tbody > tr:first-child > td,
5644
- .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
5645
- .panel > .table-bordered > thead > tr:first-child > th,
5646
- .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
5647
- .panel > .table-bordered > tbody > tr:first-child > th,
5648
- .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
5649
- border-bottom: 0;
5650
- }
5651
- .panel > .table-bordered > tbody > tr:last-child > td,
5652
- .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5653
- .panel > .table-bordered > tfoot > tr:last-child > td,
5654
- .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
5655
- .panel > .table-bordered > tbody > tr:last-child > th,
5656
- .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5657
- .panel > .table-bordered > tfoot > tr:last-child > th,
5658
- .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
5659
- border-bottom: 0;
5660
- }
5661
- .panel > .table-responsive {
5662
- margin-bottom: 0;
5663
- border: 0;
5664
- }
5665
- .panel-group {
5666
- margin-bottom: 20px;
5667
- }
5668
- .panel-group .panel {
5669
- margin-bottom: 0;
5670
- border-radius: 4px;
5671
- }
5672
- .panel-group .panel + .panel {
5673
- margin-top: 5px;
5674
- }
5675
- .panel-group .panel-heading {
5676
- border-bottom: 0;
5677
- }
5678
- .panel-group .panel-heading + .panel-collapse > .panel-body,
5679
- .panel-group .panel-heading + .panel-collapse > .list-group {
5680
- border-top: 1px solid #ddd;
5681
- }
5682
- .panel-group .panel-footer {
5683
- border-top: 0;
5684
- }
5685
- .panel-group .panel-footer + .panel-collapse .panel-body {
5686
- border-bottom: 1px solid #ddd;
5687
- }
5688
- .panel-default {
5689
- border-color: #ddd;
5690
- }
5691
- .panel-default > .panel-heading {
5692
- color: #333;
5693
- background-color: #f5f5f5;
5694
- border-color: #ddd;
5695
- }
5696
- .panel-default > .panel-heading + .panel-collapse > .panel-body {
5697
- border-top-color: #ddd;
5698
- }
5699
- .panel-default > .panel-heading .badge {
5700
- color: #f5f5f5;
5701
- background-color: #333;
5702
- }
5703
- .panel-default > .panel-footer + .panel-collapse > .panel-body {
5704
- border-bottom-color: #ddd;
5705
- }
5706
- .panel-primary {
5707
- border-color: #337ab7;
5708
- }
5709
- .panel-primary > .panel-heading {
5710
- color: #fff;
5711
- background-color: #337ab7;
5712
- border-color: #337ab7;
5713
- }
5714
- .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5715
- border-top-color: #337ab7;
5716
- }
5717
- .panel-primary > .panel-heading .badge {
5718
- color: #337ab7;
5719
- background-color: #fff;
5720
- }
5721
- .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5722
- border-bottom-color: #337ab7;
5723
- }
5724
- .panel-success {
5725
- border-color: #d6e9c6;
5726
- }
5727
- .panel-success > .panel-heading {
5728
- color: #3c763d;
5729
- background-color: #dff0d8;
5730
- border-color: #d6e9c6;
5731
- }
5732
- .panel-success > .panel-heading + .panel-collapse > .panel-body {
5733
- border-top-color: #d6e9c6;
5734
- }
5735
- .panel-success > .panel-heading .badge {
5736
- color: #dff0d8;
5737
- background-color: #3c763d;
5738
- }
5739
- .panel-success > .panel-footer + .panel-collapse > .panel-body {
5740
- border-bottom-color: #d6e9c6;
5741
- }
5742
- .panel-info {
5743
- border-color: #bce8f1;
5744
- }
5745
- .panel-info > .panel-heading {
5746
- color: #31708f;
5747
- background-color: #d9edf7;
5748
- border-color: #bce8f1;
5749
- }
5750
- .panel-info > .panel-heading + .panel-collapse > .panel-body {
5751
- border-top-color: #bce8f1;
5752
- }
5753
- .panel-info > .panel-heading .badge {
5754
- color: #d9edf7;
5755
- background-color: #31708f;
5756
- }
5757
- .panel-info > .panel-footer + .panel-collapse > .panel-body {
5758
- border-bottom-color: #bce8f1;
5759
- }
5760
- .panel-warning {
5761
- border-color: #faebcc;
5762
- }
5763
- .panel-warning > .panel-heading {
5764
- color: #8a6d3b;
5765
- background-color: #fcf8e3;
5766
- border-color: #faebcc;
5767
- }
5768
- .panel-warning > .panel-heading + .panel-collapse > .panel-body {
5769
- border-top-color: #faebcc;
5770
- }
5771
- .panel-warning > .panel-heading .badge {
5772
- color: #fcf8e3;
5773
- background-color: #8a6d3b;
5774
- }
5775
- .panel-warning > .panel-footer + .panel-collapse > .panel-body {
5776
- border-bottom-color: #faebcc;
5777
- }
5778
- .panel-danger {
5779
- border-color: #ebccd1;
5780
- }
5781
- .panel-danger > .panel-heading {
5782
- color: #a94442;
5783
- background-color: #f2dede;
5784
- border-color: #ebccd1;
5785
- }
5786
- .panel-danger > .panel-heading + .panel-collapse > .panel-body {
5787
- border-top-color: #ebccd1;
5788
- }
5789
- .panel-danger > .panel-heading .badge {
5790
- color: #f2dede;
5791
- background-color: #a94442;
5792
- }
5793
- .panel-danger > .panel-footer + .panel-collapse > .panel-body {
5794
- border-bottom-color: #ebccd1;
5795
- }
5796
- .embed-responsive {
5797
- position: relative;
5798
- display: block;
5799
- height: 0;
5800
- padding: 0;
5801
- overflow: hidden;
5802
- }
5803
- .embed-responsive .embed-responsive-item,
5804
- .embed-responsive iframe,
5805
- .embed-responsive embed,
5806
- .embed-responsive object,
5807
- .embed-responsive video {
5808
- position: absolute;
5809
- top: 0;
5810
- bottom: 0;
5811
- left: 0;
5812
- width: 100%;
5813
- height: 100%;
5814
- border: 0;
5815
- }
5816
- .embed-responsive-16by9 {
5817
- padding-bottom: 56.25%;
5818
- }
5819
- .embed-responsive-4by3 {
5820
- padding-bottom: 75%;
5821
- }
5822
- .well {
5823
- min-height: 20px;
5824
- padding: 19px;
5825
- margin-bottom: 20px;
5826
- background-color: #f5f5f5;
5827
- border: 1px solid #e3e3e3;
5828
- border-radius: 4px;
5829
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5830
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5831
- }
5832
- .well blockquote {
5833
- border-color: #ddd;
5834
- border-color: rgba(0, 0, 0, .15);
5835
- }
5836
- .well-lg {
5837
- padding: 24px;
5838
- border-radius: 6px;
5839
- }
5840
- .well-sm {
5841
- padding: 9px;
5842
- border-radius: 3px;
5843
- }
5844
- .close {
5845
- float: right;
5846
- font-size: 21px;
5847
- font-weight: bold;
5848
- line-height: 1;
5849
- color: #000;
5850
- text-shadow: 0 1px 0 #fff;
5851
- filter: alpha(opacity=20);
5852
- opacity: .2;
5853
- }
5854
- .close:hover,
5855
- .close:focus {
5856
- color: #000;
5857
- text-decoration: none;
5858
- cursor: pointer;
5859
- filter: alpha(opacity=50);
5860
- opacity: .5;
5861
- }
5862
- button.close {
5863
- -webkit-appearance: none;
5864
- padding: 0;
5865
- cursor: pointer;
5866
- background: transparent;
5867
- border: 0;
5868
- }
5869
- .modal-open {
5870
- overflow: hidden;
5871
- }
5872
- .modal {
5873
- position: fixed;
5874
- top: 0;
5875
- right: 0;
5876
- bottom: 0;
5877
- left: 0;
5878
- z-index: 1050;
5879
- display: none;
5880
- overflow: hidden;
5881
- -webkit-overflow-scrolling: touch;
5882
- outline: 0;
5883
- }
5884
- .modal.fade .modal-dialog {
5885
- -webkit-transition: -webkit-transform .3s ease-out;
5886
- -o-transition: -o-transform .3s ease-out;
5887
- transition: transform .3s ease-out;
5888
- -webkit-transform: translate(0, -25%);
5889
- -ms-transform: translate(0, -25%);
5890
- -o-transform: translate(0, -25%);
5891
- transform: translate(0, -25%);
5892
- }
5893
- .modal.in .modal-dialog {
5894
- -webkit-transform: translate(0, 0);
5895
- -ms-transform: translate(0, 0);
5896
- -o-transform: translate(0, 0);
5897
- transform: translate(0, 0);
5898
- }
5899
- .modal-open .modal {
5900
- overflow-x: hidden;
5901
- overflow-y: auto;
5902
- }
5903
- .modal-dialog {
5904
- position: relative;
5905
- width: auto;
5906
- margin: 10px;
5907
- }
5908
- .modal-content {
5909
- position: relative;
5910
- background-color: #fff;
5911
- -webkit-background-clip: padding-box;
5912
- background-clip: padding-box;
5913
- border: 1px solid #999;
5914
- border: 1px solid rgba(0, 0, 0, .2);
5915
- border-radius: 6px;
5916
- outline: 0;
5917
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5918
- box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5919
- }
5920
- .modal-backdrop {
5921
- position: fixed;
5922
- top: 0;
5923
- right: 0;
5924
- bottom: 0;
5925
- left: 0;
5926
- z-index: 1040;
5927
- background-color: #000;
5928
- }
5929
- .modal-backdrop.fade {
5930
- filter: alpha(opacity=0);
5931
- opacity: 0;
5932
- }
5933
- .modal-backdrop.in {
5934
- filter: alpha(opacity=50);
5935
- opacity: .5;
5936
- }
5937
- .modal-header {
5938
- padding: 15px;
5939
- border-bottom: 1px solid #e5e5e5;
5940
- }
5941
- .modal-header .close {
5942
- margin-top: -2px;
5943
- }
5944
- .modal-title {
5945
- margin: 0;
5946
- line-height: 1.42857143;
5947
- }
5948
- .modal-body {
5949
- position: relative;
5950
- padding: 15px;
5951
- }
5952
- .modal-footer {
5953
- padding: 15px;
5954
- text-align: right;
5955
- border-top: 1px solid #e5e5e5;
5956
- }
5957
- .modal-footer .btn + .btn {
5958
- margin-bottom: 0;
5959
- margin-left: 5px;
5960
- }
5961
- .modal-footer .btn-group .btn + .btn {
5962
- margin-left: -1px;
5963
- }
5964
- .modal-footer .btn-block + .btn-block {
5965
- margin-left: 0;
5966
- }
5967
- .modal-scrollbar-measure {
5968
- position: absolute;
5969
- top: -9999px;
5970
- width: 50px;
5971
- height: 50px;
5972
- overflow: scroll;
5973
- }
5974
- @media (min-width: 768px) {
5975
- .modal-dialog {
5976
- width: 600px;
5977
- margin: 30px auto;
5978
- }
5979
- .modal-content {
5980
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5981
- box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5982
- }
5983
- .modal-sm {
5984
- width: 300px;
5985
- }
5986
- }
5987
- @media (min-width: 992px) {
5988
- .modal-lg {
5989
- width: 900px;
5990
- }
5991
- }
5992
- .tooltip {
5993
- position: absolute;
5994
- z-index: 1070;
5995
- display: block;
5996
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5997
- font-size: 12px;
5998
- font-style: normal;
5999
- font-weight: normal;
6000
- line-height: 1.42857143;
6001
- text-align: left;
6002
- text-align: start;
6003
- text-decoration: none;
6004
- text-shadow: none;
6005
- text-transform: none;
6006
- letter-spacing: normal;
6007
- word-break: normal;
6008
- word-spacing: normal;
6009
- word-wrap: normal;
6010
- white-space: normal;
6011
- filter: alpha(opacity=0);
6012
- opacity: 0;
6013
-
6014
- line-break: auto;
6015
- }
6016
- .tooltip.in {
6017
- filter: alpha(opacity=90);
6018
- opacity: .9;
6019
- }
6020
- .tooltip.top {
6021
- padding: 5px 0;
6022
- margin-top: -3px;
6023
- }
6024
- .tooltip.right {
6025
- padding: 0 5px;
6026
- margin-left: 3px;
6027
- }
6028
- .tooltip.bottom {
6029
- padding: 5px 0;
6030
- margin-top: 3px;
6031
- }
6032
- .tooltip.left {
6033
- padding: 0 5px;
6034
- margin-left: -3px;
6035
- }
6036
- .tooltip-inner {
6037
- max-width: 200px;
6038
- padding: 3px 8px;
6039
- color: #fff;
6040
- text-align: center;
6041
- background-color: #000;
6042
- border-radius: 4px;
6043
- }
6044
- .tooltip-arrow {
6045
- position: absolute;
6046
- width: 0;
6047
- height: 0;
6048
- border-color: transparent;
6049
- border-style: solid;
6050
- }
6051
- .tooltip.top .tooltip-arrow {
6052
- bottom: 0;
6053
- left: 50%;
6054
- margin-left: -5px;
6055
- border-width: 5px 5px 0;
6056
- border-top-color: #000;
6057
- }
6058
- .tooltip.top-left .tooltip-arrow {
6059
- right: 5px;
6060
- bottom: 0;
6061
- margin-bottom: -5px;
6062
- border-width: 5px 5px 0;
6063
- border-top-color: #000;
6064
- }
6065
- .tooltip.top-right .tooltip-arrow {
6066
- bottom: 0;
6067
- left: 5px;
6068
- margin-bottom: -5px;
6069
- border-width: 5px 5px 0;
6070
- border-top-color: #000;
6071
- }
6072
- .tooltip.right .tooltip-arrow {
6073
- top: 50%;
6074
- left: 0;
6075
- margin-top: -5px;
6076
- border-width: 5px 5px 5px 0;
6077
- border-right-color: #000;
6078
- }
6079
- .tooltip.left .tooltip-arrow {
6080
- top: 50%;
6081
- right: 0;
6082
- margin-top: -5px;
6083
- border-width: 5px 0 5px 5px;
6084
- border-left-color: #000;
6085
- }
6086
- .tooltip.bottom .tooltip-arrow {
6087
- top: 0;
6088
- left: 50%;
6089
- margin-left: -5px;
6090
- border-width: 0 5px 5px;
6091
- border-bottom-color: #000;
6092
- }
6093
- .tooltip.bottom-left .tooltip-arrow {
6094
- top: 0;
6095
- right: 5px;
6096
- margin-top: -5px;
6097
- border-width: 0 5px 5px;
6098
- border-bottom-color: #000;
6099
- }
6100
- .tooltip.bottom-right .tooltip-arrow {
6101
- top: 0;
6102
- left: 5px;
6103
- margin-top: -5px;
6104
- border-width: 0 5px 5px;
6105
- border-bottom-color: #000;
6106
- }
6107
- .popover {
6108
- position: absolute;
6109
- top: 0;
6110
- left: 0;
6111
- z-index: 1060;
6112
- display: none;
6113
- max-width: 276px;
6114
- padding: 1px;
6115
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6116
- font-size: 14px;
6117
- font-style: normal;
6118
- font-weight: normal;
6119
- line-height: 1.42857143;
6120
- text-align: left;
6121
- text-align: start;
6122
- text-decoration: none;
6123
- text-shadow: none;
6124
- text-transform: none;
6125
- letter-spacing: normal;
6126
- word-break: normal;
6127
- word-spacing: normal;
6128
- word-wrap: normal;
6129
- white-space: normal;
6130
- background-color: #fff;
6131
- -webkit-background-clip: padding-box;
6132
- background-clip: padding-box;
6133
- border: 1px solid #ccc;
6134
- border: 1px solid rgba(0, 0, 0, .2);
6135
- border-radius: 6px;
6136
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
6137
- box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
6138
-
6139
- line-break: auto;
6140
- }
6141
- .popover.top {
6142
- margin-top: -10px;
6143
- }
6144
- .popover.right {
6145
- margin-left: 10px;
6146
- }
6147
- .popover.bottom {
6148
- margin-top: 10px;
6149
- }
6150
- .popover.left {
6151
- margin-left: -10px;
6152
- }
6153
- .popover-title {
6154
- padding: 8px 14px;
6155
- margin: 0;
6156
- font-size: 14px;
6157
- background-color: #f7f7f7;
6158
- border-bottom: 1px solid #ebebeb;
6159
- border-radius: 5px 5px 0 0;
6160
- }
6161
- .popover-content {
6162
- padding: 9px 14px;
6163
- }
6164
- .popover > .arrow,
6165
- .popover > .arrow:after {
6166
- position: absolute;
6167
- display: block;
6168
- width: 0;
6169
- height: 0;
6170
- border-color: transparent;
6171
- border-style: solid;
6172
- }
6173
- .popover > .arrow {
6174
- border-width: 11px;
6175
- }
6176
- .popover > .arrow:after {
6177
- content: "";
6178
- border-width: 10px;
6179
- }
6180
- .popover.top > .arrow {
6181
- bottom: -11px;
6182
- left: 50%;
6183
- margin-left: -11px;
6184
- border-top-color: #999;
6185
- border-top-color: rgba(0, 0, 0, .25);
6186
- border-bottom-width: 0;
6187
- }
6188
- .popover.top > .arrow:after {
6189
- bottom: 1px;
6190
- margin-left: -10px;
6191
- content: " ";
6192
- border-top-color: #fff;
6193
- border-bottom-width: 0;
6194
- }
6195
- .popover.right > .arrow {
6196
- top: 50%;
6197
- left: -11px;
6198
- margin-top: -11px;
6199
- border-right-color: #999;
6200
- border-right-color: rgba(0, 0, 0, .25);
6201
- border-left-width: 0;
6202
- }
6203
- .popover.right > .arrow:after {
6204
- bottom: -10px;
6205
- left: 1px;
6206
- content: " ";
6207
- border-right-color: #fff;
6208
- border-left-width: 0;
6209
- }
6210
- .popover.bottom > .arrow {
6211
- top: -11px;
6212
- left: 50%;
6213
- margin-left: -11px;
6214
- border-top-width: 0;
6215
- border-bottom-color: #999;
6216
- border-bottom-color: rgba(0, 0, 0, .25);
6217
- }
6218
- .popover.bottom > .arrow:after {
6219
- top: 1px;
6220
- margin-left: -10px;
6221
- content: " ";
6222
- border-top-width: 0;
6223
- border-bottom-color: #fff;
6224
- }
6225
- .popover.left > .arrow {
6226
- top: 50%;
6227
- right: -11px;
6228
- margin-top: -11px;
6229
- border-right-width: 0;
6230
- border-left-color: #999;
6231
- border-left-color: rgba(0, 0, 0, .25);
6232
- }
6233
- .popover.left > .arrow:after {
6234
- right: 1px;
6235
- bottom: -10px;
6236
- content: " ";
6237
- border-right-width: 0;
6238
- border-left-color: #fff;
6239
- }
6240
- .carousel {
6241
- position: relative;
6242
- }
6243
- .carousel-inner {
6244
- position: relative;
6245
- width: 100%;
6246
- overflow: hidden;
6247
- }
6248
- .carousel-inner > .item {
6249
- position: relative;
6250
- display: none;
6251
- -webkit-transition: .6s ease-in-out left;
6252
- -o-transition: .6s ease-in-out left;
6253
- transition: .6s ease-in-out left;
6254
- }
6255
- .carousel-inner > .item > img,
6256
- .carousel-inner > .item > a > img {
6257
- line-height: 1;
6258
- }
6259
- @media all and (transform-3d), (-webkit-transform-3d) {
6260
- .carousel-inner > .item {
6261
- -webkit-transition: -webkit-transform .6s ease-in-out;
6262
- -o-transition: -o-transform .6s ease-in-out;
6263
- transition: transform .6s ease-in-out;
6264
-
6265
- -webkit-backface-visibility: hidden;
6266
- backface-visibility: hidden;
6267
- -webkit-perspective: 1000px;
6268
- perspective: 1000px;
6269
- }
6270
- .carousel-inner > .item.next,
6271
- .carousel-inner > .item.active.right {
6272
- left: 0;
6273
- -webkit-transform: translate3d(100%, 0, 0);
6274
- transform: translate3d(100%, 0, 0);
6275
- }
6276
- .carousel-inner > .item.prev,
6277
- .carousel-inner > .item.active.left {
6278
- left: 0;
6279
- -webkit-transform: translate3d(-100%, 0, 0);
6280
- transform: translate3d(-100%, 0, 0);
6281
- }
6282
- .carousel-inner > .item.next.left,
6283
- .carousel-inner > .item.prev.right,
6284
- .carousel-inner > .item.active {
6285
- left: 0;
6286
- -webkit-transform: translate3d(0, 0, 0);
6287
- transform: translate3d(0, 0, 0);
6288
- }
6289
- }
6290
- .carousel-inner > .active,
6291
- .carousel-inner > .next,
6292
- .carousel-inner > .prev {
6293
- display: block;
6294
- }
6295
- .carousel-inner > .active {
6296
- left: 0;
6297
- }
6298
- .carousel-inner > .next,
6299
- .carousel-inner > .prev {
6300
- position: absolute;
6301
- top: 0;
6302
- width: 100%;
6303
- }
6304
- .carousel-inner > .next {
6305
- left: 100%;
6306
- }
6307
- .carousel-inner > .prev {
6308
- left: -100%;
6309
- }
6310
- .carousel-inner > .next.left,
6311
- .carousel-inner > .prev.right {
6312
- left: 0;
6313
- }
6314
- .carousel-inner > .active.left {
6315
- left: -100%;
6316
- }
6317
- .carousel-inner > .active.right {
6318
- left: 100%;
6319
- }
6320
- .carousel-control {
6321
- position: absolute;
6322
- top: 0;
6323
- bottom: 0;
6324
- left: 0;
6325
- width: 15%;
6326
- font-size: 20px;
6327
- color: #fff;
6328
- text-align: center;
6329
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6330
- background-color: rgba(0, 0, 0, 0);
6331
- filter: alpha(opacity=50);
6332
- opacity: .5;
6333
- }
6334
- .carousel-control.left {
6335
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6336
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6337
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
6338
- background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6339
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
6340
- background-repeat: repeat-x;
6341
- }
6342
- .carousel-control.right {
6343
- right: 0;
6344
- left: auto;
6345
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6346
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6347
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
6348
- background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6349
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
6350
- background-repeat: repeat-x;
6351
- }
6352
- .carousel-control:hover,
6353
- .carousel-control:focus {
6354
- color: #fff;
6355
- text-decoration: none;
6356
- filter: alpha(opacity=90);
6357
- outline: 0;
6358
- opacity: .9;
6359
- }
6360
- .carousel-control .icon-prev,
6361
- .carousel-control .icon-next,
6362
- .carousel-control .glyphicon-chevron-left,
6363
- .carousel-control .glyphicon-chevron-right {
6364
- position: absolute;
6365
- top: 50%;
6366
- z-index: 5;
6367
- display: inline-block;
6368
- margin-top: -10px;
6369
- }
6370
- .carousel-control .icon-prev,
6371
- .carousel-control .glyphicon-chevron-left {
6372
- left: 50%;
6373
- margin-left: -10px;
6374
- }
6375
- .carousel-control .icon-next,
6376
- .carousel-control .glyphicon-chevron-right {
6377
- right: 50%;
6378
- margin-right: -10px;
6379
- }
6380
- .carousel-control .icon-prev,
6381
- .carousel-control .icon-next {
6382
- width: 20px;
6383
- height: 20px;
6384
- font-family: serif;
6385
- line-height: 1;
6386
- }
6387
- .carousel-control .icon-prev:before {
6388
- content: '\2039';
6389
- }
6390
- .carousel-control .icon-next:before {
6391
- content: '\203a';
6392
- }
6393
- .carousel-indicators {
6394
- position: absolute;
6395
- bottom: 10px;
6396
- left: 50%;
6397
- z-index: 15;
6398
- width: 60%;
6399
- padding-left: 0;
6400
- margin-left: -30%;
6401
- text-align: center;
6402
- list-style: none;
6403
- }
6404
- .carousel-indicators li {
6405
- display: inline-block;
6406
- width: 10px;
6407
- height: 10px;
6408
- margin: 1px;
6409
- text-indent: -999px;
6410
- cursor: pointer;
6411
- background-color: #000 \9;
6412
- background-color: rgba(0, 0, 0, 0);
6413
- border: 1px solid #fff;
6414
- border-radius: 10px;
6415
- }
6416
- .carousel-indicators .active {
6417
- width: 12px;
6418
- height: 12px;
6419
- margin: 0;
6420
- background-color: #fff;
6421
- }
6422
- .carousel-caption {
6423
- position: absolute;
6424
- right: 15%;
6425
- bottom: 20px;
6426
- left: 15%;
6427
- z-index: 10;
6428
- padding-top: 20px;
6429
- padding-bottom: 20px;
6430
- color: #fff;
6431
- text-align: center;
6432
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6433
- }
6434
- .carousel-caption .btn {
6435
- text-shadow: none;
6436
- }
6437
- @media screen and (min-width: 768px) {
6438
- .carousel-control .glyphicon-chevron-left,
6439
- .carousel-control .glyphicon-chevron-right,
6440
- .carousel-control .icon-prev,
6441
- .carousel-control .icon-next {
6442
- width: 30px;
6443
- height: 30px;
6444
- margin-top: -10px;
6445
- font-size: 30px;
6446
- }
6447
- .carousel-control .glyphicon-chevron-left,
6448
- .carousel-control .icon-prev {
6449
- margin-left: -10px;
6450
- }
6451
- .carousel-control .glyphicon-chevron-right,
6452
- .carousel-control .icon-next {
6453
- margin-right: -10px;
6454
- }
6455
- .carousel-caption {
6456
- right: 20%;
6457
- left: 20%;
6458
- padding-bottom: 30px;
6459
- }
6460
- .carousel-indicators {
6461
- bottom: 20px;
6462
- }
6463
- }
6464
- .clearfix:before,
6465
- .clearfix:after,
6466
- .dl-horizontal dd:before,
6467
- .dl-horizontal dd:after,
6468
- .container:before,
6469
- .container:after,
6470
- .container-fluid:before,
6471
- .container-fluid:after,
6472
- .row:before,
6473
- .row:after,
6474
- .form-horizontal .form-group:before,
6475
- .form-horizontal .form-group:after,
6476
- .btn-toolbar:before,
6477
- .btn-toolbar:after,
6478
- .btn-group-vertical > .btn-group:before,
6479
- .btn-group-vertical > .btn-group:after,
6480
- .nav:before,
6481
- .nav:after,
6482
- .navbar:before,
6483
- .navbar:after,
6484
- .navbar-header:before,
6485
- .navbar-header:after,
6486
- .navbar-collapse:before,
6487
- .navbar-collapse:after,
6488
- .pager:before,
6489
- .pager:after,
6490
- .panel-body:before,
6491
- .panel-body:after,
6492
- .modal-header:before,
6493
- .modal-header:after,
6494
- .modal-footer:before,
6495
- .modal-footer:after {
6496
- display: table;
6497
- content: " ";
6498
- }
6499
- .clearfix:after,
6500
- .dl-horizontal dd:after,
6501
- .container:after,
6502
- .container-fluid:after,
6503
- .row:after,
6504
- .form-horizontal .form-group:after,
6505
- .btn-toolbar:after,
6506
- .btn-group-vertical > .btn-group:after,
6507
- .nav:after,
6508
- .navbar:after,
6509
- .navbar-header:after,
6510
- .navbar-collapse:after,
6511
- .pager:after,
6512
- .panel-body:after,
6513
- .modal-header:after,
6514
- .modal-footer:after {
6515
- clear: both;
6516
- }
6517
- .center-block {
6518
- display: block;
6519
- margin-right: auto;
6520
- margin-left: auto;
6521
- }
6522
- .pull-right {
6523
- float: right !important;
6524
- }
6525
- .pull-left {
6526
- float: left !important;
6527
- }
6528
- .hide {
6529
- display: none !important;
6530
- }
6531
- .show {
6532
- display: block !important;
6533
- }
6534
- .invisible {
6535
- visibility: hidden;
6536
- }
6537
- .text-hide {
6538
- font: 0/0 a;
6539
- color: transparent;
6540
- text-shadow: none;
6541
- background-color: transparent;
6542
- border: 0;
6543
- }
6544
- .hidden {
6545
- display: none !important;
6546
- }
6547
- .affix {
6548
- position: fixed;
6549
- }
6550
- @-ms-viewport {
6551
- width: device-width;
6552
- }
6553
- .visible-xs,
6554
- .visible-sm,
6555
- .visible-md,
6556
- .visible-lg {
6557
- display: none !important;
6558
- }
6559
- .visible-xs-block,
6560
- .visible-xs-inline,
6561
- .visible-xs-inline-block,
6562
- .visible-sm-block,
6563
- .visible-sm-inline,
6564
- .visible-sm-inline-block,
6565
- .visible-md-block,
6566
- .visible-md-inline,
6567
- .visible-md-inline-block,
6568
- .visible-lg-block,
6569
- .visible-lg-inline,
6570
- .visible-lg-inline-block {
6571
- display: none !important;
6572
- }
6573
- @media (max-width: 767px) {
6574
- .visible-xs {
6575
- display: block !important;
6576
- }
6577
- table.visible-xs {
6578
- display: table !important;
6579
- }
6580
- tr.visible-xs {
6581
- display: table-row !important;
6582
- }
6583
- th.visible-xs,
6584
- td.visible-xs {
6585
- display: table-cell !important;
6586
- }
6587
- }
6588
- @media (max-width: 767px) {
6589
- .visible-xs-block {
6590
- display: block !important;
6591
- }
6592
- }
6593
- @media (max-width: 767px) {
6594
- .visible-xs-inline {
6595
- display: inline !important;
6596
- }
6597
- }
6598
- @media (max-width: 767px) {
6599
- .visible-xs-inline-block {
6600
- display: inline-block !important;
6601
- }
6602
- }
6603
- @media (min-width: 768px) and (max-width: 991px) {
6604
- .visible-sm {
6605
- display: block !important;
6606
- }
6607
- table.visible-sm {
6608
- display: table !important;
6609
- }
6610
- tr.visible-sm {
6611
- display: table-row !important;
6612
- }
6613
- th.visible-sm,
6614
- td.visible-sm {
6615
- display: table-cell !important;
6616
- }
6617
- }
6618
- @media (min-width: 768px) and (max-width: 991px) {
6619
- .visible-sm-block {
6620
- display: block !important;
6621
- }
6622
- }
6623
- @media (min-width: 768px) and (max-width: 991px) {
6624
- .visible-sm-inline {
6625
- display: inline !important;
6626
- }
6627
- }
6628
- @media (min-width: 768px) and (max-width: 991px) {
6629
- .visible-sm-inline-block {
6630
- display: inline-block !important;
6631
- }
6632
- }
6633
- @media (min-width: 992px) and (max-width: 1199px) {
6634
- .visible-md {
6635
- display: block !important;
6636
- }
6637
- table.visible-md {
6638
- display: table !important;
6639
- }
6640
- tr.visible-md {
6641
- display: table-row !important;
6642
- }
6643
- th.visible-md,
6644
- td.visible-md {
6645
- display: table-cell !important;
6646
- }
6647
- }
6648
- @media (min-width: 992px) and (max-width: 1199px) {
6649
- .visible-md-block {
6650
- display: block !important;
6651
- }
6652
- }
6653
- @media (min-width: 992px) and (max-width: 1199px) {
6654
- .visible-md-inline {
6655
- display: inline !important;
6656
- }
6657
- }
6658
- @media (min-width: 992px) and (max-width: 1199px) {
6659
- .visible-md-inline-block {
6660
- display: inline-block !important;
6661
- }
6662
- }
6663
- @media (min-width: 1200px) {
6664
- .visible-lg {
6665
- display: block !important;
6666
- }
6667
- table.visible-lg {
6668
- display: table !important;
6669
- }
6670
- tr.visible-lg {
6671
- display: table-row !important;
6672
- }
6673
- th.visible-lg,
6674
- td.visible-lg {
6675
- display: table-cell !important;
6676
- }
6677
- }
6678
- @media (min-width: 1200px) {
6679
- .visible-lg-block {
6680
- display: block !important;
6681
- }
6682
- }
6683
- @media (min-width: 1200px) {
6684
- .visible-lg-inline {
6685
- display: inline !important;
6686
- }
6687
- }
6688
- @media (min-width: 1200px) {
6689
- .visible-lg-inline-block {
6690
- display: inline-block !important;
6691
- }
6692
- }
6693
- @media (max-width: 767px) {
6694
- .hidden-xs {
6695
- display: none !important;
6696
- }
6697
- }
6698
- @media (min-width: 768px) and (max-width: 991px) {
6699
- .hidden-sm {
6700
- display: none !important;
6701
- }
6702
- }
6703
- @media (min-width: 992px) and (max-width: 1199px) {
6704
- .hidden-md {
6705
- display: none !important;
6706
- }
6707
- }
6708
- @media (min-width: 1200px) {
6709
- .hidden-lg {
6710
- display: none !important;
6711
- }
6712
- }
6713
- .visible-print {
6714
- display: none !important;
6715
- }
6716
- @media print {
6717
- .visible-print {
6718
- display: block !important;
6719
- }
6720
- table.visible-print {
6721
- display: table !important;
6722
- }
6723
- tr.visible-print {
6724
- display: table-row !important;
6725
- }
6726
- th.visible-print,
6727
- td.visible-print {
6728
- display: table-cell !important;
6729
- }
6730
- }
6731
- .visible-print-block {
6732
- display: none !important;
6733
- }
6734
- @media print {
6735
- .visible-print-block {
6736
- display: block !important;
6737
- }
6738
- }
6739
- .visible-print-inline {
6740
- display: none !important;
6741
- }
6742
- @media print {
6743
- .visible-print-inline {
6744
- display: inline !important;
6745
- }
6746
- }
6747
- .visible-print-inline-block {
6748
- display: none !important;
6749
- }
6750
- @media print {
6751
- .visible-print-inline-block {
6752
- display: inline-block !important;
6753
- }
6754
- }
6755
- @media print {
6756
- .hidden-print {
6757
- display: none !important;
6758
- }
6759
- }
6760
- /*# sourceMappingURL=bootstrap.css.map */
1
+ /*!
2
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
3
+ * Copyright 2011-2015 Twitter, Inc.
4
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */
6
+ /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
7
+ html {
8
+ font-family: sans-serif;
9
+ -webkit-text-size-adjust: 100%;
10
+ -ms-text-size-adjust: 100%;
11
+ }
12
+ body {
13
+ margin: 0;
14
+ }
15
+ article,
16
+ aside,
17
+ details,
18
+ figcaption,
19
+ figure,
20
+ footer,
21
+ header,
22
+ hgroup,
23
+ main,
24
+ menu,
25
+ nav,
26
+ section,
27
+ summary {
28
+ display: block;
29
+ }
30
+ audio,
31
+ canvas,
32
+ progress,
33
+ video {
34
+ display: inline-block;
35
+ vertical-align: baseline;
36
+ }
37
+ audio:not([controls]) {
38
+ display: none;
39
+ height: 0;
40
+ }
41
+ [hidden],
42
+ template {
43
+ display: none;
44
+ }
45
+ a {
46
+ background-color: transparent;
47
+ }
48
+ a:active,
49
+ a:hover {
50
+ outline: 0;
51
+ }
52
+ abbr[title] {
53
+ border-bottom: 1px dotted;
54
+ }
55
+ b,
56
+ strong {
57
+ font-weight: bold;
58
+ }
59
+ dfn {
60
+ font-style: italic;
61
+ }
62
+ h1 {
63
+ margin: .67em 0;
64
+ font-size: 2em;
65
+ }
66
+ mark {
67
+ color: #000;
68
+ background: #ff0;
69
+ }
70
+ small {
71
+ font-size: 80%;
72
+ }
73
+ sub,
74
+ sup {
75
+ position: relative;
76
+ font-size: 75%;
77
+ line-height: 0;
78
+ vertical-align: baseline;
79
+ }
80
+ sup {
81
+ top: -.5em;
82
+ }
83
+ sub {
84
+ bottom: -.25em;
85
+ }
86
+ img {
87
+ border: 0;
88
+ }
89
+ svg:not(:root) {
90
+ overflow: hidden;
91
+ }
92
+ figure {
93
+ margin: 1em 40px;
94
+ }
95
+ hr {
96
+ height: 0;
97
+ -webkit-box-sizing: content-box;
98
+ -moz-box-sizing: content-box;
99
+ box-sizing: content-box;
100
+ }
101
+ pre {
102
+ overflow: auto;
103
+ }
104
+ code,
105
+ kbd,
106
+ pre,
107
+ samp {
108
+ font-family: monospace, monospace;
109
+ font-size: 1em;
110
+ }
111
+ button,
112
+ input,
113
+ optgroup,
114
+ select,
115
+ textarea {
116
+ margin: 0;
117
+ font: inherit;
118
+ color: inherit;
119
+ }
120
+ button {
121
+ overflow: visible;
122
+ }
123
+ button,
124
+ select {
125
+ text-transform: none;
126
+ }
127
+ button,
128
+ html input[type="button"],
129
+ input[type="reset"],
130
+ input[type="submit"] {
131
+ -webkit-appearance: button;
132
+ cursor: pointer;
133
+ }
134
+ button[disabled],
135
+ html input[disabled] {
136
+ cursor: default;
137
+ }
138
+ button::-moz-focus-inner,
139
+ input::-moz-focus-inner {
140
+ padding: 0;
141
+ border: 0;
142
+ }
143
+ input {
144
+ line-height: normal;
145
+ }
146
+ input[type="checkbox"],
147
+ input[type="radio"] {
148
+ -webkit-box-sizing: border-box;
149
+ -moz-box-sizing: border-box;
150
+ box-sizing: border-box;
151
+ padding: 0;
152
+ }
153
+ input[type="number"]::-webkit-inner-spin-button,
154
+ input[type="number"]::-webkit-outer-spin-button {
155
+ height: auto;
156
+ }
157
+ input[type="search"] {
158
+ -webkit-box-sizing: content-box;
159
+ -moz-box-sizing: content-box;
160
+ box-sizing: content-box;
161
+ -webkit-appearance: textfield;
162
+ }
163
+ input[type="search"]::-webkit-search-cancel-button,
164
+ input[type="search"]::-webkit-search-decoration {
165
+ -webkit-appearance: none;
166
+ }
167
+ fieldset {
168
+ padding: .35em .625em .75em;
169
+ margin: 0 2px;
170
+ border: 1px solid #c0c0c0;
171
+ }
172
+ legend {
173
+ padding: 0;
174
+ border: 0;
175
+ }
176
+ textarea {
177
+ overflow: auto;
178
+ }
179
+ optgroup {
180
+ font-weight: bold;
181
+ }
182
+ table {
183
+ border-spacing: 0;
184
+ border-collapse: collapse;
185
+ }
186
+ td,
187
+ th {
188
+ padding: 0;
189
+ }
190
+ /*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
191
+ @media print {
192
+ *,
193
+ *:before,
194
+ *:after {
195
+ color: #000 !important;
196
+ text-shadow: none !important;
197
+ background: transparent !important;
198
+ -webkit-box-shadow: none !important;
199
+ box-shadow: none !important;
200
+ }
201
+ a,
202
+ a:visited {
203
+ text-decoration: underline;
204
+ }
205
+ a[href]:after {
206
+ content: " (" attr(href) ")";
207
+ }
208
+ abbr[title]:after {
209
+ content: " (" attr(title) ")";
210
+ }
211
+ a[href^="#"]:after,
212
+ a[href^="javascript:"]:after {
213
+ content: "";
214
+ }
215
+ pre,
216
+ blockquote {
217
+ border: 1px solid #999;
218
+
219
+ page-break-inside: avoid;
220
+ }
221
+ thead {
222
+ display: table-header-group;
223
+ }
224
+ tr,
225
+ img {
226
+ page-break-inside: avoid;
227
+ }
228
+ img {
229
+ max-width: 100% !important;
230
+ }
231
+ p,
232
+ h2,
233
+ h3 {
234
+ orphans: 3;
235
+ widows: 3;
236
+ }
237
+ h2,
238
+ h3 {
239
+ page-break-after: avoid;
240
+ }
241
+ .navbar {
242
+ display: none;
243
+ }
244
+ .btn > .caret,
245
+ .dropup > .btn > .caret {
246
+ border-top-color: #000 !important;
247
+ }
248
+ .label {
249
+ border: 1px solid #000;
250
+ }
251
+ .table {
252
+ border-collapse: collapse !important;
253
+ }
254
+ .table td,
255
+ .table th {
256
+ background-color: #fff !important;
257
+ }
258
+ .table-bordered th,
259
+ .table-bordered td {
260
+ border: 1px solid #ddd !important;
261
+ }
262
+ }
263
+ @font-face {
264
+ font-family: 'Glyphicons Halflings';
265
+
266
+ src: url('../fonts/glyphicons-halflings-regular.eot');
267
+ src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
268
+ }
269
+ .glyphicon {
270
+ position: relative;
271
+ top: 1px;
272
+ display: inline-block;
273
+ font-family: 'Glyphicons Halflings';
274
+ font-style: normal;
275
+ font-weight: normal;
276
+ line-height: 1;
277
+
278
+ -webkit-font-smoothing: antialiased;
279
+ -moz-osx-font-smoothing: grayscale;
280
+ }
281
+ .glyphicon-asterisk:before {
282
+ content: "\002a";
283
+ }
284
+ .glyphicon-plus:before {
285
+ content: "\002b";
286
+ }
287
+ .glyphicon-euro:before,
288
+ .glyphicon-eur:before {
289
+ content: "\20ac";
290
+ }
291
+ .glyphicon-minus:before {
292
+ content: "\2212";
293
+ }
294
+ .glyphicon-cloud:before {
295
+ content: "\2601";
296
+ }
297
+ .glyphicon-envelope:before {
298
+ content: "\2709";
299
+ }
300
+ .glyphicon-pencil:before {
301
+ content: "\270f";
302
+ }
303
+ .glyphicon-glass:before {
304
+ content: "\e001";
305
+ }
306
+ .glyphicon-music:before {
307
+ content: "\e002";
308
+ }
309
+ .glyphicon-search:before {
310
+ content: "\e003";
311
+ }
312
+ .glyphicon-heart:before {
313
+ content: "\e005";
314
+ }
315
+ .glyphicon-star:before {
316
+ content: "\e006";
317
+ }
318
+ .glyphicon-star-empty:before {
319
+ content: "\e007";
320
+ }
321
+ .glyphicon-user:before {
322
+ content: "\e008";
323
+ }
324
+ .glyphicon-film:before {
325
+ content: "\e009";
326
+ }
327
+ .glyphicon-th-large:before {
328
+ content: "\e010";
329
+ }
330
+ .glyphicon-th:before {
331
+ content: "\e011";
332
+ }
333
+ .glyphicon-th-list:before {
334
+ content: "\e012";
335
+ }
336
+ .glyphicon-ok:before {
337
+ content: "\e013";
338
+ }
339
+ .glyphicon-remove:before {
340
+ content: "\e014";
341
+ }
342
+ .glyphicon-zoom-in:before {
343
+ content: "\e015";
344
+ }
345
+ .glyphicon-zoom-out:before {
346
+ content: "\e016";
347
+ }
348
+ .glyphicon-off:before {
349
+ content: "\e017";
350
+ }
351
+ .glyphicon-signal:before {
352
+ content: "\e018";
353
+ }
354
+ .glyphicon-cog:before {
355
+ content: "\e019";
356
+ }
357
+ .glyphicon-trash:before {
358
+ content: "\e020";
359
+ }
360
+ .glyphicon-home:before {
361
+ content: "\e021";
362
+ }
363
+ .glyphicon-file:before {
364
+ content: "\e022";
365
+ }
366
+ .glyphicon-time:before {
367
+ content: "\e023";
368
+ }
369
+ .glyphicon-road:before {
370
+ content: "\e024";
371
+ }
372
+ .glyphicon-download-alt:before {
373
+ content: "\e025";
374
+ }
375
+ .glyphicon-download:before {
376
+ content: "\e026";
377
+ }
378
+ .glyphicon-upload:before {
379
+ content: "\e027";
380
+ }
381
+ .glyphicon-inbox:before {
382
+ content: "\e028";
383
+ }
384
+ .glyphicon-play-circle:before {
385
+ content: "\e029";
386
+ }
387
+ .glyphicon-repeat:before {
388
+ content: "\e030";
389
+ }
390
+ .glyphicon-refresh:before {
391
+ content: "\e031";
392
+ }
393
+ .glyphicon-list-alt:before {
394
+ content: "\e032";
395
+ }
396
+ .glyphicon-lock:before {
397
+ content: "\e033";
398
+ }
399
+ .glyphicon-flag:before {
400
+ content: "\e034";
401
+ }
402
+ .glyphicon-headphones:before {
403
+ content: "\e035";
404
+ }
405
+ .glyphicon-volume-off:before {
406
+ content: "\e036";
407
+ }
408
+ .glyphicon-volume-down:before {
409
+ content: "\e037";
410
+ }
411
+ .glyphicon-volume-up:before {
412
+ content: "\e038";
413
+ }
414
+ .glyphicon-qrcode:before {
415
+ content: "\e039";
416
+ }
417
+ .glyphicon-barcode:before {
418
+ content: "\e040";
419
+ }
420
+ .glyphicon-tag:before {
421
+ content: "\e041";
422
+ }
423
+ .glyphicon-tags:before {
424
+ content: "\e042";
425
+ }
426
+ .glyphicon-book:before {
427
+ content: "\e043";
428
+ }
429
+ .glyphicon-bookmark:before {
430
+ content: "\e044";
431
+ }
432
+ .glyphicon-print:before {
433
+ content: "\e045";
434
+ }
435
+ .glyphicon-camera:before {
436
+ content: "\e046";
437
+ }
438
+ .glyphicon-font:before {
439
+ content: "\e047";
440
+ }
441
+ .glyphicon-bold:before {
442
+ content: "\e048";
443
+ }
444
+ .glyphicon-italic:before {
445
+ content: "\e049";
446
+ }
447
+ .glyphicon-text-height:before {
448
+ content: "\e050";
449
+ }
450
+ .glyphicon-text-width:before {
451
+ content: "\e051";
452
+ }
453
+ .glyphicon-align-left:before {
454
+ content: "\e052";
455
+ }
456
+ .glyphicon-align-center:before {
457
+ content: "\e053";
458
+ }
459
+ .glyphicon-align-right:before {
460
+ content: "\e054";
461
+ }
462
+ .glyphicon-align-justify:before {
463
+ content: "\e055";
464
+ }
465
+ .glyphicon-list:before {
466
+ content: "\e056";
467
+ }
468
+ .glyphicon-indent-left:before {
469
+ content: "\e057";
470
+ }
471
+ .glyphicon-indent-right:before {
472
+ content: "\e058";
473
+ }
474
+ .glyphicon-facetime-video:before {
475
+ content: "\e059";
476
+ }
477
+ .glyphicon-picture:before {
478
+ content: "\e060";
479
+ }
480
+ .glyphicon-map-marker:before {
481
+ content: "\e062";
482
+ }
483
+ .glyphicon-adjust:before {
484
+ content: "\e063";
485
+ }
486
+ .glyphicon-tint:before {
487
+ content: "\e064";
488
+ }
489
+ .glyphicon-edit:before {
490
+ content: "\e065";
491
+ }
492
+ .glyphicon-share:before {
493
+ content: "\e066";
494
+ }
495
+ .glyphicon-check:before {
496
+ content: "\e067";
497
+ }
498
+ .glyphicon-move:before {
499
+ content: "\e068";
500
+ }
501
+ .glyphicon-step-backward:before {
502
+ content: "\e069";
503
+ }
504
+ .glyphicon-fast-backward:before {
505
+ content: "\e070";
506
+ }
507
+ .glyphicon-backward:before {
508
+ content: "\e071";
509
+ }
510
+ .glyphicon-play:before {
511
+ content: "\e072";
512
+ }
513
+ .glyphicon-pause:before {
514
+ content: "\e073";
515
+ }
516
+ .glyphicon-stop:before {
517
+ content: "\e074";
518
+ }
519
+ .glyphicon-forward:before {
520
+ content: "\e075";
521
+ }
522
+ .glyphicon-fast-forward:before {
523
+ content: "\e076";
524
+ }
525
+ .glyphicon-step-forward:before {
526
+ content: "\e077";
527
+ }
528
+ .glyphicon-eject:before {
529
+ content: "\e078";
530
+ }
531
+ .glyphicon-chevron-left:before {
532
+ content: "\e079";
533
+ }
534
+ .glyphicon-chevron-right:before {
535
+ content: "\e080";
536
+ }
537
+ .glyphicon-plus-sign:before {
538
+ content: "\e081";
539
+ }
540
+ .glyphicon-minus-sign:before {
541
+ content: "\e082";
542
+ }
543
+ .glyphicon-remove-sign:before {
544
+ content: "\e083";
545
+ }
546
+ .glyphicon-ok-sign:before {
547
+ content: "\e084";
548
+ }
549
+ .glyphicon-question-sign:before {
550
+ content: "\e085";
551
+ }
552
+ .glyphicon-info-sign:before {
553
+ content: "\e086";
554
+ }
555
+ .glyphicon-screenshot:before {
556
+ content: "\e087";
557
+ }
558
+ .glyphicon-remove-circle:before {
559
+ content: "\e088";
560
+ }
561
+ .glyphicon-ok-circle:before {
562
+ content: "\e089";
563
+ }
564
+ .glyphicon-ban-circle:before {
565
+ content: "\e090";
566
+ }
567
+ .glyphicon-arrow-left:before {
568
+ content: "\e091";
569
+ }
570
+ .glyphicon-arrow-right:before {
571
+ content: "\e092";
572
+ }
573
+ .glyphicon-arrow-up:before {
574
+ content: "\e093";
575
+ }
576
+ .glyphicon-arrow-down:before {
577
+ content: "\e094";
578
+ }
579
+ .glyphicon-share-alt:before {
580
+ content: "\e095";
581
+ }
582
+ .glyphicon-resize-full:before {
583
+ content: "\e096";
584
+ }
585
+ .glyphicon-resize-small:before {
586
+ content: "\e097";
587
+ }
588
+ .glyphicon-exclamation-sign:before {
589
+ content: "\e101";
590
+ }
591
+ .glyphicon-gift:before {
592
+ content: "\e102";
593
+ }
594
+ .glyphicon-leaf:before {
595
+ content: "\e103";
596
+ }
597
+ .glyphicon-fire:before {
598
+ content: "\e104";
599
+ }
600
+ .glyphicon-eye-open:before {
601
+ content: "\e105";
602
+ }
603
+ .glyphicon-eye-close:before {
604
+ content: "\e106";
605
+ }
606
+ .glyphicon-warning-sign:before {
607
+ content: "\e107";
608
+ }
609
+ .glyphicon-plane:before {
610
+ content: "\e108";
611
+ }
612
+ .glyphicon-calendar:before {
613
+ content: "\e109";
614
+ }
615
+ .glyphicon-random:before {
616
+ content: "\e110";
617
+ }
618
+ .glyphicon-comment:before {
619
+ content: "\e111";
620
+ }
621
+ .glyphicon-magnet:before {
622
+ content: "\e112";
623
+ }
624
+ .glyphicon-chevron-up:before {
625
+ content: "\e113";
626
+ }
627
+ .glyphicon-chevron-down:before {
628
+ content: "\e114";
629
+ }
630
+ .glyphicon-retweet:before {
631
+ content: "\e115";
632
+ }
633
+ .glyphicon-shopping-cart:before {
634
+ content: "\e116";
635
+ }
636
+ .glyphicon-folder-close:before {
637
+ content: "\e117";
638
+ }
639
+ .glyphicon-folder-open:before {
640
+ content: "\e118";
641
+ }
642
+ .glyphicon-resize-vertical:before {
643
+ content: "\e119";
644
+ }
645
+ .glyphicon-resize-horizontal:before {
646
+ content: "\e120";
647
+ }
648
+ .glyphicon-hdd:before {
649
+ content: "\e121";
650
+ }
651
+ .glyphicon-bullhorn:before {
652
+ content: "\e122";
653
+ }
654
+ .glyphicon-bell:before {
655
+ content: "\e123";
656
+ }
657
+ .glyphicon-certificate:before {
658
+ content: "\e124";
659
+ }
660
+ .glyphicon-thumbs-up:before {
661
+ content: "\e125";
662
+ }
663
+ .glyphicon-thumbs-down:before {
664
+ content: "\e126";
665
+ }
666
+ .glyphicon-hand-right:before {
667
+ content: "\e127";
668
+ }
669
+ .glyphicon-hand-left:before {
670
+ content: "\e128";
671
+ }
672
+ .glyphicon-hand-up:before {
673
+ content: "\e129";
674
+ }
675
+ .glyphicon-hand-down:before {
676
+ content: "\e130";
677
+ }
678
+ .glyphicon-circle-arrow-right:before {
679
+ content: "\e131";
680
+ }
681
+ .glyphicon-circle-arrow-left:before {
682
+ content: "\e132";
683
+ }
684
+ .glyphicon-circle-arrow-up:before {
685
+ content: "\e133";
686
+ }
687
+ .glyphicon-circle-arrow-down:before {
688
+ content: "\e134";
689
+ }
690
+ .glyphicon-globe:before {
691
+ content: "\e135";
692
+ }
693
+ .glyphicon-wrench:before {
694
+ content: "\e136";
695
+ }
696
+ .glyphicon-tasks:before {
697
+ content: "\e137";
698
+ }
699
+ .glyphicon-filter:before {
700
+ content: "\e138";
701
+ }
702
+ .glyphicon-briefcase:before {
703
+ content: "\e139";
704
+ }
705
+ .glyphicon-fullscreen:before {
706
+ content: "\e140";
707
+ }
708
+ .glyphicon-dashboard:before {
709
+ content: "\e141";
710
+ }
711
+ .glyphicon-paperclip:before {
712
+ content: "\e142";
713
+ }
714
+ .glyphicon-heart-empty:before {
715
+ content: "\e143";
716
+ }
717
+ .glyphicon-link:before {
718
+ content: "\e144";
719
+ }
720
+ .glyphicon-phone:before {
721
+ content: "\e145";
722
+ }
723
+ .glyphicon-pushpin:before {
724
+ content: "\e146";
725
+ }
726
+ .glyphicon-usd:before {
727
+ content: "\e148";
728
+ }
729
+ .glyphicon-gbp:before {
730
+ content: "\e149";
731
+ }
732
+ .glyphicon-sort:before {
733
+ content: "\e150";
734
+ }
735
+ .glyphicon-sort-by-alphabet:before {
736
+ content: "\e151";
737
+ }
738
+ .glyphicon-sort-by-alphabet-alt:before {
739
+ content: "\e152";
740
+ }
741
+ .glyphicon-sort-by-order:before {
742
+ content: "\e153";
743
+ }
744
+ .glyphicon-sort-by-order-alt:before {
745
+ content: "\e154";
746
+ }
747
+ .glyphicon-sort-by-attributes:before {
748
+ content: "\e155";
749
+ }
750
+ .glyphicon-sort-by-attributes-alt:before {
751
+ content: "\e156";
752
+ }
753
+ .glyphicon-unchecked:before {
754
+ content: "\e157";
755
+ }
756
+ .glyphicon-expand:before {
757
+ content: "\e158";
758
+ }
759
+ .glyphicon-collapse-down:before {
760
+ content: "\e159";
761
+ }
762
+ .glyphicon-collapse-up:before {
763
+ content: "\e160";
764
+ }
765
+ .glyphicon-log-in:before {
766
+ content: "\e161";
767
+ }
768
+ .glyphicon-flash:before {
769
+ content: "\e162";
770
+ }
771
+ .glyphicon-log-out:before {
772
+ content: "\e163";
773
+ }
774
+ .glyphicon-new-window:before {
775
+ content: "\e164";
776
+ }
777
+ .glyphicon-record:before {
778
+ content: "\e165";
779
+ }
780
+ .glyphicon-save:before {
781
+ content: "\e166";
782
+ }
783
+ .glyphicon-open:before {
784
+ content: "\e167";
785
+ }
786
+ .glyphicon-saved:before {
787
+ content: "\e168";
788
+ }
789
+ .glyphicon-import:before {
790
+ content: "\e169";
791
+ }
792
+ .glyphicon-export:before {
793
+ content: "\e170";
794
+ }
795
+ .glyphicon-send:before {
796
+ content: "\e171";
797
+ }
798
+ .glyphicon-floppy-disk:before {
799
+ content: "\e172";
800
+ }
801
+ .glyphicon-floppy-saved:before {
802
+ content: "\e173";
803
+ }
804
+ .glyphicon-floppy-remove:before {
805
+ content: "\e174";
806
+ }
807
+ .glyphicon-floppy-save:before {
808
+ content: "\e175";
809
+ }
810
+ .glyphicon-floppy-open:before {
811
+ content: "\e176";
812
+ }
813
+ .glyphicon-credit-card:before {
814
+ content: "\e177";
815
+ }
816
+ .glyphicon-transfer:before {
817
+ content: "\e178";
818
+ }
819
+ .glyphicon-cutlery:before {
820
+ content: "\e179";
821
+ }
822
+ .glyphicon-header:before {
823
+ content: "\e180";
824
+ }
825
+ .glyphicon-compressed:before {
826
+ content: "\e181";
827
+ }
828
+ .glyphicon-earphone:before {
829
+ content: "\e182";
830
+ }
831
+ .glyphicon-phone-alt:before {
832
+ content: "\e183";
833
+ }
834
+ .glyphicon-tower:before {
835
+ content: "\e184";
836
+ }
837
+ .glyphicon-stats:before {
838
+ content: "\e185";
839
+ }
840
+ .glyphicon-sd-video:before {
841
+ content: "\e186";
842
+ }
843
+ .glyphicon-hd-video:before {
844
+ content: "\e187";
845
+ }
846
+ .glyphicon-subtitles:before {
847
+ content: "\e188";
848
+ }
849
+ .glyphicon-sound-stereo:before {
850
+ content: "\e189";
851
+ }
852
+ .glyphicon-sound-dolby:before {
853
+ content: "\e190";
854
+ }
855
+ .glyphicon-sound-5-1:before {
856
+ content: "\e191";
857
+ }
858
+ .glyphicon-sound-6-1:before {
859
+ content: "\e192";
860
+ }
861
+ .glyphicon-sound-7-1:before {
862
+ content: "\e193";
863
+ }
864
+ .glyphicon-copyright-mark:before {
865
+ content: "\e194";
866
+ }
867
+ .glyphicon-registration-mark:before {
868
+ content: "\e195";
869
+ }
870
+ .glyphicon-cloud-download:before {
871
+ content: "\e197";
872
+ }
873
+ .glyphicon-cloud-upload:before {
874
+ content: "\e198";
875
+ }
876
+ .glyphicon-tree-conifer:before {
877
+ content: "\e199";
878
+ }
879
+ .glyphicon-tree-deciduous:before {
880
+ content: "\e200";
881
+ }
882
+ .glyphicon-cd:before {
883
+ content: "\e201";
884
+ }
885
+ .glyphicon-save-file:before {
886
+ content: "\e202";
887
+ }
888
+ .glyphicon-open-file:before {
889
+ content: "\e203";
890
+ }
891
+ .glyphicon-level-up:before {
892
+ content: "\e204";
893
+ }
894
+ .glyphicon-copy:before {
895
+ content: "\e205";
896
+ }
897
+ .glyphicon-paste:before {
898
+ content: "\e206";
899
+ }
900
+ .glyphicon-alert:before {
901
+ content: "\e209";
902
+ }
903
+ .glyphicon-equalizer:before {
904
+ content: "\e210";
905
+ }
906
+ .glyphicon-king:before {
907
+ content: "\e211";
908
+ }
909
+ .glyphicon-queen:before {
910
+ content: "\e212";
911
+ }
912
+ .glyphicon-pawn:before {
913
+ content: "\e213";
914
+ }
915
+ .glyphicon-bishop:before {
916
+ content: "\e214";
917
+ }
918
+ .glyphicon-knight:before {
919
+ content: "\e215";
920
+ }
921
+ .glyphicon-baby-formula:before {
922
+ content: "\e216";
923
+ }
924
+ .glyphicon-tent:before {
925
+ content: "\26fa";
926
+ }
927
+ .glyphicon-blackboard:before {
928
+ content: "\e218";
929
+ }
930
+ .glyphicon-bed:before {
931
+ content: "\e219";
932
+ }
933
+ .glyphicon-apple:before {
934
+ content: "\f8ff";
935
+ }
936
+ .glyphicon-erase:before {
937
+ content: "\e221";
938
+ }
939
+ .glyphicon-hourglass:before {
940
+ content: "\231b";
941
+ }
942
+ .glyphicon-lamp:before {
943
+ content: "\e223";
944
+ }
945
+ .glyphicon-duplicate:before {
946
+ content: "\e224";
947
+ }
948
+ .glyphicon-piggy-bank:before {
949
+ content: "\e225";
950
+ }
951
+ .glyphicon-scissors:before {
952
+ content: "\e226";
953
+ }
954
+ .glyphicon-bitcoin:before {
955
+ content: "\e227";
956
+ }
957
+ .glyphicon-btc:before {
958
+ content: "\e227";
959
+ }
960
+ .glyphicon-xbt:before {
961
+ content: "\e227";
962
+ }
963
+ .glyphicon-yen:before {
964
+ content: "\00a5";
965
+ }
966
+ .glyphicon-jpy:before {
967
+ content: "\00a5";
968
+ }
969
+ .glyphicon-ruble:before {
970
+ content: "\20bd";
971
+ }
972
+ .glyphicon-rub:before {
973
+ content: "\20bd";
974
+ }
975
+ .glyphicon-scale:before {
976
+ content: "\e230";
977
+ }
978
+ .glyphicon-ice-lolly:before {
979
+ content: "\e231";
980
+ }
981
+ .glyphicon-ice-lolly-tasted:before {
982
+ content: "\e232";
983
+ }
984
+ .glyphicon-education:before {
985
+ content: "\e233";
986
+ }
987
+ .glyphicon-option-horizontal:before {
988
+ content: "\e234";
989
+ }
990
+ .glyphicon-option-vertical:before {
991
+ content: "\e235";
992
+ }
993
+ .glyphicon-menu-hamburger:before {
994
+ content: "\e236";
995
+ }
996
+ .glyphicon-modal-window:before {
997
+ content: "\e237";
998
+ }
999
+ .glyphicon-oil:before {
1000
+ content: "\e238";
1001
+ }
1002
+ .glyphicon-grain:before {
1003
+ content: "\e239";
1004
+ }
1005
+ .glyphicon-sunglasses:before {
1006
+ content: "\e240";
1007
+ }
1008
+ .glyphicon-text-size:before {
1009
+ content: "\e241";
1010
+ }
1011
+ .glyphicon-text-color:before {
1012
+ content: "\e242";
1013
+ }
1014
+ .glyphicon-text-background:before {
1015
+ content: "\e243";
1016
+ }
1017
+ .glyphicon-object-align-top:before {
1018
+ content: "\e244";
1019
+ }
1020
+ .glyphicon-object-align-bottom:before {
1021
+ content: "\e245";
1022
+ }
1023
+ .glyphicon-object-align-horizontal:before {
1024
+ content: "\e246";
1025
+ }
1026
+ .glyphicon-object-align-left:before {
1027
+ content: "\e247";
1028
+ }
1029
+ .glyphicon-object-align-vertical:before {
1030
+ content: "\e248";
1031
+ }
1032
+ .glyphicon-object-align-right:before {
1033
+ content: "\e249";
1034
+ }
1035
+ .glyphicon-triangle-right:before {
1036
+ content: "\e250";
1037
+ }
1038
+ .glyphicon-triangle-left:before {
1039
+ content: "\e251";
1040
+ }
1041
+ .glyphicon-triangle-bottom:before {
1042
+ content: "\e252";
1043
+ }
1044
+ .glyphicon-triangle-top:before {
1045
+ content: "\e253";
1046
+ }
1047
+ .glyphicon-console:before {
1048
+ content: "\e254";
1049
+ }
1050
+ .glyphicon-superscript:before {
1051
+ content: "\e255";
1052
+ }
1053
+ .glyphicon-subscript:before {
1054
+ content: "\e256";
1055
+ }
1056
+ .glyphicon-menu-left:before {
1057
+ content: "\e257";
1058
+ }
1059
+ .glyphicon-menu-right:before {
1060
+ content: "\e258";
1061
+ }
1062
+ .glyphicon-menu-down:before {
1063
+ content: "\e259";
1064
+ }
1065
+ .glyphicon-menu-up:before {
1066
+ content: "\e260";
1067
+ }
1068
+ * {
1069
+ -webkit-box-sizing: border-box;
1070
+ -moz-box-sizing: border-box;
1071
+ box-sizing: border-box;
1072
+ }
1073
+ *:before,
1074
+ *:after {
1075
+ -webkit-box-sizing: border-box;
1076
+ -moz-box-sizing: border-box;
1077
+ box-sizing: border-box;
1078
+ }
1079
+ html {
1080
+ font-size: 10px;
1081
+
1082
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
1083
+ }
1084
+ body {
1085
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1086
+ font-size: 14px;
1087
+ line-height: 1.42857143;
1088
+ color: #333;
1089
+ background-color: #fff;
1090
+ }
1091
+ input,
1092
+ button,
1093
+ select,
1094
+ textarea {
1095
+ font-family: inherit;
1096
+ font-size: inherit;
1097
+ line-height: inherit;
1098
+ }
1099
+ a {
1100
+ color: #337ab7;
1101
+ text-decoration: none;
1102
+ }
1103
+ a:hover,
1104
+ a:focus {
1105
+ color: #23527c;
1106
+ text-decoration: underline;
1107
+ }
1108
+ a:focus {
1109
+ outline: thin dotted;
1110
+ outline: 5px auto -webkit-focus-ring-color;
1111
+ outline-offset: -2px;
1112
+ }
1113
+ figure {
1114
+ margin: 0;
1115
+ }
1116
+ img {
1117
+ vertical-align: middle;
1118
+ }
1119
+ .img-responsive,
1120
+ .thumbnail > img,
1121
+ .thumbnail a > img,
1122
+ .carousel-inner > .item > img,
1123
+ .carousel-inner > .item > a > img {
1124
+ display: block;
1125
+ max-width: 100%;
1126
+ height: auto;
1127
+ }
1128
+ .img-rounded {
1129
+ border-radius: 6px;
1130
+ }
1131
+ .img-thumbnail {
1132
+ display: inline-block;
1133
+ max-width: 100%;
1134
+ height: auto;
1135
+ padding: 4px;
1136
+ line-height: 1.42857143;
1137
+ background-color: #fff;
1138
+ border: 1px solid #ddd;
1139
+ border-radius: 4px;
1140
+ -webkit-transition: all .2s ease-in-out;
1141
+ -o-transition: all .2s ease-in-out;
1142
+ transition: all .2s ease-in-out;
1143
+ }
1144
+ .img-circle {
1145
+ border-radius: 50%;
1146
+ }
1147
+ hr {
1148
+ margin-top: 20px;
1149
+ margin-bottom: 20px;
1150
+ border: 0;
1151
+ border-top: 1px solid #eee;
1152
+ }
1153
+ .sr-only {
1154
+ position: absolute;
1155
+ width: 1px;
1156
+ height: 1px;
1157
+ padding: 0;
1158
+ margin: -1px;
1159
+ overflow: hidden;
1160
+ clip: rect(0, 0, 0, 0);
1161
+ border: 0;
1162
+ }
1163
+ .sr-only-focusable:active,
1164
+ .sr-only-focusable:focus {
1165
+ position: static;
1166
+ width: auto;
1167
+ height: auto;
1168
+ margin: 0;
1169
+ overflow: visible;
1170
+ clip: auto;
1171
+ }
1172
+ [role="button"] {
1173
+ cursor: pointer;
1174
+ }
1175
+ h1,
1176
+ h2,
1177
+ h3,
1178
+ h4,
1179
+ h5,
1180
+ h6,
1181
+ .h1,
1182
+ .h2,
1183
+ .h3,
1184
+ .h4,
1185
+ .h5,
1186
+ .h6 {
1187
+ font-family: inherit;
1188
+ font-weight: 500;
1189
+ line-height: 1.1;
1190
+ color: inherit;
1191
+ }
1192
+ h1 small,
1193
+ h2 small,
1194
+ h3 small,
1195
+ h4 small,
1196
+ h5 small,
1197
+ h6 small,
1198
+ .h1 small,
1199
+ .h2 small,
1200
+ .h3 small,
1201
+ .h4 small,
1202
+ .h5 small,
1203
+ .h6 small,
1204
+ h1 .small,
1205
+ h2 .small,
1206
+ h3 .small,
1207
+ h4 .small,
1208
+ h5 .small,
1209
+ h6 .small,
1210
+ .h1 .small,
1211
+ .h2 .small,
1212
+ .h3 .small,
1213
+ .h4 .small,
1214
+ .h5 .small,
1215
+ .h6 .small {
1216
+ font-weight: normal;
1217
+ line-height: 1;
1218
+ color: #777;
1219
+ }
1220
+ h1,
1221
+ .h1,
1222
+ h2,
1223
+ .h2,
1224
+ h3,
1225
+ .h3 {
1226
+ margin-top: 20px;
1227
+ margin-bottom: 10px;
1228
+ }
1229
+ h1 small,
1230
+ .h1 small,
1231
+ h2 small,
1232
+ .h2 small,
1233
+ h3 small,
1234
+ .h3 small,
1235
+ h1 .small,
1236
+ .h1 .small,
1237
+ h2 .small,
1238
+ .h2 .small,
1239
+ h3 .small,
1240
+ .h3 .small {
1241
+ font-size: 65%;
1242
+ }
1243
+ h4,
1244
+ .h4,
1245
+ h5,
1246
+ .h5,
1247
+ h6,
1248
+ .h6 {
1249
+ margin-top: 10px;
1250
+ margin-bottom: 10px;
1251
+ }
1252
+ h4 small,
1253
+ .h4 small,
1254
+ h5 small,
1255
+ .h5 small,
1256
+ h6 small,
1257
+ .h6 small,
1258
+ h4 .small,
1259
+ .h4 .small,
1260
+ h5 .small,
1261
+ .h5 .small,
1262
+ h6 .small,
1263
+ .h6 .small {
1264
+ font-size: 75%;
1265
+ }
1266
+ h1,
1267
+ .h1 {
1268
+ font-size: 36px;
1269
+ }
1270
+ h2,
1271
+ .h2 {
1272
+ font-size: 30px;
1273
+ }
1274
+ h3,
1275
+ .h3 {
1276
+ font-size: 24px;
1277
+ }
1278
+ h4,
1279
+ .h4 {
1280
+ font-size: 18px;
1281
+ }
1282
+ h5,
1283
+ .h5 {
1284
+ font-size: 14px;
1285
+ }
1286
+ h6,
1287
+ .h6 {
1288
+ font-size: 12px;
1289
+ }
1290
+ p {
1291
+ margin: 0 0 10px;
1292
+ }
1293
+ .lead {
1294
+ margin-bottom: 20px;
1295
+ font-size: 16px;
1296
+ font-weight: 300;
1297
+ line-height: 1.4;
1298
+ }
1299
+ @media (min-width: 768px) {
1300
+ .lead {
1301
+ font-size: 21px;
1302
+ }
1303
+ }
1304
+ small,
1305
+ .small {
1306
+ font-size: 85%;
1307
+ }
1308
+ mark,
1309
+ .mark {
1310
+ padding: .2em;
1311
+ background-color: #fcf8e3;
1312
+ }
1313
+ .text-left {
1314
+ text-align: left;
1315
+ }
1316
+ .text-right {
1317
+ text-align: right;
1318
+ }
1319
+ .text-center {
1320
+ text-align: center;
1321
+ }
1322
+ .text-justify {
1323
+ text-align: justify;
1324
+ }
1325
+ .text-nowrap {
1326
+ white-space: nowrap;
1327
+ }
1328
+ .text-lowercase {
1329
+ text-transform: lowercase;
1330
+ }
1331
+ .text-uppercase {
1332
+ text-transform: uppercase;
1333
+ }
1334
+ .text-capitalize {
1335
+ text-transform: capitalize;
1336
+ }
1337
+ .text-muted {
1338
+ color: #777;
1339
+ }
1340
+ .text-primary {
1341
+ color: #337ab7;
1342
+ }
1343
+ a.text-primary:hover,
1344
+ a.text-primary:focus {
1345
+ color: #286090;
1346
+ }
1347
+ .text-success {
1348
+ color: #3c763d;
1349
+ }
1350
+ a.text-success:hover,
1351
+ a.text-success:focus {
1352
+ color: #2b542c;
1353
+ }
1354
+ .text-info {
1355
+ color: #31708f;
1356
+ }
1357
+ a.text-info:hover,
1358
+ a.text-info:focus {
1359
+ color: #245269;
1360
+ }
1361
+ .text-warning {
1362
+ color: #8a6d3b;
1363
+ }
1364
+ a.text-warning:hover,
1365
+ a.text-warning:focus {
1366
+ color: #66512c;
1367
+ }
1368
+ .text-danger {
1369
+ color: #a94442;
1370
+ }
1371
+ a.text-danger:hover,
1372
+ a.text-danger:focus {
1373
+ color: #843534;
1374
+ }
1375
+ .bg-primary {
1376
+ color: #fff;
1377
+ background-color: #337ab7;
1378
+ }
1379
+ a.bg-primary:hover,
1380
+ a.bg-primary:focus {
1381
+ background-color: #286090;
1382
+ }
1383
+ .bg-success {
1384
+ background-color: #dff0d8;
1385
+ }
1386
+ a.bg-success:hover,
1387
+ a.bg-success:focus {
1388
+ background-color: #c1e2b3;
1389
+ }
1390
+ .bg-info {
1391
+ background-color: #d9edf7;
1392
+ }
1393
+ a.bg-info:hover,
1394
+ a.bg-info:focus {
1395
+ background-color: #afd9ee;
1396
+ }
1397
+ .bg-warning {
1398
+ background-color: #fcf8e3;
1399
+ }
1400
+ a.bg-warning:hover,
1401
+ a.bg-warning:focus {
1402
+ background-color: #f7ecb5;
1403
+ }
1404
+ .bg-danger {
1405
+ background-color: #f2dede;
1406
+ }
1407
+ a.bg-danger:hover,
1408
+ a.bg-danger:focus {
1409
+ background-color: #e4b9b9;
1410
+ }
1411
+ .page-header {
1412
+ padding-bottom: 9px;
1413
+ margin: 40px 0 20px;
1414
+ border-bottom: 1px solid #eee;
1415
+ }
1416
+ ul,
1417
+ ol {
1418
+ margin-top: 0;
1419
+ margin-bottom: 10px;
1420
+ }
1421
+ ul ul,
1422
+ ol ul,
1423
+ ul ol,
1424
+ ol ol {
1425
+ margin-bottom: 0;
1426
+ }
1427
+ .list-unstyled {
1428
+ padding-left: 0;
1429
+ list-style: none;
1430
+ }
1431
+ .list-inline {
1432
+ padding-left: 0;
1433
+ margin-left: -5px;
1434
+ list-style: none;
1435
+ }
1436
+ .list-inline > li {
1437
+ display: inline-block;
1438
+ padding-right: 5px;
1439
+ padding-left: 5px;
1440
+ }
1441
+ dl {
1442
+ margin-top: 0;
1443
+ margin-bottom: 20px;
1444
+ }
1445
+ dt,
1446
+ dd {
1447
+ line-height: 1.42857143;
1448
+ }
1449
+ dt {
1450
+ font-weight: bold;
1451
+ }
1452
+ dd {
1453
+ margin-left: 0;
1454
+ }
1455
+ @media (min-width: 768px) {
1456
+ .dl-horizontal dt {
1457
+ float: left;
1458
+ width: 160px;
1459
+ overflow: hidden;
1460
+ clear: left;
1461
+ text-align: right;
1462
+ text-overflow: ellipsis;
1463
+ white-space: nowrap;
1464
+ }
1465
+ .dl-horizontal dd {
1466
+ margin-left: 180px;
1467
+ }
1468
+ }
1469
+ abbr[title],
1470
+ abbr[data-original-title] {
1471
+ cursor: help;
1472
+ border-bottom: 1px dotted #777;
1473
+ }
1474
+ .initialism {
1475
+ font-size: 90%;
1476
+ text-transform: uppercase;
1477
+ }
1478
+ blockquote {
1479
+ padding: 10px 20px;
1480
+ margin: 0 0 20px;
1481
+ font-size: 17.5px;
1482
+ border-left: 5px solid #eee;
1483
+ }
1484
+ blockquote p:last-child,
1485
+ blockquote ul:last-child,
1486
+ blockquote ol:last-child {
1487
+ margin-bottom: 0;
1488
+ }
1489
+ blockquote footer,
1490
+ blockquote small,
1491
+ blockquote .small {
1492
+ display: block;
1493
+ font-size: 80%;
1494
+ line-height: 1.42857143;
1495
+ color: #777;
1496
+ }
1497
+ blockquote footer:before,
1498
+ blockquote small:before,
1499
+ blockquote .small:before {
1500
+ content: '\2014 \00A0';
1501
+ }
1502
+ .blockquote-reverse,
1503
+ blockquote.pull-right {
1504
+ padding-right: 15px;
1505
+ padding-left: 0;
1506
+ text-align: right;
1507
+ border-right: 5px solid #eee;
1508
+ border-left: 0;
1509
+ }
1510
+ .blockquote-reverse footer:before,
1511
+ blockquote.pull-right footer:before,
1512
+ .blockquote-reverse small:before,
1513
+ blockquote.pull-right small:before,
1514
+ .blockquote-reverse .small:before,
1515
+ blockquote.pull-right .small:before {
1516
+ content: '';
1517
+ }
1518
+ .blockquote-reverse footer:after,
1519
+ blockquote.pull-right footer:after,
1520
+ .blockquote-reverse small:after,
1521
+ blockquote.pull-right small:after,
1522
+ .blockquote-reverse .small:after,
1523
+ blockquote.pull-right .small:after {
1524
+ content: '\00A0 \2014';
1525
+ }
1526
+ address {
1527
+ margin-bottom: 20px;
1528
+ font-style: normal;
1529
+ line-height: 1.42857143;
1530
+ }
1531
+ code,
1532
+ kbd,
1533
+ pre,
1534
+ samp {
1535
+ font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
1536
+ }
1537
+ code {
1538
+ padding: 2px 4px;
1539
+ font-size: 90%;
1540
+ color: #c7254e;
1541
+ background-color: #f9f2f4;
1542
+ border-radius: 4px;
1543
+ }
1544
+ kbd {
1545
+ padding: 2px 4px;
1546
+ font-size: 90%;
1547
+ color: #fff;
1548
+ background-color: #333;
1549
+ border-radius: 3px;
1550
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1551
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
1552
+ }
1553
+ kbd kbd {
1554
+ padding: 0;
1555
+ font-size: 100%;
1556
+ font-weight: bold;
1557
+ -webkit-box-shadow: none;
1558
+ box-shadow: none;
1559
+ }
1560
+ pre {
1561
+ display: block;
1562
+ padding: 9.5px;
1563
+ margin: 0 0 10px;
1564
+ font-size: 13px;
1565
+ line-height: 1.42857143;
1566
+ color: #333;
1567
+ word-break: break-all;
1568
+ word-wrap: break-word;
1569
+ background-color: #f5f5f5;
1570
+ border: 1px solid #ccc;
1571
+ border-radius: 4px;
1572
+ }
1573
+ pre code {
1574
+ padding: 0;
1575
+ font-size: inherit;
1576
+ color: inherit;
1577
+ white-space: pre-wrap;
1578
+ background-color: transparent;
1579
+ border-radius: 0;
1580
+ }
1581
+ .pre-scrollable {
1582
+ max-height: 340px;
1583
+ overflow-y: scroll;
1584
+ }
1585
+ .container {
1586
+ padding-right: 15px;
1587
+ padding-left: 15px;
1588
+ margin-right: auto;
1589
+ margin-left: auto;
1590
+ }
1591
+ @media (min-width: 768px) {
1592
+ .container {
1593
+ width: 750px;
1594
+ }
1595
+ }
1596
+ @media (min-width: 992px) {
1597
+ .container {
1598
+ width: 970px;
1599
+ }
1600
+ }
1601
+ @media (min-width: 1200px) {
1602
+ .container {
1603
+ width: 1170px;
1604
+ }
1605
+ }
1606
+ .container-fluid {
1607
+ padding-right: 15px;
1608
+ padding-left: 15px;
1609
+ margin-right: auto;
1610
+ margin-left: auto;
1611
+ }
1612
+ .row {
1613
+ margin-right: -15px;
1614
+ margin-left: -15px;
1615
+ }
1616
+ .col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
1617
+ position: relative;
1618
+ min-height: 1px;
1619
+ padding-right: 15px;
1620
+ padding-left: 15px;
1621
+ }
1622
+ .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
1623
+ float: left;
1624
+ }
1625
+ .col-xs-12 {
1626
+ width: 100%;
1627
+ }
1628
+ .col-xs-11 {
1629
+ width: 91.66666667%;
1630
+ }
1631
+ .col-xs-10 {
1632
+ width: 83.33333333%;
1633
+ }
1634
+ .col-xs-9 {
1635
+ width: 75%;
1636
+ }
1637
+ .col-xs-8 {
1638
+ width: 66.66666667%;
1639
+ }
1640
+ .col-xs-7 {
1641
+ width: 58.33333333%;
1642
+ }
1643
+ .col-xs-6 {
1644
+ width: 50%;
1645
+ }
1646
+ .col-xs-5 {
1647
+ width: 41.66666667%;
1648
+ }
1649
+ .col-xs-4 {
1650
+ width: 33.33333333%;
1651
+ }
1652
+ .col-xs-3 {
1653
+ width: 25%;
1654
+ }
1655
+ .col-xs-2 {
1656
+ width: 16.66666667%;
1657
+ }
1658
+ .col-xs-1 {
1659
+ width: 8.33333333%;
1660
+ }
1661
+ .col-xs-pull-12 {
1662
+ right: 100%;
1663
+ }
1664
+ .col-xs-pull-11 {
1665
+ right: 91.66666667%;
1666
+ }
1667
+ .col-xs-pull-10 {
1668
+ right: 83.33333333%;
1669
+ }
1670
+ .col-xs-pull-9 {
1671
+ right: 75%;
1672
+ }
1673
+ .col-xs-pull-8 {
1674
+ right: 66.66666667%;
1675
+ }
1676
+ .col-xs-pull-7 {
1677
+ right: 58.33333333%;
1678
+ }
1679
+ .col-xs-pull-6 {
1680
+ right: 50%;
1681
+ }
1682
+ .col-xs-pull-5 {
1683
+ right: 41.66666667%;
1684
+ }
1685
+ .col-xs-pull-4 {
1686
+ right: 33.33333333%;
1687
+ }
1688
+ .col-xs-pull-3 {
1689
+ right: 25%;
1690
+ }
1691
+ .col-xs-pull-2 {
1692
+ right: 16.66666667%;
1693
+ }
1694
+ .col-xs-pull-1 {
1695
+ right: 8.33333333%;
1696
+ }
1697
+ .col-xs-pull-0 {
1698
+ right: auto;
1699
+ }
1700
+ .col-xs-push-12 {
1701
+ left: 100%;
1702
+ }
1703
+ .col-xs-push-11 {
1704
+ left: 91.66666667%;
1705
+ }
1706
+ .col-xs-push-10 {
1707
+ left: 83.33333333%;
1708
+ }
1709
+ .col-xs-push-9 {
1710
+ left: 75%;
1711
+ }
1712
+ .col-xs-push-8 {
1713
+ left: 66.66666667%;
1714
+ }
1715
+ .col-xs-push-7 {
1716
+ left: 58.33333333%;
1717
+ }
1718
+ .col-xs-push-6 {
1719
+ left: 50%;
1720
+ }
1721
+ .col-xs-push-5 {
1722
+ left: 41.66666667%;
1723
+ }
1724
+ .col-xs-push-4 {
1725
+ left: 33.33333333%;
1726
+ }
1727
+ .col-xs-push-3 {
1728
+ left: 25%;
1729
+ }
1730
+ .col-xs-push-2 {
1731
+ left: 16.66666667%;
1732
+ }
1733
+ .col-xs-push-1 {
1734
+ left: 8.33333333%;
1735
+ }
1736
+ .col-xs-push-0 {
1737
+ left: auto;
1738
+ }
1739
+ .col-xs-offset-12 {
1740
+ margin-left: 100%;
1741
+ }
1742
+ .col-xs-offset-11 {
1743
+ margin-left: 91.66666667%;
1744
+ }
1745
+ .col-xs-offset-10 {
1746
+ margin-left: 83.33333333%;
1747
+ }
1748
+ .col-xs-offset-9 {
1749
+ margin-left: 75%;
1750
+ }
1751
+ .col-xs-offset-8 {
1752
+ margin-left: 66.66666667%;
1753
+ }
1754
+ .col-xs-offset-7 {
1755
+ margin-left: 58.33333333%;
1756
+ }
1757
+ .col-xs-offset-6 {
1758
+ margin-left: 50%;
1759
+ }
1760
+ .col-xs-offset-5 {
1761
+ margin-left: 41.66666667%;
1762
+ }
1763
+ .col-xs-offset-4 {
1764
+ margin-left: 33.33333333%;
1765
+ }
1766
+ .col-xs-offset-3 {
1767
+ margin-left: 25%;
1768
+ }
1769
+ .col-xs-offset-2 {
1770
+ margin-left: 16.66666667%;
1771
+ }
1772
+ .col-xs-offset-1 {
1773
+ margin-left: 8.33333333%;
1774
+ }
1775
+ .col-xs-offset-0 {
1776
+ margin-left: 0;
1777
+ }
1778
+ @media (min-width: 768px) {
1779
+ .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
1780
+ float: left;
1781
+ }
1782
+ .col-sm-12 {
1783
+ width: 100%;
1784
+ }
1785
+ .col-sm-11 {
1786
+ width: 91.66666667%;
1787
+ }
1788
+ .col-sm-10 {
1789
+ width: 83.33333333%;
1790
+ }
1791
+ .col-sm-9 {
1792
+ width: 75%;
1793
+ }
1794
+ .col-sm-8 {
1795
+ width: 66.66666667%;
1796
+ }
1797
+ .col-sm-7 {
1798
+ width: 58.33333333%;
1799
+ }
1800
+ .col-sm-6 {
1801
+ width: 50%;
1802
+ }
1803
+ .col-sm-5 {
1804
+ width: 41.66666667%;
1805
+ }
1806
+ .col-sm-4 {
1807
+ width: 33.33333333%;
1808
+ }
1809
+ .col-sm-3 {
1810
+ width: 25%;
1811
+ }
1812
+ .col-sm-2 {
1813
+ width: 16.66666667%;
1814
+ }
1815
+ .col-sm-1 {
1816
+ width: 8.33333333%;
1817
+ }
1818
+ .col-sm-pull-12 {
1819
+ right: 100%;
1820
+ }
1821
+ .col-sm-pull-11 {
1822
+ right: 91.66666667%;
1823
+ }
1824
+ .col-sm-pull-10 {
1825
+ right: 83.33333333%;
1826
+ }
1827
+ .col-sm-pull-9 {
1828
+ right: 75%;
1829
+ }
1830
+ .col-sm-pull-8 {
1831
+ right: 66.66666667%;
1832
+ }
1833
+ .col-sm-pull-7 {
1834
+ right: 58.33333333%;
1835
+ }
1836
+ .col-sm-pull-6 {
1837
+ right: 50%;
1838
+ }
1839
+ .col-sm-pull-5 {
1840
+ right: 41.66666667%;
1841
+ }
1842
+ .col-sm-pull-4 {
1843
+ right: 33.33333333%;
1844
+ }
1845
+ .col-sm-pull-3 {
1846
+ right: 25%;
1847
+ }
1848
+ .col-sm-pull-2 {
1849
+ right: 16.66666667%;
1850
+ }
1851
+ .col-sm-pull-1 {
1852
+ right: 8.33333333%;
1853
+ }
1854
+ .col-sm-pull-0 {
1855
+ right: auto;
1856
+ }
1857
+ .col-sm-push-12 {
1858
+ left: 100%;
1859
+ }
1860
+ .col-sm-push-11 {
1861
+ left: 91.66666667%;
1862
+ }
1863
+ .col-sm-push-10 {
1864
+ left: 83.33333333%;
1865
+ }
1866
+ .col-sm-push-9 {
1867
+ left: 75%;
1868
+ }
1869
+ .col-sm-push-8 {
1870
+ left: 66.66666667%;
1871
+ }
1872
+ .col-sm-push-7 {
1873
+ left: 58.33333333%;
1874
+ }
1875
+ .col-sm-push-6 {
1876
+ left: 50%;
1877
+ }
1878
+ .col-sm-push-5 {
1879
+ left: 41.66666667%;
1880
+ }
1881
+ .col-sm-push-4 {
1882
+ left: 33.33333333%;
1883
+ }
1884
+ .col-sm-push-3 {
1885
+ left: 25%;
1886
+ }
1887
+ .col-sm-push-2 {
1888
+ left: 16.66666667%;
1889
+ }
1890
+ .col-sm-push-1 {
1891
+ left: 8.33333333%;
1892
+ }
1893
+ .col-sm-push-0 {
1894
+ left: auto;
1895
+ }
1896
+ .col-sm-offset-12 {
1897
+ margin-left: 100%;
1898
+ }
1899
+ .col-sm-offset-11 {
1900
+ margin-left: 91.66666667%;
1901
+ }
1902
+ .col-sm-offset-10 {
1903
+ margin-left: 83.33333333%;
1904
+ }
1905
+ .col-sm-offset-9 {
1906
+ margin-left: 75%;
1907
+ }
1908
+ .col-sm-offset-8 {
1909
+ margin-left: 66.66666667%;
1910
+ }
1911
+ .col-sm-offset-7 {
1912
+ margin-left: 58.33333333%;
1913
+ }
1914
+ .col-sm-offset-6 {
1915
+ margin-left: 50%;
1916
+ }
1917
+ .col-sm-offset-5 {
1918
+ margin-left: 41.66666667%;
1919
+ }
1920
+ .col-sm-offset-4 {
1921
+ margin-left: 33.33333333%;
1922
+ }
1923
+ .col-sm-offset-3 {
1924
+ margin-left: 25%;
1925
+ }
1926
+ .col-sm-offset-2 {
1927
+ margin-left: 16.66666667%;
1928
+ }
1929
+ .col-sm-offset-1 {
1930
+ margin-left: 8.33333333%;
1931
+ }
1932
+ .col-sm-offset-0 {
1933
+ margin-left: 0;
1934
+ }
1935
+ }
1936
+ @media (min-width: 992px) {
1937
+ .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
1938
+ float: left;
1939
+ }
1940
+ .col-md-12 {
1941
+ width: 100%;
1942
+ }
1943
+ .col-md-11 {
1944
+ width: 91.66666667%;
1945
+ }
1946
+ .col-md-10 {
1947
+ width: 83.33333333%;
1948
+ }
1949
+ .col-md-9 {
1950
+ width: 75%;
1951
+ }
1952
+ .col-md-8 {
1953
+ width: 66.66666667%;
1954
+ }
1955
+ .col-md-7 {
1956
+ width: 58.33333333%;
1957
+ }
1958
+ .col-md-6 {
1959
+ width: 50%;
1960
+ }
1961
+ .col-md-5 {
1962
+ width: 41.66666667%;
1963
+ }
1964
+ .col-md-4 {
1965
+ width: 33.33333333%;
1966
+ }
1967
+ .col-md-3 {
1968
+ width: 25%;
1969
+ }
1970
+ .col-md-2 {
1971
+ width: 16.66666667%;
1972
+ }
1973
+ .col-md-1 {
1974
+ width: 8.33333333%;
1975
+ }
1976
+ .col-md-pull-12 {
1977
+ right: 100%;
1978
+ }
1979
+ .col-md-pull-11 {
1980
+ right: 91.66666667%;
1981
+ }
1982
+ .col-md-pull-10 {
1983
+ right: 83.33333333%;
1984
+ }
1985
+ .col-md-pull-9 {
1986
+ right: 75%;
1987
+ }
1988
+ .col-md-pull-8 {
1989
+ right: 66.66666667%;
1990
+ }
1991
+ .col-md-pull-7 {
1992
+ right: 58.33333333%;
1993
+ }
1994
+ .col-md-pull-6 {
1995
+ right: 50%;
1996
+ }
1997
+ .col-md-pull-5 {
1998
+ right: 41.66666667%;
1999
+ }
2000
+ .col-md-pull-4 {
2001
+ right: 33.33333333%;
2002
+ }
2003
+ .col-md-pull-3 {
2004
+ right: 25%;
2005
+ }
2006
+ .col-md-pull-2 {
2007
+ right: 16.66666667%;
2008
+ }
2009
+ .col-md-pull-1 {
2010
+ right: 8.33333333%;
2011
+ }
2012
+ .col-md-pull-0 {
2013
+ right: auto;
2014
+ }
2015
+ .col-md-push-12 {
2016
+ left: 100%;
2017
+ }
2018
+ .col-md-push-11 {
2019
+ left: 91.66666667%;
2020
+ }
2021
+ .col-md-push-10 {
2022
+ left: 83.33333333%;
2023
+ }
2024
+ .col-md-push-9 {
2025
+ left: 75%;
2026
+ }
2027
+ .col-md-push-8 {
2028
+ left: 66.66666667%;
2029
+ }
2030
+ .col-md-push-7 {
2031
+ left: 58.33333333%;
2032
+ }
2033
+ .col-md-push-6 {
2034
+ left: 50%;
2035
+ }
2036
+ .col-md-push-5 {
2037
+ left: 41.66666667%;
2038
+ }
2039
+ .col-md-push-4 {
2040
+ left: 33.33333333%;
2041
+ }
2042
+ .col-md-push-3 {
2043
+ left: 25%;
2044
+ }
2045
+ .col-md-push-2 {
2046
+ left: 16.66666667%;
2047
+ }
2048
+ .col-md-push-1 {
2049
+ left: 8.33333333%;
2050
+ }
2051
+ .col-md-push-0 {
2052
+ left: auto;
2053
+ }
2054
+ .col-md-offset-12 {
2055
+ margin-left: 100%;
2056
+ }
2057
+ .col-md-offset-11 {
2058
+ margin-left: 91.66666667%;
2059
+ }
2060
+ .col-md-offset-10 {
2061
+ margin-left: 83.33333333%;
2062
+ }
2063
+ .col-md-offset-9 {
2064
+ margin-left: 75%;
2065
+ }
2066
+ .col-md-offset-8 {
2067
+ margin-left: 66.66666667%;
2068
+ }
2069
+ .col-md-offset-7 {
2070
+ margin-left: 58.33333333%;
2071
+ }
2072
+ .col-md-offset-6 {
2073
+ margin-left: 50%;
2074
+ }
2075
+ .col-md-offset-5 {
2076
+ margin-left: 41.66666667%;
2077
+ }
2078
+ .col-md-offset-4 {
2079
+ margin-left: 33.33333333%;
2080
+ }
2081
+ .col-md-offset-3 {
2082
+ margin-left: 25%;
2083
+ }
2084
+ .col-md-offset-2 {
2085
+ margin-left: 16.66666667%;
2086
+ }
2087
+ .col-md-offset-1 {
2088
+ margin-left: 8.33333333%;
2089
+ }
2090
+ .col-md-offset-0 {
2091
+ margin-left: 0;
2092
+ }
2093
+ }
2094
+ @media (min-width: 1200px) {
2095
+ .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
2096
+ float: left;
2097
+ }
2098
+ .col-lg-12 {
2099
+ width: 100%;
2100
+ }
2101
+ .col-lg-11 {
2102
+ width: 91.66666667%;
2103
+ }
2104
+ .col-lg-10 {
2105
+ width: 83.33333333%;
2106
+ }
2107
+ .col-lg-9 {
2108
+ width: 75%;
2109
+ }
2110
+ .col-lg-8 {
2111
+ width: 66.66666667%;
2112
+ }
2113
+ .col-lg-7 {
2114
+ width: 58.33333333%;
2115
+ }
2116
+ .col-lg-6 {
2117
+ width: 50%;
2118
+ }
2119
+ .col-lg-5 {
2120
+ width: 41.66666667%;
2121
+ }
2122
+ .col-lg-4 {
2123
+ width: 33.33333333%;
2124
+ }
2125
+ .col-lg-3 {
2126
+ width: 25%;
2127
+ }
2128
+ .col-lg-2 {
2129
+ width: 16.66666667%;
2130
+ }
2131
+ .col-lg-1 {
2132
+ width: 8.33333333%;
2133
+ }
2134
+ .col-lg-pull-12 {
2135
+ right: 100%;
2136
+ }
2137
+ .col-lg-pull-11 {
2138
+ right: 91.66666667%;
2139
+ }
2140
+ .col-lg-pull-10 {
2141
+ right: 83.33333333%;
2142
+ }
2143
+ .col-lg-pull-9 {
2144
+ right: 75%;
2145
+ }
2146
+ .col-lg-pull-8 {
2147
+ right: 66.66666667%;
2148
+ }
2149
+ .col-lg-pull-7 {
2150
+ right: 58.33333333%;
2151
+ }
2152
+ .col-lg-pull-6 {
2153
+ right: 50%;
2154
+ }
2155
+ .col-lg-pull-5 {
2156
+ right: 41.66666667%;
2157
+ }
2158
+ .col-lg-pull-4 {
2159
+ right: 33.33333333%;
2160
+ }
2161
+ .col-lg-pull-3 {
2162
+ right: 25%;
2163
+ }
2164
+ .col-lg-pull-2 {
2165
+ right: 16.66666667%;
2166
+ }
2167
+ .col-lg-pull-1 {
2168
+ right: 8.33333333%;
2169
+ }
2170
+ .col-lg-pull-0 {
2171
+ right: auto;
2172
+ }
2173
+ .col-lg-push-12 {
2174
+ left: 100%;
2175
+ }
2176
+ .col-lg-push-11 {
2177
+ left: 91.66666667%;
2178
+ }
2179
+ .col-lg-push-10 {
2180
+ left: 83.33333333%;
2181
+ }
2182
+ .col-lg-push-9 {
2183
+ left: 75%;
2184
+ }
2185
+ .col-lg-push-8 {
2186
+ left: 66.66666667%;
2187
+ }
2188
+ .col-lg-push-7 {
2189
+ left: 58.33333333%;
2190
+ }
2191
+ .col-lg-push-6 {
2192
+ left: 50%;
2193
+ }
2194
+ .col-lg-push-5 {
2195
+ left: 41.66666667%;
2196
+ }
2197
+ .col-lg-push-4 {
2198
+ left: 33.33333333%;
2199
+ }
2200
+ .col-lg-push-3 {
2201
+ left: 25%;
2202
+ }
2203
+ .col-lg-push-2 {
2204
+ left: 16.66666667%;
2205
+ }
2206
+ .col-lg-push-1 {
2207
+ left: 8.33333333%;
2208
+ }
2209
+ .col-lg-push-0 {
2210
+ left: auto;
2211
+ }
2212
+ .col-lg-offset-12 {
2213
+ margin-left: 100%;
2214
+ }
2215
+ .col-lg-offset-11 {
2216
+ margin-left: 91.66666667%;
2217
+ }
2218
+ .col-lg-offset-10 {
2219
+ margin-left: 83.33333333%;
2220
+ }
2221
+ .col-lg-offset-9 {
2222
+ margin-left: 75%;
2223
+ }
2224
+ .col-lg-offset-8 {
2225
+ margin-left: 66.66666667%;
2226
+ }
2227
+ .col-lg-offset-7 {
2228
+ margin-left: 58.33333333%;
2229
+ }
2230
+ .col-lg-offset-6 {
2231
+ margin-left: 50%;
2232
+ }
2233
+ .col-lg-offset-5 {
2234
+ margin-left: 41.66666667%;
2235
+ }
2236
+ .col-lg-offset-4 {
2237
+ margin-left: 33.33333333%;
2238
+ }
2239
+ .col-lg-offset-3 {
2240
+ margin-left: 25%;
2241
+ }
2242
+ .col-lg-offset-2 {
2243
+ margin-left: 16.66666667%;
2244
+ }
2245
+ .col-lg-offset-1 {
2246
+ margin-left: 8.33333333%;
2247
+ }
2248
+ .col-lg-offset-0 {
2249
+ margin-left: 0;
2250
+ }
2251
+ }
2252
+ table {
2253
+ background-color: transparent;
2254
+ }
2255
+ caption {
2256
+ padding-top: 8px;
2257
+ padding-bottom: 8px;
2258
+ color: #777;
2259
+ text-align: left;
2260
+ }
2261
+ th {
2262
+ text-align: left;
2263
+ }
2264
+ .table {
2265
+ width: 100%;
2266
+ max-width: 100%;
2267
+ margin-bottom: 20px;
2268
+ }
2269
+ .table > thead > tr > th,
2270
+ .table > tbody > tr > th,
2271
+ .table > tfoot > tr > th,
2272
+ .table > thead > tr > td,
2273
+ .table > tbody > tr > td,
2274
+ .table > tfoot > tr > td {
2275
+ padding: 8px;
2276
+ line-height: 1.42857143;
2277
+ vertical-align: top;
2278
+ border-top: 1px solid #ddd;
2279
+ }
2280
+ .table > thead > tr > th {
2281
+ vertical-align: bottom;
2282
+ border-bottom: 2px solid #ddd;
2283
+ }
2284
+ .table > caption + thead > tr:first-child > th,
2285
+ .table > colgroup + thead > tr:first-child > th,
2286
+ .table > thead:first-child > tr:first-child > th,
2287
+ .table > caption + thead > tr:first-child > td,
2288
+ .table > colgroup + thead > tr:first-child > td,
2289
+ .table > thead:first-child > tr:first-child > td {
2290
+ border-top: 0;
2291
+ }
2292
+ .table > tbody + tbody {
2293
+ border-top: 2px solid #ddd;
2294
+ }
2295
+ .table .table {
2296
+ background-color: #fff;
2297
+ }
2298
+ .table-condensed > thead > tr > th,
2299
+ .table-condensed > tbody > tr > th,
2300
+ .table-condensed > tfoot > tr > th,
2301
+ .table-condensed > thead > tr > td,
2302
+ .table-condensed > tbody > tr > td,
2303
+ .table-condensed > tfoot > tr > td {
2304
+ padding: 5px;
2305
+ }
2306
+ .table-bordered {
2307
+ border: 1px solid #ddd;
2308
+ }
2309
+ .table-bordered > thead > tr > th,
2310
+ .table-bordered > tbody > tr > th,
2311
+ .table-bordered > tfoot > tr > th,
2312
+ .table-bordered > thead > tr > td,
2313
+ .table-bordered > tbody > tr > td,
2314
+ .table-bordered > tfoot > tr > td {
2315
+ border: 1px solid #ddd;
2316
+ }
2317
+ .table-bordered > thead > tr > th,
2318
+ .table-bordered > thead > tr > td {
2319
+ border-bottom-width: 2px;
2320
+ }
2321
+ .table-striped > tbody > tr:nth-of-type(odd) {
2322
+ background-color: #f9f9f9;
2323
+ }
2324
+ .table-hover > tbody > tr:hover {
2325
+ background-color: #f5f5f5;
2326
+ }
2327
+ table col[class*="col-"] {
2328
+ position: static;
2329
+ display: table-column;
2330
+ float: none;
2331
+ }
2332
+ table td[class*="col-"],
2333
+ table th[class*="col-"] {
2334
+ position: static;
2335
+ display: table-cell;
2336
+ float: none;
2337
+ }
2338
+ .table > thead > tr > td.active,
2339
+ .table > tbody > tr > td.active,
2340
+ .table > tfoot > tr > td.active,
2341
+ .table > thead > tr > th.active,
2342
+ .table > tbody > tr > th.active,
2343
+ .table > tfoot > tr > th.active,
2344
+ .table > thead > tr.active > td,
2345
+ .table > tbody > tr.active > td,
2346
+ .table > tfoot > tr.active > td,
2347
+ .table > thead > tr.active > th,
2348
+ .table > tbody > tr.active > th,
2349
+ .table > tfoot > tr.active > th {
2350
+ background-color: #f5f5f5;
2351
+ }
2352
+ .table-hover > tbody > tr > td.active:hover,
2353
+ .table-hover > tbody > tr > th.active:hover,
2354
+ .table-hover > tbody > tr.active:hover > td,
2355
+ .table-hover > tbody > tr:hover > .active,
2356
+ .table-hover > tbody > tr.active:hover > th {
2357
+ background-color: #e8e8e8;
2358
+ }
2359
+ .table > thead > tr > td.success,
2360
+ .table > tbody > tr > td.success,
2361
+ .table > tfoot > tr > td.success,
2362
+ .table > thead > tr > th.success,
2363
+ .table > tbody > tr > th.success,
2364
+ .table > tfoot > tr > th.success,
2365
+ .table > thead > tr.success > td,
2366
+ .table > tbody > tr.success > td,
2367
+ .table > tfoot > tr.success > td,
2368
+ .table > thead > tr.success > th,
2369
+ .table > tbody > tr.success > th,
2370
+ .table > tfoot > tr.success > th {
2371
+ background-color: #dff0d8;
2372
+ }
2373
+ .table-hover > tbody > tr > td.success:hover,
2374
+ .table-hover > tbody > tr > th.success:hover,
2375
+ .table-hover > tbody > tr.success:hover > td,
2376
+ .table-hover > tbody > tr:hover > .success,
2377
+ .table-hover > tbody > tr.success:hover > th {
2378
+ background-color: #d0e9c6;
2379
+ }
2380
+ .table > thead > tr > td.info,
2381
+ .table > tbody > tr > td.info,
2382
+ .table > tfoot > tr > td.info,
2383
+ .table > thead > tr > th.info,
2384
+ .table > tbody > tr > th.info,
2385
+ .table > tfoot > tr > th.info,
2386
+ .table > thead > tr.info > td,
2387
+ .table > tbody > tr.info > td,
2388
+ .table > tfoot > tr.info > td,
2389
+ .table > thead > tr.info > th,
2390
+ .table > tbody > tr.info > th,
2391
+ .table > tfoot > tr.info > th {
2392
+ background-color: #d9edf7;
2393
+ }
2394
+ .table-hover > tbody > tr > td.info:hover,
2395
+ .table-hover > tbody > tr > th.info:hover,
2396
+ .table-hover > tbody > tr.info:hover > td,
2397
+ .table-hover > tbody > tr:hover > .info,
2398
+ .table-hover > tbody > tr.info:hover > th {
2399
+ background-color: #c4e3f3;
2400
+ }
2401
+ .table > thead > tr > td.warning,
2402
+ .table > tbody > tr > td.warning,
2403
+ .table > tfoot > tr > td.warning,
2404
+ .table > thead > tr > th.warning,
2405
+ .table > tbody > tr > th.warning,
2406
+ .table > tfoot > tr > th.warning,
2407
+ .table > thead > tr.warning > td,
2408
+ .table > tbody > tr.warning > td,
2409
+ .table > tfoot > tr.warning > td,
2410
+ .table > thead > tr.warning > th,
2411
+ .table > tbody > tr.warning > th,
2412
+ .table > tfoot > tr.warning > th {
2413
+ background-color: #fcf8e3;
2414
+ }
2415
+ .table-hover > tbody > tr > td.warning:hover,
2416
+ .table-hover > tbody > tr > th.warning:hover,
2417
+ .table-hover > tbody > tr.warning:hover > td,
2418
+ .table-hover > tbody > tr:hover > .warning,
2419
+ .table-hover > tbody > tr.warning:hover > th {
2420
+ background-color: #faf2cc;
2421
+ }
2422
+ .table > thead > tr > td.danger,
2423
+ .table > tbody > tr > td.danger,
2424
+ .table > tfoot > tr > td.danger,
2425
+ .table > thead > tr > th.danger,
2426
+ .table > tbody > tr > th.danger,
2427
+ .table > tfoot > tr > th.danger,
2428
+ .table > thead > tr.danger > td,
2429
+ .table > tbody > tr.danger > td,
2430
+ .table > tfoot > tr.danger > td,
2431
+ .table > thead > tr.danger > th,
2432
+ .table > tbody > tr.danger > th,
2433
+ .table > tfoot > tr.danger > th {
2434
+ background-color: #f2dede;
2435
+ }
2436
+ .table-hover > tbody > tr > td.danger:hover,
2437
+ .table-hover > tbody > tr > th.danger:hover,
2438
+ .table-hover > tbody > tr.danger:hover > td,
2439
+ .table-hover > tbody > tr:hover > .danger,
2440
+ .table-hover > tbody > tr.danger:hover > th {
2441
+ background-color: #ebcccc;
2442
+ }
2443
+ .table-responsive {
2444
+ min-height: .01%;
2445
+ overflow-x: auto;
2446
+ }
2447
+ @media screen and (max-width: 767px) {
2448
+ .table-responsive {
2449
+ width: 100%;
2450
+ margin-bottom: 15px;
2451
+ overflow-y: hidden;
2452
+ -ms-overflow-style: -ms-autohiding-scrollbar;
2453
+ border: 1px solid #ddd;
2454
+ }
2455
+ .table-responsive > .table {
2456
+ margin-bottom: 0;
2457
+ }
2458
+ .table-responsive > .table > thead > tr > th,
2459
+ .table-responsive > .table > tbody > tr > th,
2460
+ .table-responsive > .table > tfoot > tr > th,
2461
+ .table-responsive > .table > thead > tr > td,
2462
+ .table-responsive > .table > tbody > tr > td,
2463
+ .table-responsive > .table > tfoot > tr > td {
2464
+ white-space: nowrap;
2465
+ }
2466
+ .table-responsive > .table-bordered {
2467
+ border: 0;
2468
+ }
2469
+ .table-responsive > .table-bordered > thead > tr > th:first-child,
2470
+ .table-responsive > .table-bordered > tbody > tr > th:first-child,
2471
+ .table-responsive > .table-bordered > tfoot > tr > th:first-child,
2472
+ .table-responsive > .table-bordered > thead > tr > td:first-child,
2473
+ .table-responsive > .table-bordered > tbody > tr > td:first-child,
2474
+ .table-responsive > .table-bordered > tfoot > tr > td:first-child {
2475
+ border-left: 0;
2476
+ }
2477
+ .table-responsive > .table-bordered > thead > tr > th:last-child,
2478
+ .table-responsive > .table-bordered > tbody > tr > th:last-child,
2479
+ .table-responsive > .table-bordered > tfoot > tr > th:last-child,
2480
+ .table-responsive > .table-bordered > thead > tr > td:last-child,
2481
+ .table-responsive > .table-bordered > tbody > tr > td:last-child,
2482
+ .table-responsive > .table-bordered > tfoot > tr > td:last-child {
2483
+ border-right: 0;
2484
+ }
2485
+ .table-responsive > .table-bordered > tbody > tr:last-child > th,
2486
+ .table-responsive > .table-bordered > tfoot > tr:last-child > th,
2487
+ .table-responsive > .table-bordered > tbody > tr:last-child > td,
2488
+ .table-responsive > .table-bordered > tfoot > tr:last-child > td {
2489
+ border-bottom: 0;
2490
+ }
2491
+ }
2492
+ fieldset {
2493
+ min-width: 0;
2494
+ padding: 0;
2495
+ margin: 0;
2496
+ border: 0;
2497
+ }
2498
+ legend {
2499
+ display: block;
2500
+ width: 100%;
2501
+ padding: 0;
2502
+ margin-bottom: 20px;
2503
+ font-size: 21px;
2504
+ line-height: inherit;
2505
+ color: #333;
2506
+ border: 0;
2507
+ border-bottom: 1px solid #e5e5e5;
2508
+ }
2509
+ label {
2510
+ display: inline-block;
2511
+ max-width: 100%;
2512
+ margin-bottom: 5px;
2513
+ font-weight: bold;
2514
+ }
2515
+ input[type="search"] {
2516
+ -webkit-box-sizing: border-box;
2517
+ -moz-box-sizing: border-box;
2518
+ box-sizing: border-box;
2519
+ }
2520
+ input[type="radio"],
2521
+ input[type="checkbox"] {
2522
+ margin: 4px 0 0;
2523
+ margin-top: 1px \9;
2524
+ line-height: normal;
2525
+ }
2526
+ input[type="file"] {
2527
+ display: block;
2528
+ }
2529
+ input[type="range"] {
2530
+ display: block;
2531
+ width: 100%;
2532
+ }
2533
+ select[multiple],
2534
+ select[size] {
2535
+ height: auto;
2536
+ }
2537
+ input[type="file"]:focus,
2538
+ input[type="radio"]:focus,
2539
+ input[type="checkbox"]:focus {
2540
+ outline: thin dotted;
2541
+ outline: 5px auto -webkit-focus-ring-color;
2542
+ outline-offset: -2px;
2543
+ }
2544
+ output {
2545
+ display: block;
2546
+ padding-top: 7px;
2547
+ font-size: 14px;
2548
+ line-height: 1.42857143;
2549
+ color: #555;
2550
+ }
2551
+ .form-control {
2552
+ display: block;
2553
+ width: 100%;
2554
+ height: 34px;
2555
+ padding: 6px 12px;
2556
+ font-size: 14px;
2557
+ line-height: 1.42857143;
2558
+ color: #555;
2559
+ background-color: #fff;
2560
+ background-image: none;
2561
+ border: 1px solid #ccc;
2562
+ border-radius: 4px;
2563
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2564
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2565
+ -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
2566
+ -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2567
+ transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
2568
+ }
2569
+ .form-control:focus {
2570
+ border-color: #66afe9;
2571
+ outline: 0;
2572
+ -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2573
+ box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
2574
+ }
2575
+ .form-control::-moz-placeholder {
2576
+ color: #999;
2577
+ opacity: 1;
2578
+ }
2579
+ .form-control:-ms-input-placeholder {
2580
+ color: #999;
2581
+ }
2582
+ .form-control::-webkit-input-placeholder {
2583
+ color: #999;
2584
+ }
2585
+ .form-control::-ms-expand {
2586
+ background-color: transparent;
2587
+ border: 0;
2588
+ }
2589
+ .form-control[disabled],
2590
+ .form-control[readonly],
2591
+ fieldset[disabled] .form-control {
2592
+ background-color: #eee;
2593
+ opacity: 1;
2594
+ }
2595
+ .form-control[disabled],
2596
+ fieldset[disabled] .form-control {
2597
+ cursor: not-allowed;
2598
+ }
2599
+ textarea.form-control {
2600
+ height: auto;
2601
+ }
2602
+ input[type="search"] {
2603
+ -webkit-appearance: none;
2604
+ }
2605
+ @media screen and (-webkit-min-device-pixel-ratio: 0) {
2606
+ input[type="date"].form-control,
2607
+ input[type="time"].form-control,
2608
+ input[type="datetime-local"].form-control,
2609
+ input[type="month"].form-control {
2610
+ line-height: 34px;
2611
+ }
2612
+ input[type="date"].input-sm,
2613
+ input[type="time"].input-sm,
2614
+ input[type="datetime-local"].input-sm,
2615
+ input[type="month"].input-sm,
2616
+ .input-group-sm input[type="date"],
2617
+ .input-group-sm input[type="time"],
2618
+ .input-group-sm input[type="datetime-local"],
2619
+ .input-group-sm input[type="month"] {
2620
+ line-height: 30px;
2621
+ }
2622
+ input[type="date"].input-lg,
2623
+ input[type="time"].input-lg,
2624
+ input[type="datetime-local"].input-lg,
2625
+ input[type="month"].input-lg,
2626
+ .input-group-lg input[type="date"],
2627
+ .input-group-lg input[type="time"],
2628
+ .input-group-lg input[type="datetime-local"],
2629
+ .input-group-lg input[type="month"] {
2630
+ line-height: 46px;
2631
+ }
2632
+ }
2633
+ .form-group {
2634
+ margin-bottom: 15px;
2635
+ }
2636
+ .radio,
2637
+ .checkbox {
2638
+ position: relative;
2639
+ display: block;
2640
+ margin-top: 10px;
2641
+ margin-bottom: 10px;
2642
+ }
2643
+ .radio label,
2644
+ .checkbox label {
2645
+ min-height: 20px;
2646
+ padding-left: 20px;
2647
+ margin-bottom: 0;
2648
+ font-weight: normal;
2649
+ cursor: pointer;
2650
+ }
2651
+ .radio input[type="radio"],
2652
+ .radio-inline input[type="radio"],
2653
+ .checkbox input[type="checkbox"],
2654
+ .checkbox-inline input[type="checkbox"] {
2655
+ position: absolute;
2656
+ margin-top: 4px \9;
2657
+ margin-left: -20px;
2658
+ }
2659
+ .radio + .radio,
2660
+ .checkbox + .checkbox {
2661
+ margin-top: -5px;
2662
+ }
2663
+ .radio-inline,
2664
+ .checkbox-inline {
2665
+ position: relative;
2666
+ display: inline-block;
2667
+ padding-left: 20px;
2668
+ margin-bottom: 0;
2669
+ font-weight: normal;
2670
+ vertical-align: middle;
2671
+ cursor: pointer;
2672
+ }
2673
+ .radio-inline + .radio-inline,
2674
+ .checkbox-inline + .checkbox-inline {
2675
+ margin-top: 0;
2676
+ margin-left: 10px;
2677
+ }
2678
+ input[type="radio"][disabled],
2679
+ input[type="checkbox"][disabled],
2680
+ input[type="radio"].disabled,
2681
+ input[type="checkbox"].disabled,
2682
+ fieldset[disabled] input[type="radio"],
2683
+ fieldset[disabled] input[type="checkbox"] {
2684
+ cursor: not-allowed;
2685
+ }
2686
+ .radio-inline.disabled,
2687
+ .checkbox-inline.disabled,
2688
+ fieldset[disabled] .radio-inline,
2689
+ fieldset[disabled] .checkbox-inline {
2690
+ cursor: not-allowed;
2691
+ }
2692
+ .radio.disabled label,
2693
+ .checkbox.disabled label,
2694
+ fieldset[disabled] .radio label,
2695
+ fieldset[disabled] .checkbox label {
2696
+ cursor: not-allowed;
2697
+ }
2698
+ .form-control-static {
2699
+ min-height: 34px;
2700
+ padding-top: 7px;
2701
+ padding-bottom: 7px;
2702
+ margin-bottom: 0;
2703
+ }
2704
+ .form-control-static.input-lg,
2705
+ .form-control-static.input-sm {
2706
+ padding-right: 0;
2707
+ padding-left: 0;
2708
+ }
2709
+ .input-sm {
2710
+ height: 30px;
2711
+ padding: 5px 10px;
2712
+ font-size: 12px;
2713
+ line-height: 1.5;
2714
+ border-radius: 3px;
2715
+ }
2716
+ select.input-sm {
2717
+ height: 30px;
2718
+ line-height: 30px;
2719
+ }
2720
+ textarea.input-sm,
2721
+ select[multiple].input-sm {
2722
+ height: auto;
2723
+ }
2724
+ .form-group-sm .form-control {
2725
+ height: 30px;
2726
+ padding: 5px 10px;
2727
+ font-size: 12px;
2728
+ line-height: 1.5;
2729
+ border-radius: 3px;
2730
+ }
2731
+ .form-group-sm select.form-control {
2732
+ height: 30px;
2733
+ line-height: 30px;
2734
+ }
2735
+ .form-group-sm textarea.form-control,
2736
+ .form-group-sm select[multiple].form-control {
2737
+ height: auto;
2738
+ }
2739
+ .form-group-sm .form-control-static {
2740
+ height: 30px;
2741
+ min-height: 32px;
2742
+ padding: 6px 10px;
2743
+ font-size: 12px;
2744
+ line-height: 1.5;
2745
+ }
2746
+ .input-lg {
2747
+ height: 46px;
2748
+ padding: 10px 16px;
2749
+ font-size: 18px;
2750
+ line-height: 1.3333333;
2751
+ border-radius: 6px;
2752
+ }
2753
+ select.input-lg {
2754
+ height: 46px;
2755
+ line-height: 46px;
2756
+ }
2757
+ textarea.input-lg,
2758
+ select[multiple].input-lg {
2759
+ height: auto;
2760
+ }
2761
+ .form-group-lg .form-control {
2762
+ height: 46px;
2763
+ padding: 10px 16px;
2764
+ font-size: 18px;
2765
+ line-height: 1.3333333;
2766
+ border-radius: 6px;
2767
+ }
2768
+ .form-group-lg select.form-control {
2769
+ height: 46px;
2770
+ line-height: 46px;
2771
+ }
2772
+ .form-group-lg textarea.form-control,
2773
+ .form-group-lg select[multiple].form-control {
2774
+ height: auto;
2775
+ }
2776
+ .form-group-lg .form-control-static {
2777
+ height: 46px;
2778
+ min-height: 38px;
2779
+ padding: 11px 16px;
2780
+ font-size: 18px;
2781
+ line-height: 1.3333333;
2782
+ }
2783
+ .has-feedback {
2784
+ position: relative;
2785
+ }
2786
+ .has-feedback .form-control {
2787
+ padding-right: 42.5px;
2788
+ }
2789
+ .form-control-feedback {
2790
+ position: absolute;
2791
+ top: 0;
2792
+ right: 0;
2793
+ z-index: 2;
2794
+ display: block;
2795
+ width: 34px;
2796
+ height: 34px;
2797
+ line-height: 34px;
2798
+ text-align: center;
2799
+ pointer-events: none;
2800
+ }
2801
+ .input-lg + .form-control-feedback,
2802
+ .input-group-lg + .form-control-feedback,
2803
+ .form-group-lg .form-control + .form-control-feedback {
2804
+ width: 46px;
2805
+ height: 46px;
2806
+ line-height: 46px;
2807
+ }
2808
+ .input-sm + .form-control-feedback,
2809
+ .input-group-sm + .form-control-feedback,
2810
+ .form-group-sm .form-control + .form-control-feedback {
2811
+ width: 30px;
2812
+ height: 30px;
2813
+ line-height: 30px;
2814
+ }
2815
+ .has-success .help-block,
2816
+ .has-success .control-label,
2817
+ .has-success .radio,
2818
+ .has-success .checkbox,
2819
+ .has-success .radio-inline,
2820
+ .has-success .checkbox-inline,
2821
+ .has-success.radio label,
2822
+ .has-success.checkbox label,
2823
+ .has-success.radio-inline label,
2824
+ .has-success.checkbox-inline label {
2825
+ color: #3c763d;
2826
+ }
2827
+ .has-success .form-control {
2828
+ border-color: #3c763d;
2829
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2830
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2831
+ }
2832
+ .has-success .form-control:focus {
2833
+ border-color: #2b542c;
2834
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2835
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2836
+ }
2837
+ .has-success .input-group-addon {
2838
+ color: #3c763d;
2839
+ background-color: #dff0d8;
2840
+ border-color: #3c763d;
2841
+ }
2842
+ .has-success .form-control-feedback {
2843
+ color: #3c763d;
2844
+ }
2845
+ .has-warning .help-block,
2846
+ .has-warning .control-label,
2847
+ .has-warning .radio,
2848
+ .has-warning .checkbox,
2849
+ .has-warning .radio-inline,
2850
+ .has-warning .checkbox-inline,
2851
+ .has-warning.radio label,
2852
+ .has-warning.checkbox label,
2853
+ .has-warning.radio-inline label,
2854
+ .has-warning.checkbox-inline label {
2855
+ color: #8a6d3b;
2856
+ }
2857
+ .has-warning .form-control {
2858
+ border-color: #8a6d3b;
2859
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2860
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2861
+ }
2862
+ .has-warning .form-control:focus {
2863
+ border-color: #66512c;
2864
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2865
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2866
+ }
2867
+ .has-warning .input-group-addon {
2868
+ color: #8a6d3b;
2869
+ background-color: #fcf8e3;
2870
+ border-color: #8a6d3b;
2871
+ }
2872
+ .has-warning .form-control-feedback {
2873
+ color: #8a6d3b;
2874
+ }
2875
+ .has-error .help-block,
2876
+ .has-error .control-label,
2877
+ .has-error .radio,
2878
+ .has-error .checkbox,
2879
+ .has-error .radio-inline,
2880
+ .has-error .checkbox-inline,
2881
+ .has-error.radio label,
2882
+ .has-error.checkbox label,
2883
+ .has-error.radio-inline label,
2884
+ .has-error.checkbox-inline label {
2885
+ color: #a94442;
2886
+ }
2887
+ .has-error .form-control {
2888
+ border-color: #a94442;
2889
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2890
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2891
+ }
2892
+ .has-error .form-control:focus {
2893
+ border-color: #843534;
2894
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2895
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2896
+ }
2897
+ .has-error .input-group-addon {
2898
+ color: #a94442;
2899
+ background-color: #f2dede;
2900
+ border-color: #a94442;
2901
+ }
2902
+ .has-error .form-control-feedback {
2903
+ color: #a94442;
2904
+ }
2905
+ .has-feedback label ~ .form-control-feedback {
2906
+ top: 25px;
2907
+ }
2908
+ .has-feedback label.sr-only ~ .form-control-feedback {
2909
+ top: 0;
2910
+ }
2911
+ .help-block {
2912
+ display: block;
2913
+ margin-top: 5px;
2914
+ margin-bottom: 10px;
2915
+ color: #737373;
2916
+ }
2917
+ @media (min-width: 768px) {
2918
+ .form-inline .form-group {
2919
+ display: inline-block;
2920
+ margin-bottom: 0;
2921
+ vertical-align: middle;
2922
+ }
2923
+ .form-inline .form-control {
2924
+ display: inline-block;
2925
+ width: auto;
2926
+ vertical-align: middle;
2927
+ }
2928
+ .form-inline .form-control-static {
2929
+ display: inline-block;
2930
+ }
2931
+ .form-inline .input-group {
2932
+ display: inline-table;
2933
+ vertical-align: middle;
2934
+ }
2935
+ .form-inline .input-group .input-group-addon,
2936
+ .form-inline .input-group .input-group-btn,
2937
+ .form-inline .input-group .form-control {
2938
+ width: auto;
2939
+ }
2940
+ .form-inline .input-group > .form-control {
2941
+ width: 100%;
2942
+ }
2943
+ .form-inline .control-label {
2944
+ margin-bottom: 0;
2945
+ vertical-align: middle;
2946
+ }
2947
+ .form-inline .radio,
2948
+ .form-inline .checkbox {
2949
+ display: inline-block;
2950
+ margin-top: 0;
2951
+ margin-bottom: 0;
2952
+ vertical-align: middle;
2953
+ }
2954
+ .form-inline .radio label,
2955
+ .form-inline .checkbox label {
2956
+ padding-left: 0;
2957
+ }
2958
+ .form-inline .radio input[type="radio"],
2959
+ .form-inline .checkbox input[type="checkbox"] {
2960
+ position: relative;
2961
+ margin-left: 0;
2962
+ }
2963
+ .form-inline .has-feedback .form-control-feedback {
2964
+ top: 0;
2965
+ }
2966
+ }
2967
+ .form-horizontal .radio,
2968
+ .form-horizontal .checkbox,
2969
+ .form-horizontal .radio-inline,
2970
+ .form-horizontal .checkbox-inline {
2971
+ padding-top: 7px;
2972
+ margin-top: 0;
2973
+ margin-bottom: 0;
2974
+ }
2975
+ .form-horizontal .radio,
2976
+ .form-horizontal .checkbox {
2977
+ min-height: 27px;
2978
+ }
2979
+ .form-horizontal .form-group {
2980
+ margin-right: -15px;
2981
+ margin-left: -15px;
2982
+ }
2983
+ @media (min-width: 768px) {
2984
+ .form-horizontal .control-label {
2985
+ padding-top: 7px;
2986
+ margin-bottom: 0;
2987
+ text-align: right;
2988
+ }
2989
+ }
2990
+ .form-horizontal .has-feedback .form-control-feedback {
2991
+ right: 15px;
2992
+ }
2993
+ @media (min-width: 768px) {
2994
+ .form-horizontal .form-group-lg .control-label {
2995
+ padding-top: 11px;
2996
+ font-size: 18px;
2997
+ }
2998
+ }
2999
+ @media (min-width: 768px) {
3000
+ .form-horizontal .form-group-sm .control-label {
3001
+ padding-top: 6px;
3002
+ font-size: 12px;
3003
+ }
3004
+ }
3005
+ .btn {
3006
+ display: inline-block;
3007
+ padding: 6px 12px;
3008
+ margin-bottom: 0;
3009
+ font-size: 14px;
3010
+ font-weight: normal;
3011
+ line-height: 1.42857143;
3012
+ text-align: center;
3013
+ white-space: nowrap;
3014
+ vertical-align: middle;
3015
+ -ms-touch-action: manipulation;
3016
+ touch-action: manipulation;
3017
+ cursor: pointer;
3018
+ -webkit-user-select: none;
3019
+ -moz-user-select: none;
3020
+ -ms-user-select: none;
3021
+ user-select: none;
3022
+ background-image: none;
3023
+ border: 1px solid transparent;
3024
+ border-radius: 4px;
3025
+ }
3026
+ .btn:focus,
3027
+ .btn:active:focus,
3028
+ .btn.active:focus,
3029
+ .btn.focus,
3030
+ .btn:active.focus,
3031
+ .btn.active.focus {
3032
+ outline: thin dotted;
3033
+ outline: 5px auto -webkit-focus-ring-color;
3034
+ outline-offset: -2px;
3035
+ }
3036
+ .btn:hover,
3037
+ .btn:focus,
3038
+ .btn.focus {
3039
+ color: #333;
3040
+ text-decoration: none;
3041
+ }
3042
+ .btn:active,
3043
+ .btn.active {
3044
+ background-image: none;
3045
+ outline: 0;
3046
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3047
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3048
+ }
3049
+ .btn.disabled,
3050
+ .btn[disabled],
3051
+ fieldset[disabled] .btn {
3052
+ cursor: not-allowed;
3053
+ filter: alpha(opacity=65);
3054
+ -webkit-box-shadow: none;
3055
+ box-shadow: none;
3056
+ opacity: .65;
3057
+ }
3058
+ a.btn.disabled,
3059
+ fieldset[disabled] a.btn {
3060
+ pointer-events: none;
3061
+ }
3062
+ .btn-default {
3063
+ color: #333;
3064
+ background-color: #fff;
3065
+ border-color: #ccc;
3066
+ }
3067
+ .btn-default:focus,
3068
+ .btn-default.focus {
3069
+ color: #333;
3070
+ background-color: #e6e6e6;
3071
+ border-color: #8c8c8c;
3072
+ }
3073
+ .btn-default:hover {
3074
+ color: #333;
3075
+ background-color: #e6e6e6;
3076
+ border-color: #adadad;
3077
+ }
3078
+ .btn-default:active,
3079
+ .btn-default.active,
3080
+ .open > .dropdown-toggle.btn-default {
3081
+ color: #333;
3082
+ background-color: #e6e6e6;
3083
+ border-color: #adadad;
3084
+ }
3085
+ .btn-default:active:hover,
3086
+ .btn-default.active:hover,
3087
+ .open > .dropdown-toggle.btn-default:hover,
3088
+ .btn-default:active:focus,
3089
+ .btn-default.active:focus,
3090
+ .open > .dropdown-toggle.btn-default:focus,
3091
+ .btn-default:active.focus,
3092
+ .btn-default.active.focus,
3093
+ .open > .dropdown-toggle.btn-default.focus {
3094
+ color: #333;
3095
+ background-color: #d4d4d4;
3096
+ border-color: #8c8c8c;
3097
+ }
3098
+ .btn-default:active,
3099
+ .btn-default.active,
3100
+ .open > .dropdown-toggle.btn-default {
3101
+ background-image: none;
3102
+ }
3103
+ .btn-default.disabled:hover,
3104
+ .btn-default[disabled]:hover,
3105
+ fieldset[disabled] .btn-default:hover,
3106
+ .btn-default.disabled:focus,
3107
+ .btn-default[disabled]:focus,
3108
+ fieldset[disabled] .btn-default:focus,
3109
+ .btn-default.disabled.focus,
3110
+ .btn-default[disabled].focus,
3111
+ fieldset[disabled] .btn-default.focus {
3112
+ background-color: #fff;
3113
+ border-color: #ccc;
3114
+ }
3115
+ .btn-default .badge {
3116
+ color: #fff;
3117
+ background-color: #333;
3118
+ }
3119
+ .btn-primary {
3120
+ color: #fff;
3121
+ background-color: #337ab7;
3122
+ border-color: #2e6da4;
3123
+ }
3124
+ .btn-primary:focus,
3125
+ .btn-primary.focus {
3126
+ color: #fff;
3127
+ background-color: #286090;
3128
+ border-color: #122b40;
3129
+ }
3130
+ .btn-primary:hover {
3131
+ color: #fff;
3132
+ background-color: #286090;
3133
+ border-color: #204d74;
3134
+ }
3135
+ .btn-primary:active,
3136
+ .btn-primary.active,
3137
+ .open > .dropdown-toggle.btn-primary {
3138
+ color: #fff;
3139
+ background-color: #286090;
3140
+ border-color: #204d74;
3141
+ }
3142
+ .btn-primary:active:hover,
3143
+ .btn-primary.active:hover,
3144
+ .open > .dropdown-toggle.btn-primary:hover,
3145
+ .btn-primary:active:focus,
3146
+ .btn-primary.active:focus,
3147
+ .open > .dropdown-toggle.btn-primary:focus,
3148
+ .btn-primary:active.focus,
3149
+ .btn-primary.active.focus,
3150
+ .open > .dropdown-toggle.btn-primary.focus {
3151
+ color: #fff;
3152
+ background-color: #204d74;
3153
+ border-color: #122b40;
3154
+ }
3155
+ .btn-primary:active,
3156
+ .btn-primary.active,
3157
+ .open > .dropdown-toggle.btn-primary {
3158
+ background-image: none;
3159
+ }
3160
+ .btn-primary.disabled:hover,
3161
+ .btn-primary[disabled]:hover,
3162
+ fieldset[disabled] .btn-primary:hover,
3163
+ .btn-primary.disabled:focus,
3164
+ .btn-primary[disabled]:focus,
3165
+ fieldset[disabled] .btn-primary:focus,
3166
+ .btn-primary.disabled.focus,
3167
+ .btn-primary[disabled].focus,
3168
+ fieldset[disabled] .btn-primary.focus {
3169
+ background-color: #337ab7;
3170
+ border-color: #2e6da4;
3171
+ }
3172
+ .btn-primary .badge {
3173
+ color: #337ab7;
3174
+ background-color: #fff;
3175
+ }
3176
+ .btn-success {
3177
+ color: #fff;
3178
+ background-color: #5cb85c;
3179
+ border-color: #4cae4c;
3180
+ }
3181
+ .btn-success:focus,
3182
+ .btn-success.focus {
3183
+ color: #fff;
3184
+ background-color: #449d44;
3185
+ border-color: #255625;
3186
+ }
3187
+ .btn-success:hover {
3188
+ color: #fff;
3189
+ background-color: #449d44;
3190
+ border-color: #398439;
3191
+ }
3192
+ .btn-success:active,
3193
+ .btn-success.active,
3194
+ .open > .dropdown-toggle.btn-success {
3195
+ color: #fff;
3196
+ background-color: #449d44;
3197
+ border-color: #398439;
3198
+ }
3199
+ .btn-success:active:hover,
3200
+ .btn-success.active:hover,
3201
+ .open > .dropdown-toggle.btn-success:hover,
3202
+ .btn-success:active:focus,
3203
+ .btn-success.active:focus,
3204
+ .open > .dropdown-toggle.btn-success:focus,
3205
+ .btn-success:active.focus,
3206
+ .btn-success.active.focus,
3207
+ .open > .dropdown-toggle.btn-success.focus {
3208
+ color: #fff;
3209
+ background-color: #398439;
3210
+ border-color: #255625;
3211
+ }
3212
+ .btn-success:active,
3213
+ .btn-success.active,
3214
+ .open > .dropdown-toggle.btn-success {
3215
+ background-image: none;
3216
+ }
3217
+ .btn-success.disabled:hover,
3218
+ .btn-success[disabled]:hover,
3219
+ fieldset[disabled] .btn-success:hover,
3220
+ .btn-success.disabled:focus,
3221
+ .btn-success[disabled]:focus,
3222
+ fieldset[disabled] .btn-success:focus,
3223
+ .btn-success.disabled.focus,
3224
+ .btn-success[disabled].focus,
3225
+ fieldset[disabled] .btn-success.focus {
3226
+ background-color: #5cb85c;
3227
+ border-color: #4cae4c;
3228
+ }
3229
+ .btn-success .badge {
3230
+ color: #5cb85c;
3231
+ background-color: #fff;
3232
+ }
3233
+ .btn-info {
3234
+ color: #fff;
3235
+ background-color: #5bc0de;
3236
+ border-color: #46b8da;
3237
+ }
3238
+ .btn-info:focus,
3239
+ .btn-info.focus {
3240
+ color: #fff;
3241
+ background-color: #31b0d5;
3242
+ border-color: #1b6d85;
3243
+ }
3244
+ .btn-info:hover {
3245
+ color: #fff;
3246
+ background-color: #31b0d5;
3247
+ border-color: #269abc;
3248
+ }
3249
+ .btn-info:active,
3250
+ .btn-info.active,
3251
+ .open > .dropdown-toggle.btn-info {
3252
+ color: #fff;
3253
+ background-color: #31b0d5;
3254
+ border-color: #269abc;
3255
+ }
3256
+ .btn-info:active:hover,
3257
+ .btn-info.active:hover,
3258
+ .open > .dropdown-toggle.btn-info:hover,
3259
+ .btn-info:active:focus,
3260
+ .btn-info.active:focus,
3261
+ .open > .dropdown-toggle.btn-info:focus,
3262
+ .btn-info:active.focus,
3263
+ .btn-info.active.focus,
3264
+ .open > .dropdown-toggle.btn-info.focus {
3265
+ color: #fff;
3266
+ background-color: #269abc;
3267
+ border-color: #1b6d85;
3268
+ }
3269
+ .btn-info:active,
3270
+ .btn-info.active,
3271
+ .open > .dropdown-toggle.btn-info {
3272
+ background-image: none;
3273
+ }
3274
+ .btn-info.disabled:hover,
3275
+ .btn-info[disabled]:hover,
3276
+ fieldset[disabled] .btn-info:hover,
3277
+ .btn-info.disabled:focus,
3278
+ .btn-info[disabled]:focus,
3279
+ fieldset[disabled] .btn-info:focus,
3280
+ .btn-info.disabled.focus,
3281
+ .btn-info[disabled].focus,
3282
+ fieldset[disabled] .btn-info.focus {
3283
+ background-color: #5bc0de;
3284
+ border-color: #46b8da;
3285
+ }
3286
+ .btn-info .badge {
3287
+ color: #5bc0de;
3288
+ background-color: #fff;
3289
+ }
3290
+ .btn-warning {
3291
+ color: #fff;
3292
+ background-color: #f0ad4e;
3293
+ border-color: #eea236;
3294
+ }
3295
+ .btn-warning:focus,
3296
+ .btn-warning.focus {
3297
+ color: #fff;
3298
+ background-color: #ec971f;
3299
+ border-color: #985f0d;
3300
+ }
3301
+ .btn-warning:hover {
3302
+ color: #fff;
3303
+ background-color: #ec971f;
3304
+ border-color: #d58512;
3305
+ }
3306
+ .btn-warning:active,
3307
+ .btn-warning.active,
3308
+ .open > .dropdown-toggle.btn-warning {
3309
+ color: #fff;
3310
+ background-color: #ec971f;
3311
+ border-color: #d58512;
3312
+ }
3313
+ .btn-warning:active:hover,
3314
+ .btn-warning.active:hover,
3315
+ .open > .dropdown-toggle.btn-warning:hover,
3316
+ .btn-warning:active:focus,
3317
+ .btn-warning.active:focus,
3318
+ .open > .dropdown-toggle.btn-warning:focus,
3319
+ .btn-warning:active.focus,
3320
+ .btn-warning.active.focus,
3321
+ .open > .dropdown-toggle.btn-warning.focus {
3322
+ color: #fff;
3323
+ background-color: #d58512;
3324
+ border-color: #985f0d;
3325
+ }
3326
+ .btn-warning:active,
3327
+ .btn-warning.active,
3328
+ .open > .dropdown-toggle.btn-warning {
3329
+ background-image: none;
3330
+ }
3331
+ .btn-warning.disabled:hover,
3332
+ .btn-warning[disabled]:hover,
3333
+ fieldset[disabled] .btn-warning:hover,
3334
+ .btn-warning.disabled:focus,
3335
+ .btn-warning[disabled]:focus,
3336
+ fieldset[disabled] .btn-warning:focus,
3337
+ .btn-warning.disabled.focus,
3338
+ .btn-warning[disabled].focus,
3339
+ fieldset[disabled] .btn-warning.focus {
3340
+ background-color: #f0ad4e;
3341
+ border-color: #eea236;
3342
+ }
3343
+ .btn-warning .badge {
3344
+ color: #f0ad4e;
3345
+ background-color: #fff;
3346
+ }
3347
+ .btn-danger {
3348
+ color: #fff;
3349
+ background-color: #d9534f;
3350
+ border-color: #d43f3a;
3351
+ }
3352
+ .btn-danger:focus,
3353
+ .btn-danger.focus {
3354
+ color: #fff;
3355
+ background-color: #c9302c;
3356
+ border-color: #761c19;
3357
+ }
3358
+ .btn-danger:hover {
3359
+ color: #fff;
3360
+ background-color: #c9302c;
3361
+ border-color: #ac2925;
3362
+ }
3363
+ .btn-danger:active,
3364
+ .btn-danger.active,
3365
+ .open > .dropdown-toggle.btn-danger {
3366
+ color: #fff;
3367
+ background-color: #c9302c;
3368
+ border-color: #ac2925;
3369
+ }
3370
+ .btn-danger:active:hover,
3371
+ .btn-danger.active:hover,
3372
+ .open > .dropdown-toggle.btn-danger:hover,
3373
+ .btn-danger:active:focus,
3374
+ .btn-danger.active:focus,
3375
+ .open > .dropdown-toggle.btn-danger:focus,
3376
+ .btn-danger:active.focus,
3377
+ .btn-danger.active.focus,
3378
+ .open > .dropdown-toggle.btn-danger.focus {
3379
+ color: #fff;
3380
+ background-color: #ac2925;
3381
+ border-color: #761c19;
3382
+ }
3383
+ .btn-danger:active,
3384
+ .btn-danger.active,
3385
+ .open > .dropdown-toggle.btn-danger {
3386
+ background-image: none;
3387
+ }
3388
+ .btn-danger.disabled:hover,
3389
+ .btn-danger[disabled]:hover,
3390
+ fieldset[disabled] .btn-danger:hover,
3391
+ .btn-danger.disabled:focus,
3392
+ .btn-danger[disabled]:focus,
3393
+ fieldset[disabled] .btn-danger:focus,
3394
+ .btn-danger.disabled.focus,
3395
+ .btn-danger[disabled].focus,
3396
+ fieldset[disabled] .btn-danger.focus {
3397
+ background-color: #d9534f;
3398
+ border-color: #d43f3a;
3399
+ }
3400
+ .btn-danger .badge {
3401
+ color: #d9534f;
3402
+ background-color: #fff;
3403
+ }
3404
+ .btn-link {
3405
+ font-weight: normal;
3406
+ color: #337ab7;
3407
+ border-radius: 0;
3408
+ }
3409
+ .btn-link,
3410
+ .btn-link:active,
3411
+ .btn-link.active,
3412
+ .btn-link[disabled],
3413
+ fieldset[disabled] .btn-link {
3414
+ background-color: transparent;
3415
+ -webkit-box-shadow: none;
3416
+ box-shadow: none;
3417
+ }
3418
+ .btn-link,
3419
+ .btn-link:hover,
3420
+ .btn-link:focus,
3421
+ .btn-link:active {
3422
+ border-color: transparent;
3423
+ }
3424
+ .btn-link:hover,
3425
+ .btn-link:focus {
3426
+ color: #23527c;
3427
+ text-decoration: underline;
3428
+ background-color: transparent;
3429
+ }
3430
+ .btn-link[disabled]:hover,
3431
+ fieldset[disabled] .btn-link:hover,
3432
+ .btn-link[disabled]:focus,
3433
+ fieldset[disabled] .btn-link:focus {
3434
+ color: #777;
3435
+ text-decoration: none;
3436
+ }
3437
+ .btn-lg,
3438
+ .btn-group-lg > .btn {
3439
+ padding: 10px 16px;
3440
+ font-size: 18px;
3441
+ line-height: 1.3333333;
3442
+ border-radius: 6px;
3443
+ }
3444
+ .btn-sm,
3445
+ .btn-group-sm > .btn {
3446
+ padding: 5px 10px;
3447
+ font-size: 12px;
3448
+ line-height: 1.5;
3449
+ border-radius: 3px;
3450
+ }
3451
+ .btn-xs,
3452
+ .btn-group-xs > .btn {
3453
+ padding: 1px 5px;
3454
+ font-size: 12px;
3455
+ line-height: 1.5;
3456
+ border-radius: 3px;
3457
+ }
3458
+ .btn-block {
3459
+ display: block;
3460
+ width: 100%;
3461
+ }
3462
+ .btn-block + .btn-block {
3463
+ margin-top: 5px;
3464
+ }
3465
+ input[type="submit"].btn-block,
3466
+ input[type="reset"].btn-block,
3467
+ input[type="button"].btn-block {
3468
+ width: 100%;
3469
+ }
3470
+ .fade {
3471
+ opacity: 0;
3472
+ -webkit-transition: opacity .15s linear;
3473
+ -o-transition: opacity .15s linear;
3474
+ transition: opacity .15s linear;
3475
+ }
3476
+ .fade.in {
3477
+ opacity: 1;
3478
+ }
3479
+ .collapse {
3480
+ display: none;
3481
+ }
3482
+ .collapse.in {
3483
+ display: block;
3484
+ }
3485
+ tr.collapse.in {
3486
+ display: table-row;
3487
+ }
3488
+ tbody.collapse.in {
3489
+ display: table-row-group;
3490
+ }
3491
+ .collapsing {
3492
+ position: relative;
3493
+ height: 0;
3494
+ overflow: hidden;
3495
+ -webkit-transition-timing-function: ease;
3496
+ -o-transition-timing-function: ease;
3497
+ transition-timing-function: ease;
3498
+ -webkit-transition-duration: .35s;
3499
+ -o-transition-duration: .35s;
3500
+ transition-duration: .35s;
3501
+ -webkit-transition-property: height, visibility;
3502
+ -o-transition-property: height, visibility;
3503
+ transition-property: height, visibility;
3504
+ }
3505
+ .caret {
3506
+ display: inline-block;
3507
+ width: 0;
3508
+ height: 0;
3509
+ margin-left: 2px;
3510
+ vertical-align: middle;
3511
+ border-top: 4px dashed;
3512
+ border-top: 4px solid \9;
3513
+ border-right: 4px solid transparent;
3514
+ border-left: 4px solid transparent;
3515
+ }
3516
+ .dropup,
3517
+ .dropdown {
3518
+ position: relative;
3519
+ }
3520
+ .dropdown-toggle:focus {
3521
+ outline: 0;
3522
+ }
3523
+ .dropdown-menu {
3524
+ position: absolute;
3525
+ top: 100%;
3526
+ left: 0;
3527
+ z-index: 1000;
3528
+ display: none;
3529
+ float: left;
3530
+ min-width: 160px;
3531
+ padding: 5px 0;
3532
+ margin: 2px 0 0;
3533
+ font-size: 14px;
3534
+ text-align: left;
3535
+ list-style: none;
3536
+ background-color: #fff;
3537
+ -webkit-background-clip: padding-box;
3538
+ background-clip: padding-box;
3539
+ border: 1px solid #ccc;
3540
+ border: 1px solid rgba(0, 0, 0, .15);
3541
+ border-radius: 4px;
3542
+ -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3543
+ box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
3544
+ }
3545
+ .dropdown-menu.pull-right {
3546
+ right: 0;
3547
+ left: auto;
3548
+ }
3549
+ .dropdown-menu .divider {
3550
+ height: 1px;
3551
+ margin: 9px 0;
3552
+ overflow: hidden;
3553
+ background-color: #e5e5e5;
3554
+ }
3555
+ .dropdown-menu > li > a {
3556
+ display: block;
3557
+ padding: 3px 20px;
3558
+ clear: both;
3559
+ font-weight: normal;
3560
+ line-height: 1.42857143;
3561
+ color: #333;
3562
+ white-space: nowrap;
3563
+ }
3564
+ .dropdown-menu > li > a:hover,
3565
+ .dropdown-menu > li > a:focus {
3566
+ color: #262626;
3567
+ text-decoration: none;
3568
+ background-color: #f5f5f5;
3569
+ }
3570
+ .dropdown-menu > .active > a,
3571
+ .dropdown-menu > .active > a:hover,
3572
+ .dropdown-menu > .active > a:focus {
3573
+ color: #fff;
3574
+ text-decoration: none;
3575
+ background-color: #337ab7;
3576
+ outline: 0;
3577
+ }
3578
+ .dropdown-menu > .disabled > a,
3579
+ .dropdown-menu > .disabled > a:hover,
3580
+ .dropdown-menu > .disabled > a:focus {
3581
+ color: #777;
3582
+ }
3583
+ .dropdown-menu > .disabled > a:hover,
3584
+ .dropdown-menu > .disabled > a:focus {
3585
+ text-decoration: none;
3586
+ cursor: not-allowed;
3587
+ background-color: transparent;
3588
+ background-image: none;
3589
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
3590
+ }
3591
+ .open > .dropdown-menu {
3592
+ display: block;
3593
+ }
3594
+ .open > a {
3595
+ outline: 0;
3596
+ }
3597
+ .dropdown-menu-right {
3598
+ right: 0;
3599
+ left: auto;
3600
+ }
3601
+ .dropdown-menu-left {
3602
+ right: auto;
3603
+ left: 0;
3604
+ }
3605
+ .dropdown-header {
3606
+ display: block;
3607
+ padding: 3px 20px;
3608
+ font-size: 12px;
3609
+ line-height: 1.42857143;
3610
+ color: #777;
3611
+ white-space: nowrap;
3612
+ }
3613
+ .dropdown-backdrop {
3614
+ position: fixed;
3615
+ top: 0;
3616
+ right: 0;
3617
+ bottom: 0;
3618
+ left: 0;
3619
+ z-index: 990;
3620
+ }
3621
+ .pull-right > .dropdown-menu {
3622
+ right: 0;
3623
+ left: auto;
3624
+ }
3625
+ .dropup .caret,
3626
+ .navbar-fixed-bottom .dropdown .caret {
3627
+ content: "";
3628
+ border-top: 0;
3629
+ border-bottom: 4px dashed;
3630
+ border-bottom: 4px solid \9;
3631
+ }
3632
+ .dropup .dropdown-menu,
3633
+ .navbar-fixed-bottom .dropdown .dropdown-menu {
3634
+ top: auto;
3635
+ bottom: 100%;
3636
+ margin-bottom: 2px;
3637
+ }
3638
+ @media (min-width: 768px) {
3639
+ .navbar-right .dropdown-menu {
3640
+ right: 0;
3641
+ left: auto;
3642
+ }
3643
+ .navbar-right .dropdown-menu-left {
3644
+ right: auto;
3645
+ left: 0;
3646
+ }
3647
+ }
3648
+ .btn-group,
3649
+ .btn-group-vertical {
3650
+ position: relative;
3651
+ display: inline-block;
3652
+ vertical-align: middle;
3653
+ }
3654
+ .btn-group > .btn,
3655
+ .btn-group-vertical > .btn {
3656
+ position: relative;
3657
+ float: left;
3658
+ }
3659
+ .btn-group > .btn:hover,
3660
+ .btn-group-vertical > .btn:hover,
3661
+ .btn-group > .btn:focus,
3662
+ .btn-group-vertical > .btn:focus,
3663
+ .btn-group > .btn:active,
3664
+ .btn-group-vertical > .btn:active,
3665
+ .btn-group > .btn.active,
3666
+ .btn-group-vertical > .btn.active {
3667
+ z-index: 2;
3668
+ }
3669
+ .btn-group .btn + .btn,
3670
+ .btn-group .btn + .btn-group,
3671
+ .btn-group .btn-group + .btn,
3672
+ .btn-group .btn-group + .btn-group {
3673
+ margin-left: -1px;
3674
+ }
3675
+ .btn-toolbar {
3676
+ margin-left: -5px;
3677
+ }
3678
+ .btn-toolbar .btn,
3679
+ .btn-toolbar .btn-group,
3680
+ .btn-toolbar .input-group {
3681
+ float: left;
3682
+ }
3683
+ .btn-toolbar > .btn,
3684
+ .btn-toolbar > .btn-group,
3685
+ .btn-toolbar > .input-group {
3686
+ margin-left: 5px;
3687
+ }
3688
+ .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
3689
+ border-radius: 0;
3690
+ }
3691
+ .btn-group > .btn:first-child {
3692
+ margin-left: 0;
3693
+ }
3694
+ .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
3695
+ border-top-right-radius: 0;
3696
+ border-bottom-right-radius: 0;
3697
+ }
3698
+ .btn-group > .btn:last-child:not(:first-child),
3699
+ .btn-group > .dropdown-toggle:not(:first-child) {
3700
+ border-top-left-radius: 0;
3701
+ border-bottom-left-radius: 0;
3702
+ }
3703
+ .btn-group > .btn-group {
3704
+ float: left;
3705
+ }
3706
+ .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
3707
+ border-radius: 0;
3708
+ }
3709
+ .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
3710
+ .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3711
+ border-top-right-radius: 0;
3712
+ border-bottom-right-radius: 0;
3713
+ }
3714
+ .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
3715
+ border-top-left-radius: 0;
3716
+ border-bottom-left-radius: 0;
3717
+ }
3718
+ .btn-group .dropdown-toggle:active,
3719
+ .btn-group.open .dropdown-toggle {
3720
+ outline: 0;
3721
+ }
3722
+ .btn-group > .btn + .dropdown-toggle {
3723
+ padding-right: 8px;
3724
+ padding-left: 8px;
3725
+ }
3726
+ .btn-group > .btn-lg + .dropdown-toggle {
3727
+ padding-right: 12px;
3728
+ padding-left: 12px;
3729
+ }
3730
+ .btn-group.open .dropdown-toggle {
3731
+ -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3732
+ box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
3733
+ }
3734
+ .btn-group.open .dropdown-toggle.btn-link {
3735
+ -webkit-box-shadow: none;
3736
+ box-shadow: none;
3737
+ }
3738
+ .btn .caret {
3739
+ margin-left: 0;
3740
+ }
3741
+ .btn-lg .caret {
3742
+ border-width: 5px 5px 0;
3743
+ border-bottom-width: 0;
3744
+ }
3745
+ .dropup .btn-lg .caret {
3746
+ border-width: 0 5px 5px;
3747
+ }
3748
+ .btn-group-vertical > .btn,
3749
+ .btn-group-vertical > .btn-group,
3750
+ .btn-group-vertical > .btn-group > .btn {
3751
+ display: block;
3752
+ float: none;
3753
+ width: 100%;
3754
+ max-width: 100%;
3755
+ }
3756
+ .btn-group-vertical > .btn-group > .btn {
3757
+ float: none;
3758
+ }
3759
+ .btn-group-vertical > .btn + .btn,
3760
+ .btn-group-vertical > .btn + .btn-group,
3761
+ .btn-group-vertical > .btn-group + .btn,
3762
+ .btn-group-vertical > .btn-group + .btn-group {
3763
+ margin-top: -1px;
3764
+ margin-left: 0;
3765
+ }
3766
+ .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
3767
+ border-radius: 0;
3768
+ }
3769
+ .btn-group-vertical > .btn:first-child:not(:last-child) {
3770
+ border-top-left-radius: 4px;
3771
+ border-top-right-radius: 4px;
3772
+ border-bottom-right-radius: 0;
3773
+ border-bottom-left-radius: 0;
3774
+ }
3775
+ .btn-group-vertical > .btn:last-child:not(:first-child) {
3776
+ border-top-left-radius: 0;
3777
+ border-top-right-radius: 0;
3778
+ border-bottom-right-radius: 4px;
3779
+ border-bottom-left-radius: 4px;
3780
+ }
3781
+ .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
3782
+ border-radius: 0;
3783
+ }
3784
+ .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
3785
+ .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
3786
+ border-bottom-right-radius: 0;
3787
+ border-bottom-left-radius: 0;
3788
+ }
3789
+ .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
3790
+ border-top-left-radius: 0;
3791
+ border-top-right-radius: 0;
3792
+ }
3793
+ .btn-group-justified {
3794
+ display: table;
3795
+ width: 100%;
3796
+ table-layout: fixed;
3797
+ border-collapse: separate;
3798
+ }
3799
+ .btn-group-justified > .btn,
3800
+ .btn-group-justified > .btn-group {
3801
+ display: table-cell;
3802
+ float: none;
3803
+ width: 1%;
3804
+ }
3805
+ .btn-group-justified > .btn-group .btn {
3806
+ width: 100%;
3807
+ }
3808
+ .btn-group-justified > .btn-group .dropdown-menu {
3809
+ left: auto;
3810
+ }
3811
+ [data-toggle="buttons"] > .btn input[type="radio"],
3812
+ [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3813
+ [data-toggle="buttons"] > .btn input[type="checkbox"],
3814
+ [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3815
+ position: absolute;
3816
+ clip: rect(0, 0, 0, 0);
3817
+ pointer-events: none;
3818
+ }
3819
+ .input-group {
3820
+ position: relative;
3821
+ display: table;
3822
+ border-collapse: separate;
3823
+ }
3824
+ .input-group[class*="col-"] {
3825
+ float: none;
3826
+ padding-right: 0;
3827
+ padding-left: 0;
3828
+ }
3829
+ .input-group .form-control {
3830
+ position: relative;
3831
+ z-index: 2;
3832
+ float: left;
3833
+ width: 100%;
3834
+ margin-bottom: 0;
3835
+ }
3836
+ .input-group .form-control:focus {
3837
+ z-index: 3;
3838
+ }
3839
+ .input-group-lg > .form-control,
3840
+ .input-group-lg > .input-group-addon,
3841
+ .input-group-lg > .input-group-btn > .btn {
3842
+ height: 46px;
3843
+ padding: 10px 16px;
3844
+ font-size: 18px;
3845
+ line-height: 1.3333333;
3846
+ border-radius: 6px;
3847
+ }
3848
+ select.input-group-lg > .form-control,
3849
+ select.input-group-lg > .input-group-addon,
3850
+ select.input-group-lg > .input-group-btn > .btn {
3851
+ height: 46px;
3852
+ line-height: 46px;
3853
+ }
3854
+ textarea.input-group-lg > .form-control,
3855
+ textarea.input-group-lg > .input-group-addon,
3856
+ textarea.input-group-lg > .input-group-btn > .btn,
3857
+ select[multiple].input-group-lg > .form-control,
3858
+ select[multiple].input-group-lg > .input-group-addon,
3859
+ select[multiple].input-group-lg > .input-group-btn > .btn {
3860
+ height: auto;
3861
+ }
3862
+ .input-group-sm > .form-control,
3863
+ .input-group-sm > .input-group-addon,
3864
+ .input-group-sm > .input-group-btn > .btn {
3865
+ height: 30px;
3866
+ padding: 5px 10px;
3867
+ font-size: 12px;
3868
+ line-height: 1.5;
3869
+ border-radius: 3px;
3870
+ }
3871
+ select.input-group-sm > .form-control,
3872
+ select.input-group-sm > .input-group-addon,
3873
+ select.input-group-sm > .input-group-btn > .btn {
3874
+ height: 30px;
3875
+ line-height: 30px;
3876
+ }
3877
+ textarea.input-group-sm > .form-control,
3878
+ textarea.input-group-sm > .input-group-addon,
3879
+ textarea.input-group-sm > .input-group-btn > .btn,
3880
+ select[multiple].input-group-sm > .form-control,
3881
+ select[multiple].input-group-sm > .input-group-addon,
3882
+ select[multiple].input-group-sm > .input-group-btn > .btn {
3883
+ height: auto;
3884
+ }
3885
+ .input-group-addon,
3886
+ .input-group-btn,
3887
+ .input-group .form-control {
3888
+ display: table-cell;
3889
+ }
3890
+ .input-group-addon:not(:first-child):not(:last-child),
3891
+ .input-group-btn:not(:first-child):not(:last-child),
3892
+ .input-group .form-control:not(:first-child):not(:last-child) {
3893
+ border-radius: 0;
3894
+ }
3895
+ .input-group-addon,
3896
+ .input-group-btn {
3897
+ width: 1%;
3898
+ white-space: nowrap;
3899
+ vertical-align: middle;
3900
+ }
3901
+ .input-group-addon {
3902
+ padding: 6px 12px;
3903
+ font-size: 14px;
3904
+ font-weight: normal;
3905
+ line-height: 1;
3906
+ color: #555;
3907
+ text-align: center;
3908
+ background-color: #eee;
3909
+ border: 1px solid #ccc;
3910
+ border-radius: 4px;
3911
+ }
3912
+ .input-group-addon.input-sm {
3913
+ padding: 5px 10px;
3914
+ font-size: 12px;
3915
+ border-radius: 3px;
3916
+ }
3917
+ .input-group-addon.input-lg {
3918
+ padding: 10px 16px;
3919
+ font-size: 18px;
3920
+ border-radius: 6px;
3921
+ }
3922
+ .input-group-addon input[type="radio"],
3923
+ .input-group-addon input[type="checkbox"] {
3924
+ margin-top: 0;
3925
+ }
3926
+ .input-group .form-control:first-child,
3927
+ .input-group-addon:first-child,
3928
+ .input-group-btn:first-child > .btn,
3929
+ .input-group-btn:first-child > .btn-group > .btn,
3930
+ .input-group-btn:first-child > .dropdown-toggle,
3931
+ .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3932
+ .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3933
+ border-top-right-radius: 0;
3934
+ border-bottom-right-radius: 0;
3935
+ }
3936
+ .input-group-addon:first-child {
3937
+ border-right: 0;
3938
+ }
3939
+ .input-group .form-control:last-child,
3940
+ .input-group-addon:last-child,
3941
+ .input-group-btn:last-child > .btn,
3942
+ .input-group-btn:last-child > .btn-group > .btn,
3943
+ .input-group-btn:last-child > .dropdown-toggle,
3944
+ .input-group-btn:first-child > .btn:not(:first-child),
3945
+ .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3946
+ border-top-left-radius: 0;
3947
+ border-bottom-left-radius: 0;
3948
+ }
3949
+ .input-group-addon:last-child {
3950
+ border-left: 0;
3951
+ }
3952
+ .input-group-btn {
3953
+ position: relative;
3954
+ font-size: 0;
3955
+ white-space: nowrap;
3956
+ }
3957
+ .input-group-btn > .btn {
3958
+ position: relative;
3959
+ }
3960
+ .input-group-btn > .btn + .btn {
3961
+ margin-left: -1px;
3962
+ }
3963
+ .input-group-btn > .btn:hover,
3964
+ .input-group-btn > .btn:focus,
3965
+ .input-group-btn > .btn:active {
3966
+ z-index: 2;
3967
+ }
3968
+ .input-group-btn:first-child > .btn,
3969
+ .input-group-btn:first-child > .btn-group {
3970
+ margin-right: -1px;
3971
+ }
3972
+ .input-group-btn:last-child > .btn,
3973
+ .input-group-btn:last-child > .btn-group {
3974
+ z-index: 2;
3975
+ margin-left: -1px;
3976
+ }
3977
+ .nav {
3978
+ padding-left: 0;
3979
+ margin-bottom: 0;
3980
+ list-style: none;
3981
+ }
3982
+ .nav > li {
3983
+ position: relative;
3984
+ display: block;
3985
+ }
3986
+ .nav > li > a {
3987
+ position: relative;
3988
+ display: block;
3989
+ padding: 10px 15px;
3990
+ }
3991
+ .nav > li > a:hover,
3992
+ .nav > li > a:focus {
3993
+ text-decoration: none;
3994
+ background-color: #eee;
3995
+ }
3996
+ .nav > li.disabled > a {
3997
+ color: #777;
3998
+ }
3999
+ .nav > li.disabled > a:hover,
4000
+ .nav > li.disabled > a:focus {
4001
+ color: #777;
4002
+ text-decoration: none;
4003
+ cursor: not-allowed;
4004
+ background-color: transparent;
4005
+ }
4006
+ .nav .open > a,
4007
+ .nav .open > a:hover,
4008
+ .nav .open > a:focus {
4009
+ background-color: #eee;
4010
+ border-color: #337ab7;
4011
+ }
4012
+ .nav .nav-divider {
4013
+ height: 1px;
4014
+ margin: 9px 0;
4015
+ overflow: hidden;
4016
+ background-color: #e5e5e5;
4017
+ }
4018
+ .nav > li > a > img {
4019
+ max-width: none;
4020
+ }
4021
+ .nav-tabs {
4022
+ border-bottom: 1px solid #ddd;
4023
+ }
4024
+ .nav-tabs > li {
4025
+ float: left;
4026
+ margin-bottom: -1px;
4027
+ }
4028
+ .nav-tabs > li > a {
4029
+ margin-right: 2px;
4030
+ line-height: 1.42857143;
4031
+ border: 1px solid transparent;
4032
+ border-radius: 4px 4px 0 0;
4033
+ }
4034
+ .nav-tabs > li > a:hover {
4035
+ border-color: #eee #eee #ddd;
4036
+ }
4037
+ .nav-tabs > li.active > a,
4038
+ .nav-tabs > li.active > a:hover,
4039
+ .nav-tabs > li.active > a:focus {
4040
+ color: #555;
4041
+ cursor: default;
4042
+ background-color: #fff;
4043
+ border: 1px solid #ddd;
4044
+ border-bottom-color: transparent;
4045
+ }
4046
+ .nav-tabs.nav-justified {
4047
+ width: 100%;
4048
+ border-bottom: 0;
4049
+ }
4050
+ .nav-tabs.nav-justified > li {
4051
+ float: none;
4052
+ }
4053
+ .nav-tabs.nav-justified > li > a {
4054
+ margin-bottom: 5px;
4055
+ text-align: center;
4056
+ }
4057
+ .nav-tabs.nav-justified > .dropdown .dropdown-menu {
4058
+ top: auto;
4059
+ left: auto;
4060
+ }
4061
+ @media (min-width: 768px) {
4062
+ .nav-tabs.nav-justified > li {
4063
+ display: table-cell;
4064
+ width: 1%;
4065
+ }
4066
+ .nav-tabs.nav-justified > li > a {
4067
+ margin-bottom: 0;
4068
+ }
4069
+ }
4070
+ .nav-tabs.nav-justified > li > a {
4071
+ margin-right: 0;
4072
+ border-radius: 4px;
4073
+ }
4074
+ .nav-tabs.nav-justified > .active > a,
4075
+ .nav-tabs.nav-justified > .active > a:hover,
4076
+ .nav-tabs.nav-justified > .active > a:focus {
4077
+ border: 1px solid #ddd;
4078
+ }
4079
+ @media (min-width: 768px) {
4080
+ .nav-tabs.nav-justified > li > a {
4081
+ border-bottom: 1px solid #ddd;
4082
+ border-radius: 4px 4px 0 0;
4083
+ }
4084
+ .nav-tabs.nav-justified > .active > a,
4085
+ .nav-tabs.nav-justified > .active > a:hover,
4086
+ .nav-tabs.nav-justified > .active > a:focus {
4087
+ border-bottom-color: #fff;
4088
+ }
4089
+ }
4090
+ .nav-pills > li {
4091
+ float: left;
4092
+ }
4093
+ .nav-pills > li > a {
4094
+ border-radius: 4px;
4095
+ }
4096
+ .nav-pills > li + li {
4097
+ margin-left: 2px;
4098
+ }
4099
+ .nav-pills > li.active > a,
4100
+ .nav-pills > li.active > a:hover,
4101
+ .nav-pills > li.active > a:focus {
4102
+ color: #fff;
4103
+ background-color: #337ab7;
4104
+ }
4105
+ .nav-stacked > li {
4106
+ float: none;
4107
+ }
4108
+ .nav-stacked > li + li {
4109
+ margin-top: 2px;
4110
+ margin-left: 0;
4111
+ }
4112
+ .nav-justified {
4113
+ width: 100%;
4114
+ }
4115
+ .nav-justified > li {
4116
+ float: none;
4117
+ }
4118
+ .nav-justified > li > a {
4119
+ margin-bottom: 5px;
4120
+ text-align: center;
4121
+ }
4122
+ .nav-justified > .dropdown .dropdown-menu {
4123
+ top: auto;
4124
+ left: auto;
4125
+ }
4126
+ @media (min-width: 768px) {
4127
+ .nav-justified > li {
4128
+ display: table-cell;
4129
+ width: 1%;
4130
+ }
4131
+ .nav-justified > li > a {
4132
+ margin-bottom: 0;
4133
+ }
4134
+ }
4135
+ .nav-tabs-justified {
4136
+ border-bottom: 0;
4137
+ }
4138
+ .nav-tabs-justified > li > a {
4139
+ margin-right: 0;
4140
+ border-radius: 4px;
4141
+ }
4142
+ .nav-tabs-justified > .active > a,
4143
+ .nav-tabs-justified > .active > a:hover,
4144
+ .nav-tabs-justified > .active > a:focus {
4145
+ border: 1px solid #ddd;
4146
+ }
4147
+ @media (min-width: 768px) {
4148
+ .nav-tabs-justified > li > a {
4149
+ border-bottom: 1px solid #ddd;
4150
+ border-radius: 4px 4px 0 0;
4151
+ }
4152
+ .nav-tabs-justified > .active > a,
4153
+ .nav-tabs-justified > .active > a:hover,
4154
+ .nav-tabs-justified > .active > a:focus {
4155
+ border-bottom-color: #fff;
4156
+ }
4157
+ }
4158
+ .tab-content > .tab-pane {
4159
+ display: none;
4160
+ }
4161
+ .tab-content > .active {
4162
+ display: block;
4163
+ }
4164
+ .nav-tabs .dropdown-menu {
4165
+ margin-top: -1px;
4166
+ border-top-left-radius: 0;
4167
+ border-top-right-radius: 0;
4168
+ }
4169
+ .navbar {
4170
+ position: relative;
4171
+ min-height: 50px;
4172
+ margin-bottom: 20px;
4173
+ border: 1px solid transparent;
4174
+ }
4175
+ @media (min-width: 768px) {
4176
+ .navbar {
4177
+ border-radius: 4px;
4178
+ }
4179
+ }
4180
+ @media (min-width: 768px) {
4181
+ .navbar-header {
4182
+ float: left;
4183
+ }
4184
+ }
4185
+ .navbar-collapse {
4186
+ padding-right: 15px;
4187
+ padding-left: 15px;
4188
+ overflow-x: visible;
4189
+ -webkit-overflow-scrolling: touch;
4190
+ border-top: 1px solid transparent;
4191
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
4192
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
4193
+ }
4194
+ .navbar-collapse.in {
4195
+ overflow-y: auto;
4196
+ }
4197
+ @media (min-width: 768px) {
4198
+ .navbar-collapse {
4199
+ width: auto;
4200
+ border-top: 0;
4201
+ -webkit-box-shadow: none;
4202
+ box-shadow: none;
4203
+ }
4204
+ .navbar-collapse.collapse {
4205
+ display: block !important;
4206
+ height: auto !important;
4207
+ padding-bottom: 0;
4208
+ overflow: visible !important;
4209
+ }
4210
+ .navbar-collapse.in {
4211
+ overflow-y: visible;
4212
+ }
4213
+ .navbar-fixed-top .navbar-collapse,
4214
+ .navbar-static-top .navbar-collapse,
4215
+ .navbar-fixed-bottom .navbar-collapse {
4216
+ padding-right: 0;
4217
+ padding-left: 0;
4218
+ }
4219
+ }
4220
+ .navbar-fixed-top .navbar-collapse,
4221
+ .navbar-fixed-bottom .navbar-collapse {
4222
+ max-height: 340px;
4223
+ }
4224
+ @media (max-device-width: 480px) and (orientation: landscape) {
4225
+ .navbar-fixed-top .navbar-collapse,
4226
+ .navbar-fixed-bottom .navbar-collapse {
4227
+ max-height: 200px;
4228
+ }
4229
+ }
4230
+ .container > .navbar-header,
4231
+ .container-fluid > .navbar-header,
4232
+ .container > .navbar-collapse,
4233
+ .container-fluid > .navbar-collapse {
4234
+ margin-right: -15px;
4235
+ margin-left: -15px;
4236
+ }
4237
+ @media (min-width: 768px) {
4238
+ .container > .navbar-header,
4239
+ .container-fluid > .navbar-header,
4240
+ .container > .navbar-collapse,
4241
+ .container-fluid > .navbar-collapse {
4242
+ margin-right: 0;
4243
+ margin-left: 0;
4244
+ }
4245
+ }
4246
+ .navbar-static-top {
4247
+ z-index: 1000;
4248
+ border-width: 0 0 1px;
4249
+ }
4250
+ @media (min-width: 768px) {
4251
+ .navbar-static-top {
4252
+ border-radius: 0;
4253
+ }
4254
+ }
4255
+ .navbar-fixed-top,
4256
+ .navbar-fixed-bottom {
4257
+ position: fixed;
4258
+ right: 0;
4259
+ left: 0;
4260
+ z-index: 1030;
4261
+ }
4262
+ @media (min-width: 768px) {
4263
+ .navbar-fixed-top,
4264
+ .navbar-fixed-bottom {
4265
+ border-radius: 0;
4266
+ }
4267
+ }
4268
+ .navbar-fixed-top {
4269
+ top: 0;
4270
+ border-width: 0 0 1px;
4271
+ }
4272
+ .navbar-fixed-bottom {
4273
+ bottom: 0;
4274
+ margin-bottom: 0;
4275
+ border-width: 1px 0 0;
4276
+ }
4277
+ .navbar-brand {
4278
+ float: left;
4279
+ height: 50px;
4280
+ padding: 15px 15px;
4281
+ font-size: 18px;
4282
+ line-height: 20px;
4283
+ }
4284
+ .navbar-brand:hover,
4285
+ .navbar-brand:focus {
4286
+ text-decoration: none;
4287
+ }
4288
+ .navbar-brand > img {
4289
+ display: block;
4290
+ }
4291
+ @media (min-width: 768px) {
4292
+ .navbar > .container .navbar-brand,
4293
+ .navbar > .container-fluid .navbar-brand {
4294
+ margin-left: -15px;
4295
+ }
4296
+ }
4297
+ .navbar-toggle {
4298
+ position: relative;
4299
+ float: right;
4300
+ padding: 9px 10px;
4301
+ margin-top: 8px;
4302
+ margin-right: 15px;
4303
+ margin-bottom: 8px;
4304
+ background-color: transparent;
4305
+ background-image: none;
4306
+ border: 1px solid transparent;
4307
+ border-radius: 4px;
4308
+ }
4309
+ .navbar-toggle:focus {
4310
+ outline: 0;
4311
+ }
4312
+ .navbar-toggle .icon-bar {
4313
+ display: block;
4314
+ width: 22px;
4315
+ height: 2px;
4316
+ border-radius: 1px;
4317
+ }
4318
+ .navbar-toggle .icon-bar + .icon-bar {
4319
+ margin-top: 4px;
4320
+ }
4321
+ @media (min-width: 768px) {
4322
+ .navbar-toggle {
4323
+ display: none;
4324
+ }
4325
+ }
4326
+ .navbar-nav {
4327
+ margin: 7.5px -15px;
4328
+ }
4329
+ .navbar-nav > li > a {
4330
+ padding-top: 10px;
4331
+ padding-bottom: 10px;
4332
+ line-height: 20px;
4333
+ }
4334
+ @media (max-width: 767px) {
4335
+ .navbar-nav .open .dropdown-menu {
4336
+ position: static;
4337
+ float: none;
4338
+ width: auto;
4339
+ margin-top: 0;
4340
+ background-color: transparent;
4341
+ border: 0;
4342
+ -webkit-box-shadow: none;
4343
+ box-shadow: none;
4344
+ }
4345
+ .navbar-nav .open .dropdown-menu > li > a,
4346
+ .navbar-nav .open .dropdown-menu .dropdown-header {
4347
+ padding: 5px 15px 5px 25px;
4348
+ }
4349
+ .navbar-nav .open .dropdown-menu > li > a {
4350
+ line-height: 20px;
4351
+ }
4352
+ .navbar-nav .open .dropdown-menu > li > a:hover,
4353
+ .navbar-nav .open .dropdown-menu > li > a:focus {
4354
+ background-image: none;
4355
+ }
4356
+ }
4357
+ @media (min-width: 768px) {
4358
+ .navbar-nav {
4359
+ float: left;
4360
+ margin: 0;
4361
+ }
4362
+ .navbar-nav > li {
4363
+ float: left;
4364
+ }
4365
+ .navbar-nav > li > a {
4366
+ padding-top: 15px;
4367
+ padding-bottom: 15px;
4368
+ }
4369
+ }
4370
+ .navbar-form {
4371
+ padding: 10px 15px;
4372
+ margin-top: 8px;
4373
+ margin-right: -15px;
4374
+ margin-bottom: 8px;
4375
+ margin-left: -15px;
4376
+ border-top: 1px solid transparent;
4377
+ border-bottom: 1px solid transparent;
4378
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
4379
+ box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
4380
+ }
4381
+ @media (min-width: 768px) {
4382
+ .navbar-form .form-group {
4383
+ display: inline-block;
4384
+ margin-bottom: 0;
4385
+ vertical-align: middle;
4386
+ }
4387
+ .navbar-form .form-control {
4388
+ display: inline-block;
4389
+ width: auto;
4390
+ vertical-align: middle;
4391
+ }
4392
+ .navbar-form .form-control-static {
4393
+ display: inline-block;
4394
+ }
4395
+ .navbar-form .input-group {
4396
+ display: inline-table;
4397
+ vertical-align: middle;
4398
+ }
4399
+ .navbar-form .input-group .input-group-addon,
4400
+ .navbar-form .input-group .input-group-btn,
4401
+ .navbar-form .input-group .form-control {
4402
+ width: auto;
4403
+ }
4404
+ .navbar-form .input-group > .form-control {
4405
+ width: 100%;
4406
+ }
4407
+ .navbar-form .control-label {
4408
+ margin-bottom: 0;
4409
+ vertical-align: middle;
4410
+ }
4411
+ .navbar-form .radio,
4412
+ .navbar-form .checkbox {
4413
+ display: inline-block;
4414
+ margin-top: 0;
4415
+ margin-bottom: 0;
4416
+ vertical-align: middle;
4417
+ }
4418
+ .navbar-form .radio label,
4419
+ .navbar-form .checkbox label {
4420
+ padding-left: 0;
4421
+ }
4422
+ .navbar-form .radio input[type="radio"],
4423
+ .navbar-form .checkbox input[type="checkbox"] {
4424
+ position: relative;
4425
+ margin-left: 0;
4426
+ }
4427
+ .navbar-form .has-feedback .form-control-feedback {
4428
+ top: 0;
4429
+ }
4430
+ }
4431
+ @media (max-width: 767px) {
4432
+ .navbar-form .form-group {
4433
+ margin-bottom: 5px;
4434
+ }
4435
+ .navbar-form .form-group:last-child {
4436
+ margin-bottom: 0;
4437
+ }
4438
+ }
4439
+ @media (min-width: 768px) {
4440
+ .navbar-form {
4441
+ width: auto;
4442
+ padding-top: 0;
4443
+ padding-bottom: 0;
4444
+ margin-right: 0;
4445
+ margin-left: 0;
4446
+ border: 0;
4447
+ -webkit-box-shadow: none;
4448
+ box-shadow: none;
4449
+ }
4450
+ }
4451
+ .navbar-nav > li > .dropdown-menu {
4452
+ margin-top: 0;
4453
+ border-top-left-radius: 0;
4454
+ border-top-right-radius: 0;
4455
+ }
4456
+ .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
4457
+ margin-bottom: 0;
4458
+ border-top-left-radius: 4px;
4459
+ border-top-right-radius: 4px;
4460
+ border-bottom-right-radius: 0;
4461
+ border-bottom-left-radius: 0;
4462
+ }
4463
+ .navbar-btn {
4464
+ margin-top: 8px;
4465
+ margin-bottom: 8px;
4466
+ }
4467
+ .navbar-btn.btn-sm {
4468
+ margin-top: 10px;
4469
+ margin-bottom: 10px;
4470
+ }
4471
+ .navbar-btn.btn-xs {
4472
+ margin-top: 14px;
4473
+ margin-bottom: 14px;
4474
+ }
4475
+ .navbar-text {
4476
+ margin-top: 15px;
4477
+ margin-bottom: 15px;
4478
+ }
4479
+ @media (min-width: 768px) {
4480
+ .navbar-text {
4481
+ float: left;
4482
+ margin-right: 15px;
4483
+ margin-left: 15px;
4484
+ }
4485
+ }
4486
+ @media (min-width: 768px) {
4487
+ .navbar-left {
4488
+ float: left !important;
4489
+ }
4490
+ .navbar-right {
4491
+ float: right !important;
4492
+ margin-right: -15px;
4493
+ }
4494
+ .navbar-right ~ .navbar-right {
4495
+ margin-right: 0;
4496
+ }
4497
+ }
4498
+ .navbar-default {
4499
+ background-color: #f8f8f8;
4500
+ border-color: #e7e7e7;
4501
+ }
4502
+ .navbar-default .navbar-brand {
4503
+ color: #777;
4504
+ }
4505
+ .navbar-default .navbar-brand:hover,
4506
+ .navbar-default .navbar-brand:focus {
4507
+ color: #5e5e5e;
4508
+ background-color: transparent;
4509
+ }
4510
+ .navbar-default .navbar-text {
4511
+ color: #777;
4512
+ }
4513
+ .navbar-default .navbar-nav > li > a {
4514
+ color: #777;
4515
+ }
4516
+ .navbar-default .navbar-nav > li > a:hover,
4517
+ .navbar-default .navbar-nav > li > a:focus {
4518
+ color: #333;
4519
+ background-color: transparent;
4520
+ }
4521
+ .navbar-default .navbar-nav > .active > a,
4522
+ .navbar-default .navbar-nav > .active > a:hover,
4523
+ .navbar-default .navbar-nav > .active > a:focus {
4524
+ color: #555;
4525
+ background-color: #e7e7e7;
4526
+ }
4527
+ .navbar-default .navbar-nav > .disabled > a,
4528
+ .navbar-default .navbar-nav > .disabled > a:hover,
4529
+ .navbar-default .navbar-nav > .disabled > a:focus {
4530
+ color: #ccc;
4531
+ background-color: transparent;
4532
+ }
4533
+ .navbar-default .navbar-toggle {
4534
+ border-color: #ddd;
4535
+ }
4536
+ .navbar-default .navbar-toggle:hover,
4537
+ .navbar-default .navbar-toggle:focus {
4538
+ background-color: #ddd;
4539
+ }
4540
+ .navbar-default .navbar-toggle .icon-bar {
4541
+ background-color: #888;
4542
+ }
4543
+ .navbar-default .navbar-collapse,
4544
+ .navbar-default .navbar-form {
4545
+ border-color: #e7e7e7;
4546
+ }
4547
+ .navbar-default .navbar-nav > .open > a,
4548
+ .navbar-default .navbar-nav > .open > a:hover,
4549
+ .navbar-default .navbar-nav > .open > a:focus {
4550
+ color: #555;
4551
+ background-color: #e7e7e7;
4552
+ }
4553
+ @media (max-width: 767px) {
4554
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a {
4555
+ color: #777;
4556
+ }
4557
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
4558
+ .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
4559
+ color: #333;
4560
+ background-color: transparent;
4561
+ }
4562
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
4563
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
4564
+ .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
4565
+ color: #555;
4566
+ background-color: #e7e7e7;
4567
+ }
4568
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
4569
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4570
+ .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4571
+ color: #ccc;
4572
+ background-color: transparent;
4573
+ }
4574
+ }
4575
+ .navbar-default .navbar-link {
4576
+ color: #777;
4577
+ }
4578
+ .navbar-default .navbar-link:hover {
4579
+ color: #333;
4580
+ }
4581
+ .navbar-default .btn-link {
4582
+ color: #777;
4583
+ }
4584
+ .navbar-default .btn-link:hover,
4585
+ .navbar-default .btn-link:focus {
4586
+ color: #333;
4587
+ }
4588
+ .navbar-default .btn-link[disabled]:hover,
4589
+ fieldset[disabled] .navbar-default .btn-link:hover,
4590
+ .navbar-default .btn-link[disabled]:focus,
4591
+ fieldset[disabled] .navbar-default .btn-link:focus {
4592
+ color: #ccc;
4593
+ }
4594
+ .navbar-inverse {
4595
+ background-color: #222;
4596
+ border-color: #080808;
4597
+ }
4598
+ .navbar-inverse .navbar-brand {
4599
+ color: #9d9d9d;
4600
+ }
4601
+ .navbar-inverse .navbar-brand:hover,
4602
+ .navbar-inverse .navbar-brand:focus {
4603
+ color: #fff;
4604
+ background-color: transparent;
4605
+ }
4606
+ .navbar-inverse .navbar-text {
4607
+ color: #9d9d9d;
4608
+ }
4609
+ .navbar-inverse .navbar-nav > li > a {
4610
+ color: #9d9d9d;
4611
+ }
4612
+ .navbar-inverse .navbar-nav > li > a:hover,
4613
+ .navbar-inverse .navbar-nav > li > a:focus {
4614
+ color: #fff;
4615
+ background-color: transparent;
4616
+ }
4617
+ .navbar-inverse .navbar-nav > .active > a,
4618
+ .navbar-inverse .navbar-nav > .active > a:hover,
4619
+ .navbar-inverse .navbar-nav > .active > a:focus {
4620
+ color: #fff;
4621
+ background-color: #080808;
4622
+ }
4623
+ .navbar-inverse .navbar-nav > .disabled > a,
4624
+ .navbar-inverse .navbar-nav > .disabled > a:hover,
4625
+ .navbar-inverse .navbar-nav > .disabled > a:focus {
4626
+ color: #444;
4627
+ background-color: transparent;
4628
+ }
4629
+ .navbar-inverse .navbar-toggle {
4630
+ border-color: #333;
4631
+ }
4632
+ .navbar-inverse .navbar-toggle:hover,
4633
+ .navbar-inverse .navbar-toggle:focus {
4634
+ background-color: #333;
4635
+ }
4636
+ .navbar-inverse .navbar-toggle .icon-bar {
4637
+ background-color: #fff;
4638
+ }
4639
+ .navbar-inverse .navbar-collapse,
4640
+ .navbar-inverse .navbar-form {
4641
+ border-color: #101010;
4642
+ }
4643
+ .navbar-inverse .navbar-nav > .open > a,
4644
+ .navbar-inverse .navbar-nav > .open > a:hover,
4645
+ .navbar-inverse .navbar-nav > .open > a:focus {
4646
+ color: #fff;
4647
+ background-color: #080808;
4648
+ }
4649
+ @media (max-width: 767px) {
4650
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
4651
+ border-color: #080808;
4652
+ }
4653
+ .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
4654
+ background-color: #080808;
4655
+ }
4656
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
4657
+ color: #9d9d9d;
4658
+ }
4659
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
4660
+ .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
4661
+ color: #fff;
4662
+ background-color: transparent;
4663
+ }
4664
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
4665
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
4666
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
4667
+ color: #fff;
4668
+ background-color: #080808;
4669
+ }
4670
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
4671
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
4672
+ .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
4673
+ color: #444;
4674
+ background-color: transparent;
4675
+ }
4676
+ }
4677
+ .navbar-inverse .navbar-link {
4678
+ color: #9d9d9d;
4679
+ }
4680
+ .navbar-inverse .navbar-link:hover {
4681
+ color: #fff;
4682
+ }
4683
+ .navbar-inverse .btn-link {
4684
+ color: #9d9d9d;
4685
+ }
4686
+ .navbar-inverse .btn-link:hover,
4687
+ .navbar-inverse .btn-link:focus {
4688
+ color: #fff;
4689
+ }
4690
+ .navbar-inverse .btn-link[disabled]:hover,
4691
+ fieldset[disabled] .navbar-inverse .btn-link:hover,
4692
+ .navbar-inverse .btn-link[disabled]:focus,
4693
+ fieldset[disabled] .navbar-inverse .btn-link:focus {
4694
+ color: #444;
4695
+ }
4696
+ .breadcrumb {
4697
+ padding: 8px 15px;
4698
+ margin-bottom: 20px;
4699
+ list-style: none;
4700
+ background-color: #f5f5f5;
4701
+ border-radius: 4px;
4702
+ }
4703
+ .breadcrumb > li {
4704
+ display: inline-block;
4705
+ }
4706
+ .breadcrumb > li + li:before {
4707
+ padding: 0 5px;
4708
+ color: #ccc;
4709
+ content: "/\00a0";
4710
+ }
4711
+ .breadcrumb > .active {
4712
+ color: #777;
4713
+ }
4714
+ .pagination {
4715
+ display: inline-block;
4716
+ padding-left: 0;
4717
+ margin: 20px 0;
4718
+ border-radius: 4px;
4719
+ }
4720
+ .pagination > li {
4721
+ display: inline;
4722
+ }
4723
+ .pagination > li > a,
4724
+ .pagination > li > span {
4725
+ position: relative;
4726
+ float: left;
4727
+ padding: 6px 12px;
4728
+ margin-left: -1px;
4729
+ line-height: 1.42857143;
4730
+ color: #337ab7;
4731
+ text-decoration: none;
4732
+ background-color: #fff;
4733
+ border: 1px solid #ddd;
4734
+ }
4735
+ .pagination > li:first-child > a,
4736
+ .pagination > li:first-child > span {
4737
+ margin-left: 0;
4738
+ border-top-left-radius: 4px;
4739
+ border-bottom-left-radius: 4px;
4740
+ }
4741
+ .pagination > li:last-child > a,
4742
+ .pagination > li:last-child > span {
4743
+ border-top-right-radius: 4px;
4744
+ border-bottom-right-radius: 4px;
4745
+ }
4746
+ .pagination > li > a:hover,
4747
+ .pagination > li > span:hover,
4748
+ .pagination > li > a:focus,
4749
+ .pagination > li > span:focus {
4750
+ z-index: 2;
4751
+ color: #23527c;
4752
+ background-color: #eee;
4753
+ border-color: #ddd;
4754
+ }
4755
+ .pagination > .active > a,
4756
+ .pagination > .active > span,
4757
+ .pagination > .active > a:hover,
4758
+ .pagination > .active > span:hover,
4759
+ .pagination > .active > a:focus,
4760
+ .pagination > .active > span:focus {
4761
+ z-index: 3;
4762
+ color: #fff;
4763
+ cursor: default;
4764
+ background-color: #337ab7;
4765
+ border-color: #337ab7;
4766
+ }
4767
+ .pagination > .disabled > span,
4768
+ .pagination > .disabled > span:hover,
4769
+ .pagination > .disabled > span:focus,
4770
+ .pagination > .disabled > a,
4771
+ .pagination > .disabled > a:hover,
4772
+ .pagination > .disabled > a:focus {
4773
+ color: #777;
4774
+ cursor: not-allowed;
4775
+ background-color: #fff;
4776
+ border-color: #ddd;
4777
+ }
4778
+ .pagination-lg > li > a,
4779
+ .pagination-lg > li > span {
4780
+ padding: 10px 16px;
4781
+ font-size: 18px;
4782
+ line-height: 1.3333333;
4783
+ }
4784
+ .pagination-lg > li:first-child > a,
4785
+ .pagination-lg > li:first-child > span {
4786
+ border-top-left-radius: 6px;
4787
+ border-bottom-left-radius: 6px;
4788
+ }
4789
+ .pagination-lg > li:last-child > a,
4790
+ .pagination-lg > li:last-child > span {
4791
+ border-top-right-radius: 6px;
4792
+ border-bottom-right-radius: 6px;
4793
+ }
4794
+ .pagination-sm > li > a,
4795
+ .pagination-sm > li > span {
4796
+ padding: 5px 10px;
4797
+ font-size: 12px;
4798
+ line-height: 1.5;
4799
+ }
4800
+ .pagination-sm > li:first-child > a,
4801
+ .pagination-sm > li:first-child > span {
4802
+ border-top-left-radius: 3px;
4803
+ border-bottom-left-radius: 3px;
4804
+ }
4805
+ .pagination-sm > li:last-child > a,
4806
+ .pagination-sm > li:last-child > span {
4807
+ border-top-right-radius: 3px;
4808
+ border-bottom-right-radius: 3px;
4809
+ }
4810
+ .pager {
4811
+ padding-left: 0;
4812
+ margin: 20px 0;
4813
+ text-align: center;
4814
+ list-style: none;
4815
+ }
4816
+ .pager li {
4817
+ display: inline;
4818
+ }
4819
+ .pager li > a,
4820
+ .pager li > span {
4821
+ display: inline-block;
4822
+ padding: 5px 14px;
4823
+ background-color: #fff;
4824
+ border: 1px solid #ddd;
4825
+ border-radius: 15px;
4826
+ }
4827
+ .pager li > a:hover,
4828
+ .pager li > a:focus {
4829
+ text-decoration: none;
4830
+ background-color: #eee;
4831
+ }
4832
+ .pager .next > a,
4833
+ .pager .next > span {
4834
+ float: right;
4835
+ }
4836
+ .pager .previous > a,
4837
+ .pager .previous > span {
4838
+ float: left;
4839
+ }
4840
+ .pager .disabled > a,
4841
+ .pager .disabled > a:hover,
4842
+ .pager .disabled > a:focus,
4843
+ .pager .disabled > span {
4844
+ color: #777;
4845
+ cursor: not-allowed;
4846
+ background-color: #fff;
4847
+ }
4848
+ .label {
4849
+ display: inline;
4850
+ padding: .2em .6em .3em;
4851
+ font-size: 75%;
4852
+ font-weight: bold;
4853
+ line-height: 1;
4854
+ color: #fff;
4855
+ text-align: center;
4856
+ white-space: nowrap;
4857
+ vertical-align: baseline;
4858
+ border-radius: .25em;
4859
+ }
4860
+ a.label:hover,
4861
+ a.label:focus {
4862
+ color: #fff;
4863
+ text-decoration: none;
4864
+ cursor: pointer;
4865
+ }
4866
+ .label:empty {
4867
+ display: none;
4868
+ }
4869
+ .btn .label {
4870
+ position: relative;
4871
+ top: -1px;
4872
+ }
4873
+ .label-default {
4874
+ background-color: #777;
4875
+ }
4876
+ .label-default[href]:hover,
4877
+ .label-default[href]:focus {
4878
+ background-color: #5e5e5e;
4879
+ }
4880
+ .label-primary {
4881
+ background-color: #337ab7;
4882
+ }
4883
+ .label-primary[href]:hover,
4884
+ .label-primary[href]:focus {
4885
+ background-color: #286090;
4886
+ }
4887
+ .label-success {
4888
+ background-color: #5cb85c;
4889
+ }
4890
+ .label-success[href]:hover,
4891
+ .label-success[href]:focus {
4892
+ background-color: #449d44;
4893
+ }
4894
+ .label-info {
4895
+ background-color: #5bc0de;
4896
+ }
4897
+ .label-info[href]:hover,
4898
+ .label-info[href]:focus {
4899
+ background-color: #31b0d5;
4900
+ }
4901
+ .label-warning {
4902
+ background-color: #f0ad4e;
4903
+ }
4904
+ .label-warning[href]:hover,
4905
+ .label-warning[href]:focus {
4906
+ background-color: #ec971f;
4907
+ }
4908
+ .label-danger {
4909
+ background-color: #d9534f;
4910
+ }
4911
+ .label-danger[href]:hover,
4912
+ .label-danger[href]:focus {
4913
+ background-color: #c9302c;
4914
+ }
4915
+ .badge {
4916
+ display: inline-block;
4917
+ min-width: 10px;
4918
+ padding: 3px 7px;
4919
+ font-size: 12px;
4920
+ font-weight: bold;
4921
+ line-height: 1;
4922
+ color: #fff;
4923
+ text-align: center;
4924
+ white-space: nowrap;
4925
+ vertical-align: middle;
4926
+ background-color: #777;
4927
+ border-radius: 10px;
4928
+ }
4929
+ .badge:empty {
4930
+ display: none;
4931
+ }
4932
+ .btn .badge {
4933
+ position: relative;
4934
+ top: -1px;
4935
+ }
4936
+ .btn-xs .badge,
4937
+ .btn-group-xs > .btn .badge {
4938
+ top: 0;
4939
+ padding: 1px 5px;
4940
+ }
4941
+ a.badge:hover,
4942
+ a.badge:focus {
4943
+ color: #fff;
4944
+ text-decoration: none;
4945
+ cursor: pointer;
4946
+ }
4947
+ .list-group-item.active > .badge,
4948
+ .nav-pills > .active > a > .badge {
4949
+ color: #337ab7;
4950
+ background-color: #fff;
4951
+ }
4952
+ .list-group-item > .badge {
4953
+ float: right;
4954
+ }
4955
+ .list-group-item > .badge + .badge {
4956
+ margin-right: 5px;
4957
+ }
4958
+ .nav-pills > li > a > .badge {
4959
+ margin-left: 3px;
4960
+ }
4961
+ .jumbotron {
4962
+ padding-top: 30px;
4963
+ padding-bottom: 30px;
4964
+ margin-bottom: 30px;
4965
+ color: inherit;
4966
+ background-color: #eee;
4967
+ }
4968
+ .jumbotron h1,
4969
+ .jumbotron .h1 {
4970
+ color: inherit;
4971
+ }
4972
+ .jumbotron p {
4973
+ margin-bottom: 15px;
4974
+ font-size: 21px;
4975
+ font-weight: 200;
4976
+ }
4977
+ .jumbotron > hr {
4978
+ border-top-color: #d5d5d5;
4979
+ }
4980
+ .container .jumbotron,
4981
+ .container-fluid .jumbotron {
4982
+ padding-right: 15px;
4983
+ padding-left: 15px;
4984
+ border-radius: 6px;
4985
+ }
4986
+ .jumbotron .container {
4987
+ max-width: 100%;
4988
+ }
4989
+ @media screen and (min-width: 768px) {
4990
+ .jumbotron {
4991
+ padding-top: 48px;
4992
+ padding-bottom: 48px;
4993
+ }
4994
+ .container .jumbotron,
4995
+ .container-fluid .jumbotron {
4996
+ padding-right: 60px;
4997
+ padding-left: 60px;
4998
+ }
4999
+ .jumbotron h1,
5000
+ .jumbotron .h1 {
5001
+ font-size: 63px;
5002
+ }
5003
+ }
5004
+ .thumbnail {
5005
+ display: block;
5006
+ padding: 4px;
5007
+ margin-bottom: 20px;
5008
+ line-height: 1.42857143;
5009
+ background-color: #fff;
5010
+ border: 1px solid #ddd;
5011
+ border-radius: 4px;
5012
+ -webkit-transition: border .2s ease-in-out;
5013
+ -o-transition: border .2s ease-in-out;
5014
+ transition: border .2s ease-in-out;
5015
+ }
5016
+ .thumbnail > img,
5017
+ .thumbnail a > img {
5018
+ margin-right: auto;
5019
+ margin-left: auto;
5020
+ }
5021
+ a.thumbnail:hover,
5022
+ a.thumbnail:focus,
5023
+ a.thumbnail.active {
5024
+ border-color: #337ab7;
5025
+ }
5026
+ .thumbnail .caption {
5027
+ padding: 9px;
5028
+ color: #333;
5029
+ }
5030
+ .alert {
5031
+ padding: 15px;
5032
+ margin-bottom: 20px;
5033
+ border: 1px solid transparent;
5034
+ border-radius: 4px;
5035
+ }
5036
+ .alert h4 {
5037
+ margin-top: 0;
5038
+ color: inherit;
5039
+ }
5040
+ .alert .alert-link {
5041
+ font-weight: bold;
5042
+ }
5043
+ .alert > p,
5044
+ .alert > ul {
5045
+ margin-bottom: 0;
5046
+ }
5047
+ .alert > p + p {
5048
+ margin-top: 5px;
5049
+ }
5050
+ .alert-dismissable,
5051
+ .alert-dismissible {
5052
+ padding-right: 35px;
5053
+ }
5054
+ .alert-dismissable .close,
5055
+ .alert-dismissible .close {
5056
+ position: relative;
5057
+ top: -2px;
5058
+ right: -21px;
5059
+ color: inherit;
5060
+ }
5061
+ .alert-success {
5062
+ color: #3c763d;
5063
+ background-color: #dff0d8;
5064
+ border-color: #d6e9c6;
5065
+ }
5066
+ .alert-success hr {
5067
+ border-top-color: #c9e2b3;
5068
+ }
5069
+ .alert-success .alert-link {
5070
+ color: #2b542c;
5071
+ }
5072
+ .alert-info {
5073
+ color: #31708f;
5074
+ background-color: #d9edf7;
5075
+ border-color: #bce8f1;
5076
+ }
5077
+ .alert-info hr {
5078
+ border-top-color: #a6e1ec;
5079
+ }
5080
+ .alert-info .alert-link {
5081
+ color: #245269;
5082
+ }
5083
+ .alert-warning {
5084
+ color: #8a6d3b;
5085
+ background-color: #fcf8e3;
5086
+ border-color: #faebcc;
5087
+ }
5088
+ .alert-warning hr {
5089
+ border-top-color: #f7e1b5;
5090
+ }
5091
+ .alert-warning .alert-link {
5092
+ color: #66512c;
5093
+ }
5094
+ .alert-danger {
5095
+ color: #a94442;
5096
+ background-color: #f2dede;
5097
+ border-color: #ebccd1;
5098
+ }
5099
+ .alert-danger hr {
5100
+ border-top-color: #e4b9c0;
5101
+ }
5102
+ .alert-danger .alert-link {
5103
+ color: #843534;
5104
+ }
5105
+ @-webkit-keyframes progress-bar-stripes {
5106
+ from {
5107
+ background-position: 40px 0;
5108
+ }
5109
+ to {
5110
+ background-position: 0 0;
5111
+ }
5112
+ }
5113
+ @-o-keyframes progress-bar-stripes {
5114
+ from {
5115
+ background-position: 40px 0;
5116
+ }
5117
+ to {
5118
+ background-position: 0 0;
5119
+ }
5120
+ }
5121
+ @keyframes progress-bar-stripes {
5122
+ from {
5123
+ background-position: 40px 0;
5124
+ }
5125
+ to {
5126
+ background-position: 0 0;
5127
+ }
5128
+ }
5129
+ .progress {
5130
+ height: 20px;
5131
+ margin-bottom: 20px;
5132
+ overflow: hidden;
5133
+ background-color: #f5f5f5;
5134
+ border-radius: 4px;
5135
+ -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
5136
+ box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
5137
+ }
5138
+ .progress-bar {
5139
+ float: left;
5140
+ width: 0;
5141
+ height: 100%;
5142
+ font-size: 12px;
5143
+ line-height: 20px;
5144
+ color: #fff;
5145
+ text-align: center;
5146
+ background-color: #337ab7;
5147
+ -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
5148
+ box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
5149
+ -webkit-transition: width .6s ease;
5150
+ -o-transition: width .6s ease;
5151
+ transition: width .6s ease;
5152
+ }
5153
+ .progress-striped .progress-bar,
5154
+ .progress-bar-striped {
5155
+ 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);
5156
+ 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);
5157
+ 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);
5158
+ -webkit-background-size: 40px 40px;
5159
+ background-size: 40px 40px;
5160
+ }
5161
+ .progress.active .progress-bar,
5162
+ .progress-bar.active {
5163
+ -webkit-animation: progress-bar-stripes 2s linear infinite;
5164
+ -o-animation: progress-bar-stripes 2s linear infinite;
5165
+ animation: progress-bar-stripes 2s linear infinite;
5166
+ }
5167
+ .progress-bar-success {
5168
+ background-color: #5cb85c;
5169
+ }
5170
+ .progress-striped .progress-bar-success {
5171
+ 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);
5172
+ 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);
5173
+ 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);
5174
+ }
5175
+ .progress-bar-info {
5176
+ background-color: #5bc0de;
5177
+ }
5178
+ .progress-striped .progress-bar-info {
5179
+ 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);
5180
+ 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);
5181
+ 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);
5182
+ }
5183
+ .progress-bar-warning {
5184
+ background-color: #f0ad4e;
5185
+ }
5186
+ .progress-striped .progress-bar-warning {
5187
+ 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);
5188
+ 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);
5189
+ 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);
5190
+ }
5191
+ .progress-bar-danger {
5192
+ background-color: #d9534f;
5193
+ }
5194
+ .progress-striped .progress-bar-danger {
5195
+ 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);
5196
+ 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);
5197
+ 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);
5198
+ }
5199
+ .media {
5200
+ margin-top: 15px;
5201
+ }
5202
+ .media:first-child {
5203
+ margin-top: 0;
5204
+ }
5205
+ .media,
5206
+ .media-body {
5207
+ overflow: hidden;
5208
+ zoom: 1;
5209
+ }
5210
+ .media-body {
5211
+ width: 10000px;
5212
+ }
5213
+ .media-object {
5214
+ display: block;
5215
+ }
5216
+ .media-object.img-thumbnail {
5217
+ max-width: none;
5218
+ }
5219
+ .media-right,
5220
+ .media > .pull-right {
5221
+ padding-left: 10px;
5222
+ }
5223
+ .media-left,
5224
+ .media > .pull-left {
5225
+ padding-right: 10px;
5226
+ }
5227
+ .media-left,
5228
+ .media-right,
5229
+ .media-body {
5230
+ display: table-cell;
5231
+ vertical-align: top;
5232
+ }
5233
+ .media-middle {
5234
+ vertical-align: middle;
5235
+ }
5236
+ .media-bottom {
5237
+ vertical-align: bottom;
5238
+ }
5239
+ .media-heading {
5240
+ margin-top: 0;
5241
+ margin-bottom: 5px;
5242
+ }
5243
+ .media-list {
5244
+ padding-left: 0;
5245
+ list-style: none;
5246
+ }
5247
+ .list-group {
5248
+ padding-left: 0;
5249
+ margin-bottom: 20px;
5250
+ }
5251
+ .list-group-item {
5252
+ position: relative;
5253
+ display: block;
5254
+ padding: 10px 15px;
5255
+ margin-bottom: -1px;
5256
+ background-color: #fff;
5257
+ border: 1px solid #ddd;
5258
+ }
5259
+ .list-group-item:first-child {
5260
+ border-top-left-radius: 4px;
5261
+ border-top-right-radius: 4px;
5262
+ }
5263
+ .list-group-item:last-child {
5264
+ margin-bottom: 0;
5265
+ border-bottom-right-radius: 4px;
5266
+ border-bottom-left-radius: 4px;
5267
+ }
5268
+ a.list-group-item,
5269
+ button.list-group-item {
5270
+ color: #555;
5271
+ }
5272
+ a.list-group-item .list-group-item-heading,
5273
+ button.list-group-item .list-group-item-heading {
5274
+ color: #333;
5275
+ }
5276
+ a.list-group-item:hover,
5277
+ button.list-group-item:hover,
5278
+ a.list-group-item:focus,
5279
+ button.list-group-item:focus {
5280
+ color: #555;
5281
+ text-decoration: none;
5282
+ background-color: #f5f5f5;
5283
+ }
5284
+ button.list-group-item {
5285
+ width: 100%;
5286
+ text-align: left;
5287
+ }
5288
+ .list-group-item.disabled,
5289
+ .list-group-item.disabled:hover,
5290
+ .list-group-item.disabled:focus {
5291
+ color: #777;
5292
+ cursor: not-allowed;
5293
+ background-color: #eee;
5294
+ }
5295
+ .list-group-item.disabled .list-group-item-heading,
5296
+ .list-group-item.disabled:hover .list-group-item-heading,
5297
+ .list-group-item.disabled:focus .list-group-item-heading {
5298
+ color: inherit;
5299
+ }
5300
+ .list-group-item.disabled .list-group-item-text,
5301
+ .list-group-item.disabled:hover .list-group-item-text,
5302
+ .list-group-item.disabled:focus .list-group-item-text {
5303
+ color: #777;
5304
+ }
5305
+ .list-group-item.active,
5306
+ .list-group-item.active:hover,
5307
+ .list-group-item.active:focus {
5308
+ z-index: 2;
5309
+ color: #fff;
5310
+ background-color: #337ab7;
5311
+ border-color: #337ab7;
5312
+ }
5313
+ .list-group-item.active .list-group-item-heading,
5314
+ .list-group-item.active:hover .list-group-item-heading,
5315
+ .list-group-item.active:focus .list-group-item-heading,
5316
+ .list-group-item.active .list-group-item-heading > small,
5317
+ .list-group-item.active:hover .list-group-item-heading > small,
5318
+ .list-group-item.active:focus .list-group-item-heading > small,
5319
+ .list-group-item.active .list-group-item-heading > .small,
5320
+ .list-group-item.active:hover .list-group-item-heading > .small,
5321
+ .list-group-item.active:focus .list-group-item-heading > .small {
5322
+ color: inherit;
5323
+ }
5324
+ .list-group-item.active .list-group-item-text,
5325
+ .list-group-item.active:hover .list-group-item-text,
5326
+ .list-group-item.active:focus .list-group-item-text {
5327
+ color: #c7ddef;
5328
+ }
5329
+ .list-group-item-success {
5330
+ color: #3c763d;
5331
+ background-color: #dff0d8;
5332
+ }
5333
+ a.list-group-item-success,
5334
+ button.list-group-item-success {
5335
+ color: #3c763d;
5336
+ }
5337
+ a.list-group-item-success .list-group-item-heading,
5338
+ button.list-group-item-success .list-group-item-heading {
5339
+ color: inherit;
5340
+ }
5341
+ a.list-group-item-success:hover,
5342
+ button.list-group-item-success:hover,
5343
+ a.list-group-item-success:focus,
5344
+ button.list-group-item-success:focus {
5345
+ color: #3c763d;
5346
+ background-color: #d0e9c6;
5347
+ }
5348
+ a.list-group-item-success.active,
5349
+ button.list-group-item-success.active,
5350
+ a.list-group-item-success.active:hover,
5351
+ button.list-group-item-success.active:hover,
5352
+ a.list-group-item-success.active:focus,
5353
+ button.list-group-item-success.active:focus {
5354
+ color: #fff;
5355
+ background-color: #3c763d;
5356
+ border-color: #3c763d;
5357
+ }
5358
+ .list-group-item-info {
5359
+ color: #31708f;
5360
+ background-color: #d9edf7;
5361
+ }
5362
+ a.list-group-item-info,
5363
+ button.list-group-item-info {
5364
+ color: #31708f;
5365
+ }
5366
+ a.list-group-item-info .list-group-item-heading,
5367
+ button.list-group-item-info .list-group-item-heading {
5368
+ color: inherit;
5369
+ }
5370
+ a.list-group-item-info:hover,
5371
+ button.list-group-item-info:hover,
5372
+ a.list-group-item-info:focus,
5373
+ button.list-group-item-info:focus {
5374
+ color: #31708f;
5375
+ background-color: #c4e3f3;
5376
+ }
5377
+ a.list-group-item-info.active,
5378
+ button.list-group-item-info.active,
5379
+ a.list-group-item-info.active:hover,
5380
+ button.list-group-item-info.active:hover,
5381
+ a.list-group-item-info.active:focus,
5382
+ button.list-group-item-info.active:focus {
5383
+ color: #fff;
5384
+ background-color: #31708f;
5385
+ border-color: #31708f;
5386
+ }
5387
+ .list-group-item-warning {
5388
+ color: #8a6d3b;
5389
+ background-color: #fcf8e3;
5390
+ }
5391
+ a.list-group-item-warning,
5392
+ button.list-group-item-warning {
5393
+ color: #8a6d3b;
5394
+ }
5395
+ a.list-group-item-warning .list-group-item-heading,
5396
+ button.list-group-item-warning .list-group-item-heading {
5397
+ color: inherit;
5398
+ }
5399
+ a.list-group-item-warning:hover,
5400
+ button.list-group-item-warning:hover,
5401
+ a.list-group-item-warning:focus,
5402
+ button.list-group-item-warning:focus {
5403
+ color: #8a6d3b;
5404
+ background-color: #faf2cc;
5405
+ }
5406
+ a.list-group-item-warning.active,
5407
+ button.list-group-item-warning.active,
5408
+ a.list-group-item-warning.active:hover,
5409
+ button.list-group-item-warning.active:hover,
5410
+ a.list-group-item-warning.active:focus,
5411
+ button.list-group-item-warning.active:focus {
5412
+ color: #fff;
5413
+ background-color: #8a6d3b;
5414
+ border-color: #8a6d3b;
5415
+ }
5416
+ .list-group-item-danger {
5417
+ color: #a94442;
5418
+ background-color: #f2dede;
5419
+ }
5420
+ a.list-group-item-danger,
5421
+ button.list-group-item-danger {
5422
+ color: #a94442;
5423
+ }
5424
+ a.list-group-item-danger .list-group-item-heading,
5425
+ button.list-group-item-danger .list-group-item-heading {
5426
+ color: inherit;
5427
+ }
5428
+ a.list-group-item-danger:hover,
5429
+ button.list-group-item-danger:hover,
5430
+ a.list-group-item-danger:focus,
5431
+ button.list-group-item-danger:focus {
5432
+ color: #a94442;
5433
+ background-color: #ebcccc;
5434
+ }
5435
+ a.list-group-item-danger.active,
5436
+ button.list-group-item-danger.active,
5437
+ a.list-group-item-danger.active:hover,
5438
+ button.list-group-item-danger.active:hover,
5439
+ a.list-group-item-danger.active:focus,
5440
+ button.list-group-item-danger.active:focus {
5441
+ color: #fff;
5442
+ background-color: #a94442;
5443
+ border-color: #a94442;
5444
+ }
5445
+ .list-group-item-heading {
5446
+ margin-top: 0;
5447
+ margin-bottom: 5px;
5448
+ }
5449
+ .list-group-item-text {
5450
+ margin-bottom: 0;
5451
+ line-height: 1.3;
5452
+ }
5453
+ .panel {
5454
+ margin-bottom: 20px;
5455
+ background-color: #fff;
5456
+ border: 1px solid transparent;
5457
+ border-radius: 4px;
5458
+ -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5459
+ box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
5460
+ }
5461
+ .panel-body {
5462
+ padding: 15px;
5463
+ }
5464
+ .panel-heading {
5465
+ padding: 10px 15px;
5466
+ border-bottom: 1px solid transparent;
5467
+ border-top-left-radius: 3px;
5468
+ border-top-right-radius: 3px;
5469
+ }
5470
+ .panel-heading > .dropdown .dropdown-toggle {
5471
+ color: inherit;
5472
+ }
5473
+ .panel-title {
5474
+ margin-top: 0;
5475
+ margin-bottom: 0;
5476
+ font-size: 16px;
5477
+ color: inherit;
5478
+ }
5479
+ .panel-title > a,
5480
+ .panel-title > small,
5481
+ .panel-title > .small,
5482
+ .panel-title > small > a,
5483
+ .panel-title > .small > a {
5484
+ color: inherit;
5485
+ }
5486
+ .panel-footer {
5487
+ padding: 10px 15px;
5488
+ background-color: #f5f5f5;
5489
+ border-top: 1px solid #ddd;
5490
+ border-bottom-right-radius: 3px;
5491
+ border-bottom-left-radius: 3px;
5492
+ }
5493
+ .panel > .list-group,
5494
+ .panel > .panel-collapse > .list-group {
5495
+ margin-bottom: 0;
5496
+ }
5497
+ .panel > .list-group .list-group-item,
5498
+ .panel > .panel-collapse > .list-group .list-group-item {
5499
+ border-width: 1px 0;
5500
+ border-radius: 0;
5501
+ }
5502
+ .panel > .list-group:first-child .list-group-item:first-child,
5503
+ .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
5504
+ border-top: 0;
5505
+ border-top-left-radius: 3px;
5506
+ border-top-right-radius: 3px;
5507
+ }
5508
+ .panel > .list-group:last-child .list-group-item:last-child,
5509
+ .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
5510
+ border-bottom: 0;
5511
+ border-bottom-right-radius: 3px;
5512
+ border-bottom-left-radius: 3px;
5513
+ }
5514
+ .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
5515
+ border-top-left-radius: 0;
5516
+ border-top-right-radius: 0;
5517
+ }
5518
+ .panel-heading + .list-group .list-group-item:first-child {
5519
+ border-top-width: 0;
5520
+ }
5521
+ .list-group + .panel-footer {
5522
+ border-top-width: 0;
5523
+ }
5524
+ .panel > .table,
5525
+ .panel > .table-responsive > .table,
5526
+ .panel > .panel-collapse > .table {
5527
+ margin-bottom: 0;
5528
+ }
5529
+ .panel > .table caption,
5530
+ .panel > .table-responsive > .table caption,
5531
+ .panel > .panel-collapse > .table caption {
5532
+ padding-right: 15px;
5533
+ padding-left: 15px;
5534
+ }
5535
+ .panel > .table:first-child,
5536
+ .panel > .table-responsive:first-child > .table:first-child {
5537
+ border-top-left-radius: 3px;
5538
+ border-top-right-radius: 3px;
5539
+ }
5540
+ .panel > .table:first-child > thead:first-child > tr:first-child,
5541
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
5542
+ .panel > .table:first-child > tbody:first-child > tr:first-child,
5543
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
5544
+ border-top-left-radius: 3px;
5545
+ border-top-right-radius: 3px;
5546
+ }
5547
+ .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
5548
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
5549
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5550
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
5551
+ .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
5552
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
5553
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
5554
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
5555
+ border-top-left-radius: 3px;
5556
+ }
5557
+ .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
5558
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
5559
+ .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5560
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
5561
+ .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
5562
+ .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
5563
+ .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
5564
+ .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
5565
+ border-top-right-radius: 3px;
5566
+ }
5567
+ .panel > .table:last-child,
5568
+ .panel > .table-responsive:last-child > .table:last-child {
5569
+ border-bottom-right-radius: 3px;
5570
+ border-bottom-left-radius: 3px;
5571
+ }
5572
+ .panel > .table:last-child > tbody:last-child > tr:last-child,
5573
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
5574
+ .panel > .table:last-child > tfoot:last-child > tr:last-child,
5575
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
5576
+ border-bottom-right-radius: 3px;
5577
+ border-bottom-left-radius: 3px;
5578
+ }
5579
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5580
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
5581
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5582
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
5583
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5584
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
5585
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
5586
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
5587
+ border-bottom-left-radius: 3px;
5588
+ }
5589
+ .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5590
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
5591
+ .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5592
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
5593
+ .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5594
+ .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
5595
+ .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
5596
+ .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
5597
+ border-bottom-right-radius: 3px;
5598
+ }
5599
+ .panel > .panel-body + .table,
5600
+ .panel > .panel-body + .table-responsive,
5601
+ .panel > .table + .panel-body,
5602
+ .panel > .table-responsive + .panel-body {
5603
+ border-top: 1px solid #ddd;
5604
+ }
5605
+ .panel > .table > tbody:first-child > tr:first-child th,
5606
+ .panel > .table > tbody:first-child > tr:first-child td {
5607
+ border-top: 0;
5608
+ }
5609
+ .panel > .table-bordered,
5610
+ .panel > .table-responsive > .table-bordered {
5611
+ border: 0;
5612
+ }
5613
+ .panel > .table-bordered > thead > tr > th:first-child,
5614
+ .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
5615
+ .panel > .table-bordered > tbody > tr > th:first-child,
5616
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
5617
+ .panel > .table-bordered > tfoot > tr > th:first-child,
5618
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
5619
+ .panel > .table-bordered > thead > tr > td:first-child,
5620
+ .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
5621
+ .panel > .table-bordered > tbody > tr > td:first-child,
5622
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
5623
+ .panel > .table-bordered > tfoot > tr > td:first-child,
5624
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
5625
+ border-left: 0;
5626
+ }
5627
+ .panel > .table-bordered > thead > tr > th:last-child,
5628
+ .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
5629
+ .panel > .table-bordered > tbody > tr > th:last-child,
5630
+ .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
5631
+ .panel > .table-bordered > tfoot > tr > th:last-child,
5632
+ .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
5633
+ .panel > .table-bordered > thead > tr > td:last-child,
5634
+ .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
5635
+ .panel > .table-bordered > tbody > tr > td:last-child,
5636
+ .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
5637
+ .panel > .table-bordered > tfoot > tr > td:last-child,
5638
+ .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
5639
+ border-right: 0;
5640
+ }
5641
+ .panel > .table-bordered > thead > tr:first-child > td,
5642
+ .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
5643
+ .panel > .table-bordered > tbody > tr:first-child > td,
5644
+ .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
5645
+ .panel > .table-bordered > thead > tr:first-child > th,
5646
+ .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
5647
+ .panel > .table-bordered > tbody > tr:first-child > th,
5648
+ .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
5649
+ border-bottom: 0;
5650
+ }
5651
+ .panel > .table-bordered > tbody > tr:last-child > td,
5652
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
5653
+ .panel > .table-bordered > tfoot > tr:last-child > td,
5654
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
5655
+ .panel > .table-bordered > tbody > tr:last-child > th,
5656
+ .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
5657
+ .panel > .table-bordered > tfoot > tr:last-child > th,
5658
+ .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
5659
+ border-bottom: 0;
5660
+ }
5661
+ .panel > .table-responsive {
5662
+ margin-bottom: 0;
5663
+ border: 0;
5664
+ }
5665
+ .panel-group {
5666
+ margin-bottom: 20px;
5667
+ }
5668
+ .panel-group .panel {
5669
+ margin-bottom: 0;
5670
+ border-radius: 4px;
5671
+ }
5672
+ .panel-group .panel + .panel {
5673
+ margin-top: 5px;
5674
+ }
5675
+ .panel-group .panel-heading {
5676
+ border-bottom: 0;
5677
+ }
5678
+ .panel-group .panel-heading + .panel-collapse > .panel-body,
5679
+ .panel-group .panel-heading + .panel-collapse > .list-group {
5680
+ border-top: 1px solid #ddd;
5681
+ }
5682
+ .panel-group .panel-footer {
5683
+ border-top: 0;
5684
+ }
5685
+ .panel-group .panel-footer + .panel-collapse .panel-body {
5686
+ border-bottom: 1px solid #ddd;
5687
+ }
5688
+ .panel-default {
5689
+ border-color: #ddd;
5690
+ }
5691
+ .panel-default > .panel-heading {
5692
+ color: #333;
5693
+ background-color: #f5f5f5;
5694
+ border-color: #ddd;
5695
+ }
5696
+ .panel-default > .panel-heading + .panel-collapse > .panel-body {
5697
+ border-top-color: #ddd;
5698
+ }
5699
+ .panel-default > .panel-heading .badge {
5700
+ color: #f5f5f5;
5701
+ background-color: #333;
5702
+ }
5703
+ .panel-default > .panel-footer + .panel-collapse > .panel-body {
5704
+ border-bottom-color: #ddd;
5705
+ }
5706
+ .panel-primary {
5707
+ border-color: #337ab7;
5708
+ }
5709
+ .panel-primary > .panel-heading {
5710
+ color: #fff;
5711
+ background-color: #337ab7;
5712
+ border-color: #337ab7;
5713
+ }
5714
+ .panel-primary > .panel-heading + .panel-collapse > .panel-body {
5715
+ border-top-color: #337ab7;
5716
+ }
5717
+ .panel-primary > .panel-heading .badge {
5718
+ color: #337ab7;
5719
+ background-color: #fff;
5720
+ }
5721
+ .panel-primary > .panel-footer + .panel-collapse > .panel-body {
5722
+ border-bottom-color: #337ab7;
5723
+ }
5724
+ .panel-success {
5725
+ border-color: #d6e9c6;
5726
+ }
5727
+ .panel-success > .panel-heading {
5728
+ color: #3c763d;
5729
+ background-color: #dff0d8;
5730
+ border-color: #d6e9c6;
5731
+ }
5732
+ .panel-success > .panel-heading + .panel-collapse > .panel-body {
5733
+ border-top-color: #d6e9c6;
5734
+ }
5735
+ .panel-success > .panel-heading .badge {
5736
+ color: #dff0d8;
5737
+ background-color: #3c763d;
5738
+ }
5739
+ .panel-success > .panel-footer + .panel-collapse > .panel-body {
5740
+ border-bottom-color: #d6e9c6;
5741
+ }
5742
+ .panel-info {
5743
+ border-color: #bce8f1;
5744
+ }
5745
+ .panel-info > .panel-heading {
5746
+ color: #31708f;
5747
+ background-color: #d9edf7;
5748
+ border-color: #bce8f1;
5749
+ }
5750
+ .panel-info > .panel-heading + .panel-collapse > .panel-body {
5751
+ border-top-color: #bce8f1;
5752
+ }
5753
+ .panel-info > .panel-heading .badge {
5754
+ color: #d9edf7;
5755
+ background-color: #31708f;
5756
+ }
5757
+ .panel-info > .panel-footer + .panel-collapse > .panel-body {
5758
+ border-bottom-color: #bce8f1;
5759
+ }
5760
+ .panel-warning {
5761
+ border-color: #faebcc;
5762
+ }
5763
+ .panel-warning > .panel-heading {
5764
+ color: #8a6d3b;
5765
+ background-color: #fcf8e3;
5766
+ border-color: #faebcc;
5767
+ }
5768
+ .panel-warning > .panel-heading + .panel-collapse > .panel-body {
5769
+ border-top-color: #faebcc;
5770
+ }
5771
+ .panel-warning > .panel-heading .badge {
5772
+ color: #fcf8e3;
5773
+ background-color: #8a6d3b;
5774
+ }
5775
+ .panel-warning > .panel-footer + .panel-collapse > .panel-body {
5776
+ border-bottom-color: #faebcc;
5777
+ }
5778
+ .panel-danger {
5779
+ border-color: #ebccd1;
5780
+ }
5781
+ .panel-danger > .panel-heading {
5782
+ color: #a94442;
5783
+ background-color: #f2dede;
5784
+ border-color: #ebccd1;
5785
+ }
5786
+ .panel-danger > .panel-heading + .panel-collapse > .panel-body {
5787
+ border-top-color: #ebccd1;
5788
+ }
5789
+ .panel-danger > .panel-heading .badge {
5790
+ color: #f2dede;
5791
+ background-color: #a94442;
5792
+ }
5793
+ .panel-danger > .panel-footer + .panel-collapse > .panel-body {
5794
+ border-bottom-color: #ebccd1;
5795
+ }
5796
+ .embed-responsive {
5797
+ position: relative;
5798
+ display: block;
5799
+ height: 0;
5800
+ padding: 0;
5801
+ overflow: hidden;
5802
+ }
5803
+ .embed-responsive .embed-responsive-item,
5804
+ .embed-responsive iframe,
5805
+ .embed-responsive embed,
5806
+ .embed-responsive object,
5807
+ .embed-responsive video {
5808
+ position: absolute;
5809
+ top: 0;
5810
+ bottom: 0;
5811
+ left: 0;
5812
+ width: 100%;
5813
+ height: 100%;
5814
+ border: 0;
5815
+ }
5816
+ .embed-responsive-16by9 {
5817
+ padding-bottom: 56.25%;
5818
+ }
5819
+ .embed-responsive-4by3 {
5820
+ padding-bottom: 75%;
5821
+ }
5822
+ .well {
5823
+ min-height: 20px;
5824
+ padding: 19px;
5825
+ margin-bottom: 20px;
5826
+ background-color: #f5f5f5;
5827
+ border: 1px solid #e3e3e3;
5828
+ border-radius: 4px;
5829
+ -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5830
+ box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5831
+ }
5832
+ .well blockquote {
5833
+ border-color: #ddd;
5834
+ border-color: rgba(0, 0, 0, .15);
5835
+ }
5836
+ .well-lg {
5837
+ padding: 24px;
5838
+ border-radius: 6px;
5839
+ }
5840
+ .well-sm {
5841
+ padding: 9px;
5842
+ border-radius: 3px;
5843
+ }
5844
+ .close {
5845
+ float: right;
5846
+ font-size: 21px;
5847
+ font-weight: bold;
5848
+ line-height: 1;
5849
+ color: #000;
5850
+ text-shadow: 0 1px 0 #fff;
5851
+ filter: alpha(opacity=20);
5852
+ opacity: .2;
5853
+ }
5854
+ .close:hover,
5855
+ .close:focus {
5856
+ color: #000;
5857
+ text-decoration: none;
5858
+ cursor: pointer;
5859
+ filter: alpha(opacity=50);
5860
+ opacity: .5;
5861
+ }
5862
+ button.close {
5863
+ -webkit-appearance: none;
5864
+ padding: 0;
5865
+ cursor: pointer;
5866
+ background: transparent;
5867
+ border: 0;
5868
+ }
5869
+ .modal-open {
5870
+ overflow: hidden;
5871
+ }
5872
+ .modal {
5873
+ position: fixed;
5874
+ top: 0;
5875
+ right: 0;
5876
+ bottom: 0;
5877
+ left: 0;
5878
+ z-index: 1050;
5879
+ display: none;
5880
+ overflow: hidden;
5881
+ -webkit-overflow-scrolling: touch;
5882
+ outline: 0;
5883
+ }
5884
+ .modal.fade .modal-dialog {
5885
+ -webkit-transition: -webkit-transform .3s ease-out;
5886
+ -o-transition: -o-transform .3s ease-out;
5887
+ transition: transform .3s ease-out;
5888
+ -webkit-transform: translate(0, -25%);
5889
+ -ms-transform: translate(0, -25%);
5890
+ -o-transform: translate(0, -25%);
5891
+ transform: translate(0, -25%);
5892
+ }
5893
+ .modal.in .modal-dialog {
5894
+ -webkit-transform: translate(0, 0);
5895
+ -ms-transform: translate(0, 0);
5896
+ -o-transform: translate(0, 0);
5897
+ transform: translate(0, 0);
5898
+ }
5899
+ .modal-open .modal {
5900
+ overflow-x: hidden;
5901
+ overflow-y: auto;
5902
+ }
5903
+ .modal-dialog {
5904
+ position: relative;
5905
+ width: auto;
5906
+ margin: 10px;
5907
+ }
5908
+ .modal-content {
5909
+ position: relative;
5910
+ background-color: #fff;
5911
+ -webkit-background-clip: padding-box;
5912
+ background-clip: padding-box;
5913
+ border: 1px solid #999;
5914
+ border: 1px solid rgba(0, 0, 0, .2);
5915
+ border-radius: 6px;
5916
+ outline: 0;
5917
+ -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5918
+ box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5919
+ }
5920
+ .modal-backdrop {
5921
+ position: fixed;
5922
+ top: 0;
5923
+ right: 0;
5924
+ bottom: 0;
5925
+ left: 0;
5926
+ z-index: 1040;
5927
+ background-color: #000;
5928
+ }
5929
+ .modal-backdrop.fade {
5930
+ filter: alpha(opacity=0);
5931
+ opacity: 0;
5932
+ }
5933
+ .modal-backdrop.in {
5934
+ filter: alpha(opacity=50);
5935
+ opacity: .5;
5936
+ }
5937
+ .modal-header {
5938
+ padding: 15px;
5939
+ border-bottom: 1px solid #e5e5e5;
5940
+ }
5941
+ .modal-header .close {
5942
+ margin-top: -2px;
5943
+ }
5944
+ .modal-title {
5945
+ margin: 0;
5946
+ line-height: 1.42857143;
5947
+ }
5948
+ .modal-body {
5949
+ position: relative;
5950
+ padding: 15px;
5951
+ }
5952
+ .modal-footer {
5953
+ padding: 15px;
5954
+ text-align: right;
5955
+ border-top: 1px solid #e5e5e5;
5956
+ }
5957
+ .modal-footer .btn + .btn {
5958
+ margin-bottom: 0;
5959
+ margin-left: 5px;
5960
+ }
5961
+ .modal-footer .btn-group .btn + .btn {
5962
+ margin-left: -1px;
5963
+ }
5964
+ .modal-footer .btn-block + .btn-block {
5965
+ margin-left: 0;
5966
+ }
5967
+ .modal-scrollbar-measure {
5968
+ position: absolute;
5969
+ top: -9999px;
5970
+ width: 50px;
5971
+ height: 50px;
5972
+ overflow: scroll;
5973
+ }
5974
+ @media (min-width: 768px) {
5975
+ .modal-dialog {
5976
+ width: 600px;
5977
+ margin: 30px auto;
5978
+ }
5979
+ .modal-content {
5980
+ -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5981
+ box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5982
+ }
5983
+ .modal-sm {
5984
+ width: 300px;
5985
+ }
5986
+ }
5987
+ @media (min-width: 992px) {
5988
+ .modal-lg {
5989
+ width: 900px;
5990
+ }
5991
+ }
5992
+ .tooltip {
5993
+ position: absolute;
5994
+ z-index: 1070;
5995
+ display: block;
5996
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5997
+ font-size: 12px;
5998
+ font-style: normal;
5999
+ font-weight: normal;
6000
+ line-height: 1.42857143;
6001
+ text-align: left;
6002
+ text-align: start;
6003
+ text-decoration: none;
6004
+ text-shadow: none;
6005
+ text-transform: none;
6006
+ letter-spacing: normal;
6007
+ word-break: normal;
6008
+ word-spacing: normal;
6009
+ word-wrap: normal;
6010
+ white-space: normal;
6011
+ filter: alpha(opacity=0);
6012
+ opacity: 0;
6013
+
6014
+ line-break: auto;
6015
+ }
6016
+ .tooltip.in {
6017
+ filter: alpha(opacity=90);
6018
+ opacity: .9;
6019
+ }
6020
+ .tooltip.top {
6021
+ padding: 5px 0;
6022
+ margin-top: -3px;
6023
+ }
6024
+ .tooltip.right {
6025
+ padding: 0 5px;
6026
+ margin-left: 3px;
6027
+ }
6028
+ .tooltip.bottom {
6029
+ padding: 5px 0;
6030
+ margin-top: 3px;
6031
+ }
6032
+ .tooltip.left {
6033
+ padding: 0 5px;
6034
+ margin-left: -3px;
6035
+ }
6036
+ .tooltip-inner {
6037
+ max-width: 200px;
6038
+ padding: 3px 8px;
6039
+ color: #fff;
6040
+ text-align: center;
6041
+ background-color: #000;
6042
+ border-radius: 4px;
6043
+ }
6044
+ .tooltip-arrow {
6045
+ position: absolute;
6046
+ width: 0;
6047
+ height: 0;
6048
+ border-color: transparent;
6049
+ border-style: solid;
6050
+ }
6051
+ .tooltip.top .tooltip-arrow {
6052
+ bottom: 0;
6053
+ left: 50%;
6054
+ margin-left: -5px;
6055
+ border-width: 5px 5px 0;
6056
+ border-top-color: #000;
6057
+ }
6058
+ .tooltip.top-left .tooltip-arrow {
6059
+ right: 5px;
6060
+ bottom: 0;
6061
+ margin-bottom: -5px;
6062
+ border-width: 5px 5px 0;
6063
+ border-top-color: #000;
6064
+ }
6065
+ .tooltip.top-right .tooltip-arrow {
6066
+ bottom: 0;
6067
+ left: 5px;
6068
+ margin-bottom: -5px;
6069
+ border-width: 5px 5px 0;
6070
+ border-top-color: #000;
6071
+ }
6072
+ .tooltip.right .tooltip-arrow {
6073
+ top: 50%;
6074
+ left: 0;
6075
+ margin-top: -5px;
6076
+ border-width: 5px 5px 5px 0;
6077
+ border-right-color: #000;
6078
+ }
6079
+ .tooltip.left .tooltip-arrow {
6080
+ top: 50%;
6081
+ right: 0;
6082
+ margin-top: -5px;
6083
+ border-width: 5px 0 5px 5px;
6084
+ border-left-color: #000;
6085
+ }
6086
+ .tooltip.bottom .tooltip-arrow {
6087
+ top: 0;
6088
+ left: 50%;
6089
+ margin-left: -5px;
6090
+ border-width: 0 5px 5px;
6091
+ border-bottom-color: #000;
6092
+ }
6093
+ .tooltip.bottom-left .tooltip-arrow {
6094
+ top: 0;
6095
+ right: 5px;
6096
+ margin-top: -5px;
6097
+ border-width: 0 5px 5px;
6098
+ border-bottom-color: #000;
6099
+ }
6100
+ .tooltip.bottom-right .tooltip-arrow {
6101
+ top: 0;
6102
+ left: 5px;
6103
+ margin-top: -5px;
6104
+ border-width: 0 5px 5px;
6105
+ border-bottom-color: #000;
6106
+ }
6107
+ .popover {
6108
+ position: absolute;
6109
+ top: 0;
6110
+ left: 0;
6111
+ z-index: 1060;
6112
+ display: none;
6113
+ max-width: 276px;
6114
+ padding: 1px;
6115
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
6116
+ font-size: 14px;
6117
+ font-style: normal;
6118
+ font-weight: normal;
6119
+ line-height: 1.42857143;
6120
+ text-align: left;
6121
+ text-align: start;
6122
+ text-decoration: none;
6123
+ text-shadow: none;
6124
+ text-transform: none;
6125
+ letter-spacing: normal;
6126
+ word-break: normal;
6127
+ word-spacing: normal;
6128
+ word-wrap: normal;
6129
+ white-space: normal;
6130
+ background-color: #fff;
6131
+ -webkit-background-clip: padding-box;
6132
+ background-clip: padding-box;
6133
+ border: 1px solid #ccc;
6134
+ border: 1px solid rgba(0, 0, 0, .2);
6135
+ border-radius: 6px;
6136
+ -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
6137
+ box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
6138
+
6139
+ line-break: auto;
6140
+ }
6141
+ .popover.top {
6142
+ margin-top: -10px;
6143
+ }
6144
+ .popover.right {
6145
+ margin-left: 10px;
6146
+ }
6147
+ .popover.bottom {
6148
+ margin-top: 10px;
6149
+ }
6150
+ .popover.left {
6151
+ margin-left: -10px;
6152
+ }
6153
+ .popover-title {
6154
+ padding: 8px 14px;
6155
+ margin: 0;
6156
+ font-size: 14px;
6157
+ background-color: #f7f7f7;
6158
+ border-bottom: 1px solid #ebebeb;
6159
+ border-radius: 5px 5px 0 0;
6160
+ }
6161
+ .popover-content {
6162
+ padding: 9px 14px;
6163
+ }
6164
+ .popover > .arrow,
6165
+ .popover > .arrow:after {
6166
+ position: absolute;
6167
+ display: block;
6168
+ width: 0;
6169
+ height: 0;
6170
+ border-color: transparent;
6171
+ border-style: solid;
6172
+ }
6173
+ .popover > .arrow {
6174
+ border-width: 11px;
6175
+ }
6176
+ .popover > .arrow:after {
6177
+ content: "";
6178
+ border-width: 10px;
6179
+ }
6180
+ .popover.top > .arrow {
6181
+ bottom: -11px;
6182
+ left: 50%;
6183
+ margin-left: -11px;
6184
+ border-top-color: #999;
6185
+ border-top-color: rgba(0, 0, 0, .25);
6186
+ border-bottom-width: 0;
6187
+ }
6188
+ .popover.top > .arrow:after {
6189
+ bottom: 1px;
6190
+ margin-left: -10px;
6191
+ content: " ";
6192
+ border-top-color: #fff;
6193
+ border-bottom-width: 0;
6194
+ }
6195
+ .popover.right > .arrow {
6196
+ top: 50%;
6197
+ left: -11px;
6198
+ margin-top: -11px;
6199
+ border-right-color: #999;
6200
+ border-right-color: rgba(0, 0, 0, .25);
6201
+ border-left-width: 0;
6202
+ }
6203
+ .popover.right > .arrow:after {
6204
+ bottom: -10px;
6205
+ left: 1px;
6206
+ content: " ";
6207
+ border-right-color: #fff;
6208
+ border-left-width: 0;
6209
+ }
6210
+ .popover.bottom > .arrow {
6211
+ top: -11px;
6212
+ left: 50%;
6213
+ margin-left: -11px;
6214
+ border-top-width: 0;
6215
+ border-bottom-color: #999;
6216
+ border-bottom-color: rgba(0, 0, 0, .25);
6217
+ }
6218
+ .popover.bottom > .arrow:after {
6219
+ top: 1px;
6220
+ margin-left: -10px;
6221
+ content: " ";
6222
+ border-top-width: 0;
6223
+ border-bottom-color: #fff;
6224
+ }
6225
+ .popover.left > .arrow {
6226
+ top: 50%;
6227
+ right: -11px;
6228
+ margin-top: -11px;
6229
+ border-right-width: 0;
6230
+ border-left-color: #999;
6231
+ border-left-color: rgba(0, 0, 0, .25);
6232
+ }
6233
+ .popover.left > .arrow:after {
6234
+ right: 1px;
6235
+ bottom: -10px;
6236
+ content: " ";
6237
+ border-right-width: 0;
6238
+ border-left-color: #fff;
6239
+ }
6240
+ .carousel {
6241
+ position: relative;
6242
+ }
6243
+ .carousel-inner {
6244
+ position: relative;
6245
+ width: 100%;
6246
+ overflow: hidden;
6247
+ }
6248
+ .carousel-inner > .item {
6249
+ position: relative;
6250
+ display: none;
6251
+ -webkit-transition: .6s ease-in-out left;
6252
+ -o-transition: .6s ease-in-out left;
6253
+ transition: .6s ease-in-out left;
6254
+ }
6255
+ .carousel-inner > .item > img,
6256
+ .carousel-inner > .item > a > img {
6257
+ line-height: 1;
6258
+ }
6259
+ @media all and (transform-3d), (-webkit-transform-3d) {
6260
+ .carousel-inner > .item {
6261
+ -webkit-transition: -webkit-transform .6s ease-in-out;
6262
+ -o-transition: -o-transform .6s ease-in-out;
6263
+ transition: transform .6s ease-in-out;
6264
+
6265
+ -webkit-backface-visibility: hidden;
6266
+ backface-visibility: hidden;
6267
+ -webkit-perspective: 1000px;
6268
+ perspective: 1000px;
6269
+ }
6270
+ .carousel-inner > .item.next,
6271
+ .carousel-inner > .item.active.right {
6272
+ left: 0;
6273
+ -webkit-transform: translate3d(100%, 0, 0);
6274
+ transform: translate3d(100%, 0, 0);
6275
+ }
6276
+ .carousel-inner > .item.prev,
6277
+ .carousel-inner > .item.active.left {
6278
+ left: 0;
6279
+ -webkit-transform: translate3d(-100%, 0, 0);
6280
+ transform: translate3d(-100%, 0, 0);
6281
+ }
6282
+ .carousel-inner > .item.next.left,
6283
+ .carousel-inner > .item.prev.right,
6284
+ .carousel-inner > .item.active {
6285
+ left: 0;
6286
+ -webkit-transform: translate3d(0, 0, 0);
6287
+ transform: translate3d(0, 0, 0);
6288
+ }
6289
+ }
6290
+ .carousel-inner > .active,
6291
+ .carousel-inner > .next,
6292
+ .carousel-inner > .prev {
6293
+ display: block;
6294
+ }
6295
+ .carousel-inner > .active {
6296
+ left: 0;
6297
+ }
6298
+ .carousel-inner > .next,
6299
+ .carousel-inner > .prev {
6300
+ position: absolute;
6301
+ top: 0;
6302
+ width: 100%;
6303
+ }
6304
+ .carousel-inner > .next {
6305
+ left: 100%;
6306
+ }
6307
+ .carousel-inner > .prev {
6308
+ left: -100%;
6309
+ }
6310
+ .carousel-inner > .next.left,
6311
+ .carousel-inner > .prev.right {
6312
+ left: 0;
6313
+ }
6314
+ .carousel-inner > .active.left {
6315
+ left: -100%;
6316
+ }
6317
+ .carousel-inner > .active.right {
6318
+ left: 100%;
6319
+ }
6320
+ .carousel-control {
6321
+ position: absolute;
6322
+ top: 0;
6323
+ bottom: 0;
6324
+ left: 0;
6325
+ width: 15%;
6326
+ font-size: 20px;
6327
+ color: #fff;
6328
+ text-align: center;
6329
+ text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6330
+ background-color: rgba(0, 0, 0, 0);
6331
+ filter: alpha(opacity=50);
6332
+ opacity: .5;
6333
+ }
6334
+ .carousel-control.left {
6335
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6336
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6337
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
6338
+ background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
6339
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
6340
+ background-repeat: repeat-x;
6341
+ }
6342
+ .carousel-control.right {
6343
+ right: 0;
6344
+ left: auto;
6345
+ background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6346
+ background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6347
+ background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
6348
+ background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
6349
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
6350
+ background-repeat: repeat-x;
6351
+ }
6352
+ .carousel-control:hover,
6353
+ .carousel-control:focus {
6354
+ color: #fff;
6355
+ text-decoration: none;
6356
+ filter: alpha(opacity=90);
6357
+ outline: 0;
6358
+ opacity: .9;
6359
+ }
6360
+ .carousel-control .icon-prev,
6361
+ .carousel-control .icon-next,
6362
+ .carousel-control .glyphicon-chevron-left,
6363
+ .carousel-control .glyphicon-chevron-right {
6364
+ position: absolute;
6365
+ top: 50%;
6366
+ z-index: 5;
6367
+ display: inline-block;
6368
+ margin-top: -10px;
6369
+ }
6370
+ .carousel-control .icon-prev,
6371
+ .carousel-control .glyphicon-chevron-left {
6372
+ left: 50%;
6373
+ margin-left: -10px;
6374
+ }
6375
+ .carousel-control .icon-next,
6376
+ .carousel-control .glyphicon-chevron-right {
6377
+ right: 50%;
6378
+ margin-right: -10px;
6379
+ }
6380
+ .carousel-control .icon-prev,
6381
+ .carousel-control .icon-next {
6382
+ width: 20px;
6383
+ height: 20px;
6384
+ font-family: serif;
6385
+ line-height: 1;
6386
+ }
6387
+ .carousel-control .icon-prev:before {
6388
+ content: '\2039';
6389
+ }
6390
+ .carousel-control .icon-next:before {
6391
+ content: '\203a';
6392
+ }
6393
+ .carousel-indicators {
6394
+ position: absolute;
6395
+ bottom: 10px;
6396
+ left: 50%;
6397
+ z-index: 15;
6398
+ width: 60%;
6399
+ padding-left: 0;
6400
+ margin-left: -30%;
6401
+ text-align: center;
6402
+ list-style: none;
6403
+ }
6404
+ .carousel-indicators li {
6405
+ display: inline-block;
6406
+ width: 10px;
6407
+ height: 10px;
6408
+ margin: 1px;
6409
+ text-indent: -999px;
6410
+ cursor: pointer;
6411
+ background-color: #000 \9;
6412
+ background-color: rgba(0, 0, 0, 0);
6413
+ border: 1px solid #fff;
6414
+ border-radius: 10px;
6415
+ }
6416
+ .carousel-indicators .active {
6417
+ width: 12px;
6418
+ height: 12px;
6419
+ margin: 0;
6420
+ background-color: #fff;
6421
+ }
6422
+ .carousel-caption {
6423
+ position: absolute;
6424
+ right: 15%;
6425
+ bottom: 20px;
6426
+ left: 15%;
6427
+ z-index: 10;
6428
+ padding-top: 20px;
6429
+ padding-bottom: 20px;
6430
+ color: #fff;
6431
+ text-align: center;
6432
+ text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
6433
+ }
6434
+ .carousel-caption .btn {
6435
+ text-shadow: none;
6436
+ }
6437
+ @media screen and (min-width: 768px) {
6438
+ .carousel-control .glyphicon-chevron-left,
6439
+ .carousel-control .glyphicon-chevron-right,
6440
+ .carousel-control .icon-prev,
6441
+ .carousel-control .icon-next {
6442
+ width: 30px;
6443
+ height: 30px;
6444
+ margin-top: -10px;
6445
+ font-size: 30px;
6446
+ }
6447
+ .carousel-control .glyphicon-chevron-left,
6448
+ .carousel-control .icon-prev {
6449
+ margin-left: -10px;
6450
+ }
6451
+ .carousel-control .glyphicon-chevron-right,
6452
+ .carousel-control .icon-next {
6453
+ margin-right: -10px;
6454
+ }
6455
+ .carousel-caption {
6456
+ right: 20%;
6457
+ left: 20%;
6458
+ padding-bottom: 30px;
6459
+ }
6460
+ .carousel-indicators {
6461
+ bottom: 20px;
6462
+ }
6463
+ }
6464
+ .clearfix:before,
6465
+ .clearfix:after,
6466
+ .dl-horizontal dd:before,
6467
+ .dl-horizontal dd:after,
6468
+ .container:before,
6469
+ .container:after,
6470
+ .container-fluid:before,
6471
+ .container-fluid:after,
6472
+ .row:before,
6473
+ .row:after,
6474
+ .form-horizontal .form-group:before,
6475
+ .form-horizontal .form-group:after,
6476
+ .btn-toolbar:before,
6477
+ .btn-toolbar:after,
6478
+ .btn-group-vertical > .btn-group:before,
6479
+ .btn-group-vertical > .btn-group:after,
6480
+ .nav:before,
6481
+ .nav:after,
6482
+ .navbar:before,
6483
+ .navbar:after,
6484
+ .navbar-header:before,
6485
+ .navbar-header:after,
6486
+ .navbar-collapse:before,
6487
+ .navbar-collapse:after,
6488
+ .pager:before,
6489
+ .pager:after,
6490
+ .panel-body:before,
6491
+ .panel-body:after,
6492
+ .modal-header:before,
6493
+ .modal-header:after,
6494
+ .modal-footer:before,
6495
+ .modal-footer:after {
6496
+ display: table;
6497
+ content: " ";
6498
+ }
6499
+ .clearfix:after,
6500
+ .dl-horizontal dd:after,
6501
+ .container:after,
6502
+ .container-fluid:after,
6503
+ .row:after,
6504
+ .form-horizontal .form-group:after,
6505
+ .btn-toolbar:after,
6506
+ .btn-group-vertical > .btn-group:after,
6507
+ .nav:after,
6508
+ .navbar:after,
6509
+ .navbar-header:after,
6510
+ .navbar-collapse:after,
6511
+ .pager:after,
6512
+ .panel-body:after,
6513
+ .modal-header:after,
6514
+ .modal-footer:after {
6515
+ clear: both;
6516
+ }
6517
+ .center-block {
6518
+ display: block;
6519
+ margin-right: auto;
6520
+ margin-left: auto;
6521
+ }
6522
+ .pull-right {
6523
+ float: right !important;
6524
+ }
6525
+ .pull-left {
6526
+ float: left !important;
6527
+ }
6528
+ .hide {
6529
+ display: none !important;
6530
+ }
6531
+ .show {
6532
+ display: block !important;
6533
+ }
6534
+ .invisible {
6535
+ visibility: hidden;
6536
+ }
6537
+ .text-hide {
6538
+ font: 0/0 a;
6539
+ color: transparent;
6540
+ text-shadow: none;
6541
+ background-color: transparent;
6542
+ border: 0;
6543
+ }
6544
+ .hidden {
6545
+ display: none !important;
6546
+ }
6547
+ .affix {
6548
+ position: fixed;
6549
+ }
6550
+ @-ms-viewport {
6551
+ width: device-width;
6552
+ }
6553
+ .visible-xs,
6554
+ .visible-sm,
6555
+ .visible-md,
6556
+ .visible-lg {
6557
+ display: none !important;
6558
+ }
6559
+ .visible-xs-block,
6560
+ .visible-xs-inline,
6561
+ .visible-xs-inline-block,
6562
+ .visible-sm-block,
6563
+ .visible-sm-inline,
6564
+ .visible-sm-inline-block,
6565
+ .visible-md-block,
6566
+ .visible-md-inline,
6567
+ .visible-md-inline-block,
6568
+ .visible-lg-block,
6569
+ .visible-lg-inline,
6570
+ .visible-lg-inline-block {
6571
+ display: none !important;
6572
+ }
6573
+ @media (max-width: 767px) {
6574
+ .visible-xs {
6575
+ display: block !important;
6576
+ }
6577
+ table.visible-xs {
6578
+ display: table !important;
6579
+ }
6580
+ tr.visible-xs {
6581
+ display: table-row !important;
6582
+ }
6583
+ th.visible-xs,
6584
+ td.visible-xs {
6585
+ display: table-cell !important;
6586
+ }
6587
+ }
6588
+ @media (max-width: 767px) {
6589
+ .visible-xs-block {
6590
+ display: block !important;
6591
+ }
6592
+ }
6593
+ @media (max-width: 767px) {
6594
+ .visible-xs-inline {
6595
+ display: inline !important;
6596
+ }
6597
+ }
6598
+ @media (max-width: 767px) {
6599
+ .visible-xs-inline-block {
6600
+ display: inline-block !important;
6601
+ }
6602
+ }
6603
+ @media (min-width: 768px) and (max-width: 991px) {
6604
+ .visible-sm {
6605
+ display: block !important;
6606
+ }
6607
+ table.visible-sm {
6608
+ display: table !important;
6609
+ }
6610
+ tr.visible-sm {
6611
+ display: table-row !important;
6612
+ }
6613
+ th.visible-sm,
6614
+ td.visible-sm {
6615
+ display: table-cell !important;
6616
+ }
6617
+ }
6618
+ @media (min-width: 768px) and (max-width: 991px) {
6619
+ .visible-sm-block {
6620
+ display: block !important;
6621
+ }
6622
+ }
6623
+ @media (min-width: 768px) and (max-width: 991px) {
6624
+ .visible-sm-inline {
6625
+ display: inline !important;
6626
+ }
6627
+ }
6628
+ @media (min-width: 768px) and (max-width: 991px) {
6629
+ .visible-sm-inline-block {
6630
+ display: inline-block !important;
6631
+ }
6632
+ }
6633
+ @media (min-width: 992px) and (max-width: 1199px) {
6634
+ .visible-md {
6635
+ display: block !important;
6636
+ }
6637
+ table.visible-md {
6638
+ display: table !important;
6639
+ }
6640
+ tr.visible-md {
6641
+ display: table-row !important;
6642
+ }
6643
+ th.visible-md,
6644
+ td.visible-md {
6645
+ display: table-cell !important;
6646
+ }
6647
+ }
6648
+ @media (min-width: 992px) and (max-width: 1199px) {
6649
+ .visible-md-block {
6650
+ display: block !important;
6651
+ }
6652
+ }
6653
+ @media (min-width: 992px) and (max-width: 1199px) {
6654
+ .visible-md-inline {
6655
+ display: inline !important;
6656
+ }
6657
+ }
6658
+ @media (min-width: 992px) and (max-width: 1199px) {
6659
+ .visible-md-inline-block {
6660
+ display: inline-block !important;
6661
+ }
6662
+ }
6663
+ @media (min-width: 1200px) {
6664
+ .visible-lg {
6665
+ display: block !important;
6666
+ }
6667
+ table.visible-lg {
6668
+ display: table !important;
6669
+ }
6670
+ tr.visible-lg {
6671
+ display: table-row !important;
6672
+ }
6673
+ th.visible-lg,
6674
+ td.visible-lg {
6675
+ display: table-cell !important;
6676
+ }
6677
+ }
6678
+ @media (min-width: 1200px) {
6679
+ .visible-lg-block {
6680
+ display: block !important;
6681
+ }
6682
+ }
6683
+ @media (min-width: 1200px) {
6684
+ .visible-lg-inline {
6685
+ display: inline !important;
6686
+ }
6687
+ }
6688
+ @media (min-width: 1200px) {
6689
+ .visible-lg-inline-block {
6690
+ display: inline-block !important;
6691
+ }
6692
+ }
6693
+ @media (max-width: 767px) {
6694
+ .hidden-xs {
6695
+ display: none !important;
6696
+ }
6697
+ }
6698
+ @media (min-width: 768px) and (max-width: 991px) {
6699
+ .hidden-sm {
6700
+ display: none !important;
6701
+ }
6702
+ }
6703
+ @media (min-width: 992px) and (max-width: 1199px) {
6704
+ .hidden-md {
6705
+ display: none !important;
6706
+ }
6707
+ }
6708
+ @media (min-width: 1200px) {
6709
+ .hidden-lg {
6710
+ display: none !important;
6711
+ }
6712
+ }
6713
+ .visible-print {
6714
+ display: none !important;
6715
+ }
6716
+ @media print {
6717
+ .visible-print {
6718
+ display: block !important;
6719
+ }
6720
+ table.visible-print {
6721
+ display: table !important;
6722
+ }
6723
+ tr.visible-print {
6724
+ display: table-row !important;
6725
+ }
6726
+ th.visible-print,
6727
+ td.visible-print {
6728
+ display: table-cell !important;
6729
+ }
6730
+ }
6731
+ .visible-print-block {
6732
+ display: none !important;
6733
+ }
6734
+ @media print {
6735
+ .visible-print-block {
6736
+ display: block !important;
6737
+ }
6738
+ }
6739
+ .visible-print-inline {
6740
+ display: none !important;
6741
+ }
6742
+ @media print {
6743
+ .visible-print-inline {
6744
+ display: inline !important;
6745
+ }
6746
+ }
6747
+ .visible-print-inline-block {
6748
+ display: none !important;
6749
+ }
6750
+ @media print {
6751
+ .visible-print-inline-block {
6752
+ display: inline-block !important;
6753
+ }
6754
+ }
6755
+ @media print {
6756
+ .hidden-print {
6757
+ display: none !important;
6758
+ }
6759
+ }
6760
+ /*# sourceMappingURL=bootstrap.css.map */
asset/css/bootstrap.min.css CHANGED
@@ -1,6 +1,6 @@
1
-
2
- /*!
3
- * Bootstrap v3.3.6 (http://getbootstrap.com)
4
- * Copyright 2011-2015 Twitter, Inc.
5
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
  *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.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}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.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,box-shadow ease-in-out .15s}.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)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.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}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .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)}.has-success .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}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .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)}.has-warning .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}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .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)}.has-error .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}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label ~ .form-control-feedback{top:25px}.has-feedback label.sr-only ~ .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.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)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:normal;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.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}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .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)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.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}.btn-group-vertical>.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}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.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}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media(min-width:768px){.navbar{border-radius:4px}}@media(min-width:768px){.navbar-header{float:left}}.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)}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.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){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width:768px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.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}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right ~ .navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.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}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.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.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.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}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.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}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .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}}.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)}.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}.progress-striped .progress-bar,.progress-bar-striped{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}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .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)}.progress-bar-info{background-color:#5bc0de}.progress-striped .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)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .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)}.progress-bar-danger{background-color:#d9534f}.progress-striped .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)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.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)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.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)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.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}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.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)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width:992px){.modal-lg{width:900px}}.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}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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,.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}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.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}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.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);filter:alpha(opacity=50);opacity:.5}.carousel-control.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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);background-repeat:repeat-x}.carousel-control.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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.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}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.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)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(max-width:767px){.visible-xs-block{display:block!important}}@media(max-width:767px){.visible-xs-inline{display:inline!important}}@media(max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media(min-width:1200px){.visible-lg-block{display:block!important}}@media(min-width:1200px){.visible-lg-inline{display:inline!important}}@media(min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media(max-width:767px){.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
1
+
2
+ /*!
3
+ * Bootstrap v3.3.6 (http://getbootstrap.com)
4
+ * Copyright 2011-2015 Twitter, Inc.
5
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
  *//*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{margin:.67em 0;font-size:2em}mark{color:#000;background:#ff0}small{font-size:80%}sub,sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{padding:0;border:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid #c0c0c0}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-spacing:0;border-collapse:collapse}td,th{padding:0}/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */@media print{*,*:before,*:after{color:#000!important;text-shadow:none!important;background:transparent!important;-webkit-box-shadow:none!important;box-shadow:none!important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="#"]:after,a[href^="javascript:"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100%!important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.navbar{display:none}.btn>.caret,.dropup>.btn>.caret{border-top-color:#000!important}.label{border:1px solid #000}.table{border-collapse:collapse!important}.table td,.table th{background-color:#fff!important}.table-bordered th,.table-bordered td{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url('../fonts/glyphicons-halflings-regular.eot');src:url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'),url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'),url('../fonts/glyphicons-halflings-regular.woff') format('woff'),url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'),url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg')}.glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.glyphicon-asterisk:before{content:"\002a"}.glyphicon-plus:before{content:"\002b"}.glyphicon-euro:before,.glyphicon-eur:before{content:"\20ac"}.glyphicon-minus:before{content:"\2212"}.glyphicon-cloud:before{content:"\2601"}.glyphicon-envelope:before{content:"\2709"}.glyphicon-pencil:before{content:"\270f"}.glyphicon-glass:before{content:"\e001"}.glyphicon-music:before{content:"\e002"}.glyphicon-search:before{content:"\e003"}.glyphicon-heart:before{content:"\e005"}.glyphicon-star:before{content:"\e006"}.glyphicon-star-empty:before{content:"\e007"}.glyphicon-user:before{content:"\e008"}.glyphicon-film:before{content:"\e009"}.glyphicon-th-large:before{content:"\e010"}.glyphicon-th:before{content:"\e011"}.glyphicon-th-list:before{content:"\e012"}.glyphicon-ok:before{content:"\e013"}.glyphicon-remove:before{content:"\e014"}.glyphicon-zoom-in:before{content:"\e015"}.glyphicon-zoom-out:before{content:"\e016"}.glyphicon-off:before{content:"\e017"}.glyphicon-signal:before{content:"\e018"}.glyphicon-cog:before{content:"\e019"}.glyphicon-trash:before{content:"\e020"}.glyphicon-home:before{content:"\e021"}.glyphicon-file:before{content:"\e022"}.glyphicon-time:before{content:"\e023"}.glyphicon-road:before{content:"\e024"}.glyphicon-download-alt:before{content:"\e025"}.glyphicon-download:before{content:"\e026"}.glyphicon-upload:before{content:"\e027"}.glyphicon-inbox:before{content:"\e028"}.glyphicon-play-circle:before{content:"\e029"}.glyphicon-repeat:before{content:"\e030"}.glyphicon-refresh:before{content:"\e031"}.glyphicon-list-alt:before{content:"\e032"}.glyphicon-lock:before{content:"\e033"}.glyphicon-flag:before{content:"\e034"}.glyphicon-headphones:before{content:"\e035"}.glyphicon-volume-off:before{content:"\e036"}.glyphicon-volume-down:before{content:"\e037"}.glyphicon-volume-up:before{content:"\e038"}.glyphicon-qrcode:before{content:"\e039"}.glyphicon-barcode:before{content:"\e040"}.glyphicon-tag:before{content:"\e041"}.glyphicon-tags:before{content:"\e042"}.glyphicon-book:before{content:"\e043"}.glyphicon-bookmark:before{content:"\e044"}.glyphicon-print:before{content:"\e045"}.glyphicon-camera:before{content:"\e046"}.glyphicon-font:before{content:"\e047"}.glyphicon-bold:before{content:"\e048"}.glyphicon-italic:before{content:"\e049"}.glyphicon-text-height:before{content:"\e050"}.glyphicon-text-width:before{content:"\e051"}.glyphicon-align-left:before{content:"\e052"}.glyphicon-align-center:before{content:"\e053"}.glyphicon-align-right:before{content:"\e054"}.glyphicon-align-justify:before{content:"\e055"}.glyphicon-list:before{content:"\e056"}.glyphicon-indent-left:before{content:"\e057"}.glyphicon-indent-right:before{content:"\e058"}.glyphicon-facetime-video:before{content:"\e059"}.glyphicon-picture:before{content:"\e060"}.glyphicon-map-marker:before{content:"\e062"}.glyphicon-adjust:before{content:"\e063"}.glyphicon-tint:before{content:"\e064"}.glyphicon-edit:before{content:"\e065"}.glyphicon-share:before{content:"\e066"}.glyphicon-check:before{content:"\e067"}.glyphicon-move:before{content:"\e068"}.glyphicon-step-backward:before{content:"\e069"}.glyphicon-fast-backward:before{content:"\e070"}.glyphicon-backward:before{content:"\e071"}.glyphicon-play:before{content:"\e072"}.glyphicon-pause:before{content:"\e073"}.glyphicon-stop:before{content:"\e074"}.glyphicon-forward:before{content:"\e075"}.glyphicon-fast-forward:before{content:"\e076"}.glyphicon-step-forward:before{content:"\e077"}.glyphicon-eject:before{content:"\e078"}.glyphicon-chevron-left:before{content:"\e079"}.glyphicon-chevron-right:before{content:"\e080"}.glyphicon-plus-sign:before{content:"\e081"}.glyphicon-minus-sign:before{content:"\e082"}.glyphicon-remove-sign:before{content:"\e083"}.glyphicon-ok-sign:before{content:"\e084"}.glyphicon-question-sign:before{content:"\e085"}.glyphicon-info-sign:before{content:"\e086"}.glyphicon-screenshot:before{content:"\e087"}.glyphicon-remove-circle:before{content:"\e088"}.glyphicon-ok-circle:before{content:"\e089"}.glyphicon-ban-circle:before{content:"\e090"}.glyphicon-arrow-left:before{content:"\e091"}.glyphicon-arrow-right:before{content:"\e092"}.glyphicon-arrow-up:before{content:"\e093"}.glyphicon-arrow-down:before{content:"\e094"}.glyphicon-share-alt:before{content:"\e095"}.glyphicon-resize-full:before{content:"\e096"}.glyphicon-resize-small:before{content:"\e097"}.glyphicon-exclamation-sign:before{content:"\e101"}.glyphicon-gift:before{content:"\e102"}.glyphicon-leaf:before{content:"\e103"}.glyphicon-fire:before{content:"\e104"}.glyphicon-eye-open:before{content:"\e105"}.glyphicon-eye-close:before{content:"\e106"}.glyphicon-warning-sign:before{content:"\e107"}.glyphicon-plane:before{content:"\e108"}.glyphicon-calendar:before{content:"\e109"}.glyphicon-random:before{content:"\e110"}.glyphicon-comment:before{content:"\e111"}.glyphicon-magnet:before{content:"\e112"}.glyphicon-chevron-up:before{content:"\e113"}.glyphicon-chevron-down:before{content:"\e114"}.glyphicon-retweet:before{content:"\e115"}.glyphicon-shopping-cart:before{content:"\e116"}.glyphicon-folder-close:before{content:"\e117"}.glyphicon-folder-open:before{content:"\e118"}.glyphicon-resize-vertical:before{content:"\e119"}.glyphicon-resize-horizontal:before{content:"\e120"}.glyphicon-hdd:before{content:"\e121"}.glyphicon-bullhorn:before{content:"\e122"}.glyphicon-bell:before{content:"\e123"}.glyphicon-certificate:before{content:"\e124"}.glyphicon-thumbs-up:before{content:"\e125"}.glyphicon-thumbs-down:before{content:"\e126"}.glyphicon-hand-right:before{content:"\e127"}.glyphicon-hand-left:before{content:"\e128"}.glyphicon-hand-up:before{content:"\e129"}.glyphicon-hand-down:before{content:"\e130"}.glyphicon-circle-arrow-right:before{content:"\e131"}.glyphicon-circle-arrow-left:before{content:"\e132"}.glyphicon-circle-arrow-up:before{content:"\e133"}.glyphicon-circle-arrow-down:before{content:"\e134"}.glyphicon-globe:before{content:"\e135"}.glyphicon-wrench:before{content:"\e136"}.glyphicon-tasks:before{content:"\e137"}.glyphicon-filter:before{content:"\e138"}.glyphicon-briefcase:before{content:"\e139"}.glyphicon-fullscreen:before{content:"\e140"}.glyphicon-dashboard:before{content:"\e141"}.glyphicon-paperclip:before{content:"\e142"}.glyphicon-heart-empty:before{content:"\e143"}.glyphicon-link:before{content:"\e144"}.glyphicon-phone:before{content:"\e145"}.glyphicon-pushpin:before{content:"\e146"}.glyphicon-usd:before{content:"\e148"}.glyphicon-gbp:before{content:"\e149"}.glyphicon-sort:before{content:"\e150"}.glyphicon-sort-by-alphabet:before{content:"\e151"}.glyphicon-sort-by-alphabet-alt:before{content:"\e152"}.glyphicon-sort-by-order:before{content:"\e153"}.glyphicon-sort-by-order-alt:before{content:"\e154"}.glyphicon-sort-by-attributes:before{content:"\e155"}.glyphicon-sort-by-attributes-alt:before{content:"\e156"}.glyphicon-unchecked:before{content:"\e157"}.glyphicon-expand:before{content:"\e158"}.glyphicon-collapse-down:before{content:"\e159"}.glyphicon-collapse-up:before{content:"\e160"}.glyphicon-log-in:before{content:"\e161"}.glyphicon-flash:before{content:"\e162"}.glyphicon-log-out:before{content:"\e163"}.glyphicon-new-window:before{content:"\e164"}.glyphicon-record:before{content:"\e165"}.glyphicon-save:before{content:"\e166"}.glyphicon-open:before{content:"\e167"}.glyphicon-saved:before{content:"\e168"}.glyphicon-import:before{content:"\e169"}.glyphicon-export:before{content:"\e170"}.glyphicon-send:before{content:"\e171"}.glyphicon-floppy-disk:before{content:"\e172"}.glyphicon-floppy-saved:before{content:"\e173"}.glyphicon-floppy-remove:before{content:"\e174"}.glyphicon-floppy-save:before{content:"\e175"}.glyphicon-floppy-open:before{content:"\e176"}.glyphicon-credit-card:before{content:"\e177"}.glyphicon-transfer:before{content:"\e178"}.glyphicon-cutlery:before{content:"\e179"}.glyphicon-header:before{content:"\e180"}.glyphicon-compressed:before{content:"\e181"}.glyphicon-earphone:before{content:"\e182"}.glyphicon-phone-alt:before{content:"\e183"}.glyphicon-tower:before{content:"\e184"}.glyphicon-stats:before{content:"\e185"}.glyphicon-sd-video:before{content:"\e186"}.glyphicon-hd-video:before{content:"\e187"}.glyphicon-subtitles:before{content:"\e188"}.glyphicon-sound-stereo:before{content:"\e189"}.glyphicon-sound-dolby:before{content:"\e190"}.glyphicon-sound-5-1:before{content:"\e191"}.glyphicon-sound-6-1:before{content:"\e192"}.glyphicon-sound-7-1:before{content:"\e193"}.glyphicon-copyright-mark:before{content:"\e194"}.glyphicon-registration-mark:before{content:"\e195"}.glyphicon-cloud-download:before{content:"\e197"}.glyphicon-cloud-upload:before{content:"\e198"}.glyphicon-tree-conifer:before{content:"\e199"}.glyphicon-tree-deciduous:before{content:"\e200"}.glyphicon-cd:before{content:"\e201"}.glyphicon-save-file:before{content:"\e202"}.glyphicon-open-file:before{content:"\e203"}.glyphicon-level-up:before{content:"\e204"}.glyphicon-copy:before{content:"\e205"}.glyphicon-paste:before{content:"\e206"}.glyphicon-alert:before{content:"\e209"}.glyphicon-equalizer:before{content:"\e210"}.glyphicon-king:before{content:"\e211"}.glyphicon-queen:before{content:"\e212"}.glyphicon-pawn:before{content:"\e213"}.glyphicon-bishop:before{content:"\e214"}.glyphicon-knight:before{content:"\e215"}.glyphicon-baby-formula:before{content:"\e216"}.glyphicon-tent:before{content:"\26fa"}.glyphicon-blackboard:before{content:"\e218"}.glyphicon-bed:before{content:"\e219"}.glyphicon-apple:before{content:"\f8ff"}.glyphicon-erase:before{content:"\e221"}.glyphicon-hourglass:before{content:"\231b"}.glyphicon-lamp:before{content:"\e223"}.glyphicon-duplicate:before{content:"\e224"}.glyphicon-piggy-bank:before{content:"\e225"}.glyphicon-scissors:before{content:"\e226"}.glyphicon-bitcoin:before{content:"\e227"}.glyphicon-btc:before{content:"\e227"}.glyphicon-xbt:before{content:"\e227"}.glyphicon-yen:before{content:"\00a5"}.glyphicon-jpy:before{content:"\00a5"}.glyphicon-ruble:before{content:"\20bd"}.glyphicon-rub:before{content:"\20bd"}.glyphicon-scale:before{content:"\e230"}.glyphicon-ice-lolly:before{content:"\e231"}.glyphicon-ice-lolly-tasted:before{content:"\e232"}.glyphicon-education:before{content:"\e233"}.glyphicon-option-horizontal:before{content:"\e234"}.glyphicon-option-vertical:before{content:"\e235"}.glyphicon-menu-hamburger:before{content:"\e236"}.glyphicon-modal-window:before{content:"\e237"}.glyphicon-oil:before{content:"\e238"}.glyphicon-grain:before{content:"\e239"}.glyphicon-sunglasses:before{content:"\e240"}.glyphicon-text-size:before{content:"\e241"}.glyphicon-text-color:before{content:"\e242"}.glyphicon-text-background:before{content:"\e243"}.glyphicon-object-align-top:before{content:"\e244"}.glyphicon-object-align-bottom:before{content:"\e245"}.glyphicon-object-align-horizontal:before{content:"\e246"}.glyphicon-object-align-left:before{content:"\e247"}.glyphicon-object-align-vertical:before{content:"\e248"}.glyphicon-object-align-right:before{content:"\e249"}.glyphicon-triangle-right:before{content:"\e250"}.glyphicon-triangle-left:before{content:"\e251"}.glyphicon-triangle-bottom:before{content:"\e252"}.glyphicon-triangle-top:before{content:"\e253"}.glyphicon-console:before{content:"\e254"}.glyphicon-superscript:before{content:"\e255"}.glyphicon-subscript:before{content:"\e256"}.glyphicon-menu-left:before{content:"\e257"}.glyphicon-menu-right:before{content:"\e258"}.glyphicon-menu-down:before{content:"\e259"}.glyphicon-menu-up:before{content:"\e260"}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:rgba(0,0,0,0)}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:hover,a:focus{color:#23527c;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive,.thumbnail>img,.thumbnail a>img,.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.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}.img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}[role="button"]{cursor:pointer}h1,h2,h3,h4,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small,.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 .small,h2 .small,h3 .small,h4 .small,h5 .small,h6 .small,.h1 .small,.h2 .small,.h3 .small,.h4 .small,.h5 .small,.h6 .small{font-weight:normal;line-height:1;color:#777}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,.h1 small,h2 small,.h2 small,h3 small,.h3 small,h1 .small,.h1 .small,h2 .small,.h2 .small,h3 .small,.h3 .small{font-size:65%}h4,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.h4 small,h5 small,.h5 small,h6 small,.h6 small,h4 .small,.h4 .small,h5 .small,.h5 .small,h6 .small,.h6 .small{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:300;line-height:1.4}@media(min-width:768px){.lead{font-size:21px}}small,.small{font-size:85%}mark,.mark{padding:.2em;background-color:#fcf8e3}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-nowrap{white-space:nowrap}.text-lowercase{text-transform:lowercase}.text-uppercase{text-transform:uppercase}.text-capitalize{text-transform:capitalize}.text-muted{color:#777}.text-primary{color:#337ab7}a.text-primary:hover,a.text-primary:focus{color:#286090}.text-success{color:#3c763d}a.text-success:hover,a.text-success:focus{color:#2b542c}.text-info{color:#31708f}a.text-info:hover,a.text-info:focus{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:hover,a.text-warning:focus{color:#66512c}.text-danger{color:#a94442}a.text-danger:hover,a.text-danger:focus{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:hover,a.bg-primary:focus{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:hover,a.bg-success:focus{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover,a.bg-info:focus{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover,a.bg-warning:focus{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover,a.bg-danger:focus{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ol ul,ul ol,ol ol{margin-bottom:0}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;margin-left:-5px;list-style:none}.list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857143}dt{font-weight:bold}dd{margin-left:0}@media(min-width:768px){.dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #777}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote footer:before,blockquote small:before,blockquote .small:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #eee;border-left:0}.blockquote-reverse footer:before,blockquote.pull-right footer:before,.blockquote-reverse small:before,blockquote.pull-right small:before,.blockquote-reverse .small:before,blockquote.pull-right .small:before{content:''}.blockquote-reverse footer:after,blockquote.pull-right footer:after,.blockquote-reverse small:after,blockquote.pull-right small:after,.blockquote-reverse .small:after,blockquote.pull-right .small:after{content:'\00A0 \2014'}address{margin-bottom:20px;font-style:normal;line-height:1.42857143}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}kbd kbd{padding:0;font-size:100%;font-weight:bold;-webkit-box-shadow:none;box-shadow:none}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857143;color:#333;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}@media(min-width:768px){.container{width:750px}}@media(min-width:992px){.container{width:970px}}@media(min-width:1200px){.container{width:1170px}}.container-fluid{padding-right:15px;padding-left:15px;margin-right:auto;margin-left:auto}.row{margin-right:-15px;margin-left:-15px}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-12{width:100%}.col-xs-11{width:91.66666667%}.col-xs-10{width:83.33333333%}.col-xs-9{width:75%}.col-xs-8{width:66.66666667%}.col-xs-7{width:58.33333333%}.col-xs-6{width:50%}.col-xs-5{width:41.66666667%}.col-xs-4{width:33.33333333%}.col-xs-3{width:25%}.col-xs-2{width:16.66666667%}.col-xs-1{width:8.33333333%}.col-xs-pull-12{right:100%}.col-xs-pull-11{right:91.66666667%}.col-xs-pull-10{right:83.33333333%}.col-xs-pull-9{right:75%}.col-xs-pull-8{right:66.66666667%}.col-xs-pull-7{right:58.33333333%}.col-xs-pull-6{right:50%}.col-xs-pull-5{right:41.66666667%}.col-xs-pull-4{right:33.33333333%}.col-xs-pull-3{right:25%}.col-xs-pull-2{right:16.66666667%}.col-xs-pull-1{right:8.33333333%}.col-xs-pull-0{right:auto}.col-xs-push-12{left:100%}.col-xs-push-11{left:91.66666667%}.col-xs-push-10{left:83.33333333%}.col-xs-push-9{left:75%}.col-xs-push-8{left:66.66666667%}.col-xs-push-7{left:58.33333333%}.col-xs-push-6{left:50%}.col-xs-push-5{left:41.66666667%}.col-xs-push-4{left:33.33333333%}.col-xs-push-3{left:25%}.col-xs-push-2{left:16.66666667%}.col-xs-push-1{left:8.33333333%}.col-xs-push-0{left:auto}.col-xs-offset-12{margin-left:100%}.col-xs-offset-11{margin-left:91.66666667%}.col-xs-offset-10{margin-left:83.33333333%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-8{margin-left:66.66666667%}.col-xs-offset-7{margin-left:58.33333333%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-5{margin-left:41.66666667%}.col-xs-offset-4{margin-left:33.33333333%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-2{margin-left:16.66666667%}.col-xs-offset-1{margin-left:8.33333333%}.col-xs-offset-0{margin-left:0}@media(min-width:768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-12{width:100%}.col-sm-11{width:91.66666667%}.col-sm-10{width:83.33333333%}.col-sm-9{width:75%}.col-sm-8{width:66.66666667%}.col-sm-7{width:58.33333333%}.col-sm-6{width:50%}.col-sm-5{width:41.66666667%}.col-sm-4{width:33.33333333%}.col-sm-3{width:25%}.col-sm-2{width:16.66666667%}.col-sm-1{width:8.33333333%}.col-sm-pull-12{right:100%}.col-sm-pull-11{right:91.66666667%}.col-sm-pull-10{right:83.33333333%}.col-sm-pull-9{right:75%}.col-sm-pull-8{right:66.66666667%}.col-sm-pull-7{right:58.33333333%}.col-sm-pull-6{right:50%}.col-sm-pull-5{right:41.66666667%}.col-sm-pull-4{right:33.33333333%}.col-sm-pull-3{right:25%}.col-sm-pull-2{right:16.66666667%}.col-sm-pull-1{right:8.33333333%}.col-sm-pull-0{right:auto}.col-sm-push-12{left:100%}.col-sm-push-11{left:91.66666667%}.col-sm-push-10{left:83.33333333%}.col-sm-push-9{left:75%}.col-sm-push-8{left:66.66666667%}.col-sm-push-7{left:58.33333333%}.col-sm-push-6{left:50%}.col-sm-push-5{left:41.66666667%}.col-sm-push-4{left:33.33333333%}.col-sm-push-3{left:25%}.col-sm-push-2{left:16.66666667%}.col-sm-push-1{left:8.33333333%}.col-sm-push-0{left:auto}.col-sm-offset-12{margin-left:100%}.col-sm-offset-11{margin-left:91.66666667%}.col-sm-offset-10{margin-left:83.33333333%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-8{margin-left:66.66666667%}.col-sm-offset-7{margin-left:58.33333333%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-5{margin-left:41.66666667%}.col-sm-offset-4{margin-left:33.33333333%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-2{margin-left:16.66666667%}.col-sm-offset-1{margin-left:8.33333333%}.col-sm-offset-0{margin-left:0}}@media(min-width:992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-12{width:100%}.col-md-11{width:91.66666667%}.col-md-10{width:83.33333333%}.col-md-9{width:75%}.col-md-8{width:66.66666667%}.col-md-7{width:58.33333333%}.col-md-6{width:50%}.col-md-5{width:41.66666667%}.col-md-4{width:33.33333333%}.col-md-3{width:25%}.col-md-2{width:16.66666667%}.col-md-1{width:8.33333333%}.col-md-pull-12{right:100%}.col-md-pull-11{right:91.66666667%}.col-md-pull-10{right:83.33333333%}.col-md-pull-9{right:75%}.col-md-pull-8{right:66.66666667%}.col-md-pull-7{right:58.33333333%}.col-md-pull-6{right:50%}.col-md-pull-5{right:41.66666667%}.col-md-pull-4{right:33.33333333%}.col-md-pull-3{right:25%}.col-md-pull-2{right:16.66666667%}.col-md-pull-1{right:8.33333333%}.col-md-pull-0{right:auto}.col-md-push-12{left:100%}.col-md-push-11{left:91.66666667%}.col-md-push-10{left:83.33333333%}.col-md-push-9{left:75%}.col-md-push-8{left:66.66666667%}.col-md-push-7{left:58.33333333%}.col-md-push-6{left:50%}.col-md-push-5{left:41.66666667%}.col-md-push-4{left:33.33333333%}.col-md-push-3{left:25%}.col-md-push-2{left:16.66666667%}.col-md-push-1{left:8.33333333%}.col-md-push-0{left:auto}.col-md-offset-12{margin-left:100%}.col-md-offset-11{margin-left:91.66666667%}.col-md-offset-10{margin-left:83.33333333%}.col-md-offset-9{margin-left:75%}.col-md-offset-8{margin-left:66.66666667%}.col-md-offset-7{margin-left:58.33333333%}.col-md-offset-6{margin-left:50%}.col-md-offset-5{margin-left:41.66666667%}.col-md-offset-4{margin-left:33.33333333%}.col-md-offset-3{margin-left:25%}.col-md-offset-2{margin-left:16.66666667%}.col-md-offset-1{margin-left:8.33333333%}.col-md-offset-0{margin-left:0}}@media(min-width:1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-12{width:100%}.col-lg-11{width:91.66666667%}.col-lg-10{width:83.33333333%}.col-lg-9{width:75%}.col-lg-8{width:66.66666667%}.col-lg-7{width:58.33333333%}.col-lg-6{width:50%}.col-lg-5{width:41.66666667%}.col-lg-4{width:33.33333333%}.col-lg-3{width:25%}.col-lg-2{width:16.66666667%}.col-lg-1{width:8.33333333%}.col-lg-pull-12{right:100%}.col-lg-pull-11{right:91.66666667%}.col-lg-pull-10{right:83.33333333%}.col-lg-pull-9{right:75%}.col-lg-pull-8{right:66.66666667%}.col-lg-pull-7{right:58.33333333%}.col-lg-pull-6{right:50%}.col-lg-pull-5{right:41.66666667%}.col-lg-pull-4{right:33.33333333%}.col-lg-pull-3{right:25%}.col-lg-pull-2{right:16.66666667%}.col-lg-pull-1{right:8.33333333%}.col-lg-pull-0{right:auto}.col-lg-push-12{left:100%}.col-lg-push-11{left:91.66666667%}.col-lg-push-10{left:83.33333333%}.col-lg-push-9{left:75%}.col-lg-push-8{left:66.66666667%}.col-lg-push-7{left:58.33333333%}.col-lg-push-6{left:50%}.col-lg-push-5{left:41.66666667%}.col-lg-push-4{left:33.33333333%}.col-lg-push-3{left:25%}.col-lg-push-2{left:16.66666667%}.col-lg-push-1{left:8.33333333%}.col-lg-push-0{left:auto}.col-lg-offset-12{margin-left:100%}.col-lg-offset-11{margin-left:91.66666667%}.col-lg-offset-10{margin-left:83.33333333%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-8{margin-left:66.66666667%}.col-lg-offset-7{margin-left:58.33333333%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-5{margin-left:41.66666667%}.col-lg-offset-4{margin-left:33.33333333%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-2{margin-left:16.66666667%}.col-lg-offset-1{margin-left:8.33333333%}.col-lg-offset-0{margin-left:0}}table{background-color:transparent}caption{padding-top:8px;padding-bottom:8px;color:#777;text-align:left}th{text-align:left}.table{width:100%;max-width:100%;margin-bottom:20px}.table>thead>tr>th,.table>tbody>tr>th,.table>tfoot>tr>th,.table>thead>tr>td,.table>tbody>tr>td,.table>tfoot>tr>td{padding:8px;line-height:1.42857143;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}.table-hover>tbody>tr:hover{background-color:#f5f5f5}table col[class*="col-"]{position:static;display:table-column;float:none}table td[class*="col-"],table th[class*="col-"]{position:static;display:table-cell;float:none}.table>thead>tr>td.active,.table>tbody>tr>td.active,.table>tfoot>tr>td.active,.table>thead>tr>th.active,.table>tbody>tr>th.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>tbody>tr.active>td,.table>tfoot>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr.active>th,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>tbody>tr>td.success,.table>tfoot>tr>td.success,.table>thead>tr>th.success,.table>tbody>tr>th.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>tbody>tr.success>td,.table>tfoot>tr.success>td,.table>thead>tr.success>th,.table>tbody>tr.success>th,.table>tfoot>tr.success>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr.success:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>tbody>tr>td.info,.table>tfoot>tr>td.info,.table>thead>tr>th.info,.table>tbody>tr>th.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>tbody>tr.info>td,.table>tfoot>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr.info>th,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>tbody>tr>td.warning,.table>tfoot>tr>td.warning,.table>thead>tr>th.warning,.table>tbody>tr>th.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>tbody>tr.warning>td,.table>tfoot>tr.warning>td,.table>thead>tr.warning>th,.table>tbody>tr.warning>th,.table>tfoot>tr.warning>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr.warning:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>tbody>tr>td.danger,.table>tfoot>tr>td.danger,.table>thead>tr>th.danger,.table>tbody>tr>th.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>tbody>tr.danger>td,.table>tfoot>tr.danger>td,.table>thead>tr.danger>th,.table>tbody>tr.danger>th,.table>tfoot>tr.danger>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr.danger:hover>th{background-color:#ebcccc}.table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{min-width:0;padding:0;margin:0;border:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;max-width:100%;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857143;color:#555}.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,box-shadow ease-in-out .15s}.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)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control::-ms-expand{background-color:transparent;border:0}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{background-color:#eee;opacity:1}.form-control[disabled],fieldset[disabled] .form-control{cursor:not-allowed}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){input[type="date"].form-control,input[type="time"].form-control,input[type="datetime-local"].form-control,input[type="month"].form-control{line-height:34px}input[type="date"].input-sm,input[type="time"].input-sm,input[type="datetime-local"].input-sm,input[type="month"].input-sm,.input-group-sm input[type="date"],.input-group-sm input[type="time"],.input-group-sm input[type="datetime-local"],.input-group-sm input[type="month"]{line-height:30px}input[type="date"].input-lg,input[type="time"].input-lg,input[type="datetime-local"].input-lg,input[type="month"].input-lg,.input-group-lg input[type="date"],.input-group-lg input[type="time"],.input-group-lg input[type="datetime-local"],.input-group-lg input[type="month"]{line-height:46px}}.form-group{margin-bottom:15px}.radio,.checkbox{position:relative;display:block;margin-top:10px;margin-bottom:10px}.radio label,.checkbox label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{position:absolute;margin-top:4px \9;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:normal;vertical-align:middle;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"].disabled,input[type="checkbox"].disabled,fieldset[disabled] input[type="radio"],fieldset[disabled] input[type="checkbox"]{cursor:not-allowed}.radio-inline.disabled,.checkbox-inline.disabled,fieldset[disabled] .radio-inline,fieldset[disabled] .checkbox-inline{cursor:not-allowed}.radio.disabled label,.checkbox.disabled label,fieldset[disabled] .radio label,fieldset[disabled] .checkbox label{cursor:not-allowed}.form-control-static{min-height:34px;padding-top:7px;padding-bottom:7px;margin-bottom:0}.form-control-static.input-lg,.form-control-static.input-sm{padding-right:0;padding-left:0}.input-sm{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm{height:30px;line-height:30px}textarea.input-sm,select[multiple].input-sm{height:auto}.form-group-sm .form-control{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.form-group-sm select.form-control{height:30px;line-height:30px}.form-group-sm textarea.form-control,.form-group-sm select[multiple].form-control{height:auto}.form-group-sm .form-control-static{height:30px;min-height:32px;padding:6px 10px;font-size:12px;line-height:1.5}.input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-lg{height:46px;line-height:46px}textarea.input-lg,select[multiple].input-lg{height:auto}.form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg select.form-control{height:46px;line-height:46px}.form-group-lg textarea.form-control,.form-group-lg select[multiple].form-control{height:auto}.form-group-lg .form-control-static{height:46px;min-height:38px;padding:11px 16px;font-size:18px;line-height:1.3333333}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.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}.input-lg+.form-control-feedback,.input-group-lg+.form-control-feedback,.form-group-lg .form-control+.form-control-feedback{width:46px;height:46px;line-height:46px}.input-sm+.form-control-feedback,.input-group-sm+.form-control-feedback,.form-group-sm .form-control+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline,.has-success.radio label,.has-success.checkbox label,.has-success.radio-inline label,.has-success.checkbox-inline label{color:#3c763d}.has-success .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)}.has-success .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}.has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline,.has-warning.radio label,.has-warning.checkbox label,.has-warning.radio-inline label,.has-warning.checkbox-inline label{color:#8a6d3b}.has-warning .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)}.has-warning .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}.has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline,.has-error.radio label,.has-error.checkbox label,.has-error.radio-inline label,.has-error.checkbox-inline label{color:#a94442}.has-error .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)}.has-error .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}.has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}.has-error .form-control-feedback{color:#a94442}.has-feedback label ~ .form-control-feedback{top:25px}.has-feedback label.sr-only ~ .form-control-feedback{top:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media(min-width:768px){.form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .form-control-static{display:inline-block}.form-inline .input-group{display:inline-table;vertical-align:middle}.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn,.form-inline .input-group .form-control{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.form-inline .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .radio label,.form-inline .checkbox label{padding-left:0}.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}.form-horizontal .has-feedback .form-control-feedback{right:15px}@media(min-width:768px){.form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media(min-width:768px){.form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:12px}}.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}.btn:focus,.btn:active:focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn.active.focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,.btn:focus,.btn.focus{color:#333;text-decoration:none}.btn:active,.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)}.btn.disabled,.btn[disabled],fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}a.btn.disabled,fieldset[disabled] a.btn{pointer-events:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:focus,.btn-default.focus{color:#333;background-color:#e6e6e6;border-color:#8c8c8c}.btn-default:hover{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{color:#333;background-color:#e6e6e6;border-color:#adadad}.btn-default:active:hover,.btn-default.active:hover,.open>.dropdown-toggle.btn-default:hover,.btn-default:active:focus,.btn-default.active:focus,.open>.dropdown-toggle.btn-default:focus,.btn-default:active.focus,.btn-default.active.focus,.open>.dropdown-toggle.btn-default.focus{color:#333;background-color:#d4d4d4;border-color:#8c8c8c}.btn-default:active,.btn-default.active,.open>.dropdown-toggle.btn-default{background-image:none}.btn-default.disabled:hover,.btn-default[disabled]:hover,fieldset[disabled] .btn-default:hover,.btn-default.disabled:focus,.btn-default[disabled]:focus,fieldset[disabled] .btn-default:focus,.btn-default.disabled.focus,.btn-default[disabled].focus,fieldset[disabled] .btn-default.focus{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary{color:#fff;background-color:#337ab7;border-color:#2e6da4}.btn-primary:focus,.btn-primary.focus{color:#fff;background-color:#286090;border-color:#122b40}.btn-primary:hover{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{color:#fff;background-color:#286090;border-color:#204d74}.btn-primary:active:hover,.btn-primary.active:hover,.open>.dropdown-toggle.btn-primary:hover,.btn-primary:active:focus,.btn-primary.active:focus,.open>.dropdown-toggle.btn-primary:focus,.btn-primary:active.focus,.btn-primary.active.focus,.open>.dropdown-toggle.btn-primary.focus{color:#fff;background-color:#204d74;border-color:#122b40}.btn-primary:active,.btn-primary.active,.open>.dropdown-toggle.btn-primary{background-image:none}.btn-primary.disabled:hover,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary:hover,.btn-primary.disabled:focus,.btn-primary[disabled]:focus,fieldset[disabled] .btn-primary:focus,.btn-primary.disabled.focus,.btn-primary[disabled].focus,fieldset[disabled] .btn-primary.focus{background-color:#337ab7;border-color:#2e6da4}.btn-primary .badge{color:#337ab7;background-color:#fff}.btn-success{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:focus,.btn-success.focus{color:#fff;background-color:#449d44;border-color:#255625}.btn-success:hover{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#398439}.btn-success:active:hover,.btn-success.active:hover,.open>.dropdown-toggle.btn-success:hover,.btn-success:active:focus,.btn-success.active:focus,.open>.dropdown-toggle.btn-success:focus,.btn-success:active.focus,.btn-success.active.focus,.open>.dropdown-toggle.btn-success.focus{color:#fff;background-color:#398439;border-color:#255625}.btn-success:active,.btn-success.active,.open>.dropdown-toggle.btn-success{background-image:none}.btn-success.disabled:hover,.btn-success[disabled]:hover,fieldset[disabled] .btn-success:hover,.btn-success.disabled:focus,.btn-success[disabled]:focus,fieldset[disabled] .btn-success:focus,.btn-success.disabled.focus,.btn-success[disabled].focus,fieldset[disabled] .btn-success.focus{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:focus,.btn-info.focus{color:#fff;background-color:#31b0d5;border-color:#1b6d85}.btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#269abc}.btn-info:active:hover,.btn-info.active:hover,.open>.dropdown-toggle.btn-info:hover,.btn-info:active:focus,.btn-info.active:focus,.open>.dropdown-toggle.btn-info:focus,.btn-info:active.focus,.btn-info.active.focus,.open>.dropdown-toggle.btn-info.focus{color:#fff;background-color:#269abc;border-color:#1b6d85}.btn-info:active,.btn-info.active,.open>.dropdown-toggle.btn-info{background-image:none}.btn-info.disabled:hover,.btn-info[disabled]:hover,fieldset[disabled] .btn-info:hover,.btn-info.disabled:focus,.btn-info[disabled]:focus,fieldset[disabled] .btn-info:focus,.btn-info.disabled.focus,.btn-info[disabled].focus,fieldset[disabled] .btn-info.focus{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:focus,.btn-warning.focus{color:#fff;background-color:#ec971f;border-color:#985f0d}.btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#d58512}.btn-warning:active:hover,.btn-warning.active:hover,.open>.dropdown-toggle.btn-warning:hover,.btn-warning:active:focus,.btn-warning.active:focus,.open>.dropdown-toggle.btn-warning:focus,.btn-warning:active.focus,.btn-warning.active.focus,.open>.dropdown-toggle.btn-warning.focus{color:#fff;background-color:#d58512;border-color:#985f0d}.btn-warning:active,.btn-warning.active,.open>.dropdown-toggle.btn-warning{background-image:none}.btn-warning.disabled:hover,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning:hover,.btn-warning.disabled:focus,.btn-warning[disabled]:focus,fieldset[disabled] .btn-warning:focus,.btn-warning.disabled.focus,.btn-warning[disabled].focus,fieldset[disabled] .btn-warning.focus{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:focus,.btn-danger.focus{color:#fff;background-color:#c9302c;border-color:#761c19}.btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#ac2925}.btn-danger:active:hover,.btn-danger.active:hover,.open>.dropdown-toggle.btn-danger:hover,.btn-danger:active:focus,.btn-danger.active:focus,.open>.dropdown-toggle.btn-danger:focus,.btn-danger:active.focus,.btn-danger.active.focus,.open>.dropdown-toggle.btn-danger.focus{color:#fff;background-color:#ac2925;border-color:#761c19}.btn-danger:active,.btn-danger.active,.open>.dropdown-toggle.btn-danger{background-image:none}.btn-danger.disabled:hover,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger:hover,.btn-danger.disabled:focus,.btn-danger[disabled]:focus,fieldset[disabled] .btn-danger:focus,.btn-danger.disabled.focus,.btn-danger[disabled].focus,fieldset[disabled] .btn-danger.focus{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:normal;color:#337ab7;border-radius:0}.btn-link,.btn-link:active,.btn-link.active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,fieldset[disabled] .btn-link:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:focus{color:#777;text-decoration:none}.btn-lg,.btn-group-lg>.btn{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-sm,.btn-group-sm>.btn{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block{display:block;width:100%}.btn-block+.btn-block{margin-top:5px}input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%}.fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}tr.collapse.in{display:table-row}tbody.collapse.in{display:table-row-group}.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}.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}.dropup,.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.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)}.dropdown-menu.pull-right{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#777}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false)}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{right:0;left:auto}.dropdown-menu-left{right:auto;left:0}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857143;color:#777;white-space:nowrap}.dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}.pull-right>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:4px dashed;border-bottom:4px solid \9}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media(min-width:768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{right:auto;left:0}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group-vertical>.btn{position:relative;float:left}.btn-group>.btn:hover,.btn-group-vertical>.btn:hover,.btn-group>.btn:focus,.btn-group-vertical>.btn:focus,.btn-group>.btn:active,.btn-group-vertical>.btn:active,.btn-group>.btn.active,.btn-group-vertical>.btn.active{z-index:2}.btn-group .btn+.btn,.btn-group .btn+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar .btn,.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}.btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}.btn-group.open .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)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret{margin-left:0}.btn-lg .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group>.btn{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.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}.btn-group-vertical>.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}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}.btn-group-justified>.btn-group .btn{width:100%}.btn-group-justified>.btn-group .dropdown-menu{left:auto}[data-toggle="buttons"]>.btn input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="buttons"]>.btn input[type="checkbox"],[data-toggle="buttons"]>.btn-group>.btn input[type="checkbox"]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-right:0;padding-left:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group .form-control:focus{z-index:3}.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}select.input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.input-group-lg>.input-group-btn>.btn,select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn{height:auto}.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input-group-btn>.btn{height:30px;line-height:30px}textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn,select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn{height:auto}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.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}.input-group-addon.input-sm{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn{border-top-right-radius:0;border-bottom-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn{border-top-left-radius:0;border-bottom-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn{position:relative}.input-group-btn>.btn+.btn{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>.btn:focus,.input-group-btn>.btn:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}.nav{padding-left:0;margin-bottom:0;list-style:none}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#337ab7}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857143;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;cursor:default;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent}.nav-tabs.nav-justified{width:100%;border-bottom:0}.nav-tabs.nav-justified>li{float:none}.nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-tabs.nav-justified>li>a{margin-bottom:0}}.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs.nav-justified>.active>a,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#337ab7}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified{width:100%}.nav-justified>li{float:none}.nav-justified>li>a{margin-bottom:5px;text-align:center}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media(min-width:768px){.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a{margin-bottom:0}}.nav-tabs-justified{border-bottom:0}.nav-tabs-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border:1px solid #ddd}@media(min-width:768px){.nav-tabs-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus{border-bottom-color:#fff}}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.navbar{position:relative;min-height:50px;margin-bottom:20px;border:1px solid transparent}@media(min-width:768px){.navbar{border-radius:4px}}@media(min-width:768px){.navbar-header{float:left}}.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)}.navbar-collapse.in{overflow-y:auto}@media(min-width:768px){.navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}.navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}.navbar-collapse.in{overflow-y:visible}.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:340px}@media(max-device-width:480px) and (orientation:landscape){.navbar-fixed-top .navbar-collapse,.navbar-fixed-bottom .navbar-collapse{max-height:200px}}.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:-15px;margin-left:-15px}@media(min-width:768px){.container>.navbar-header,.container-fluid>.navbar-header,.container>.navbar-collapse,.container-fluid>.navbar-collapse{margin-right:0;margin-left:0}}.navbar-static-top{z-index:1000;border-width:0 0 1px}@media(min-width:768px){.navbar-static-top{border-radius:0}}.navbar-fixed-top,.navbar-fixed-bottom{position:fixed;right:0;left:0;z-index:1030}@media(min-width:768px){.navbar-fixed-top,.navbar-fixed-bottom{border-radius:0}}.navbar-fixed-top{top:0;border-width:0 0 1px}.navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}.navbar-brand{float:left;height:50px;padding:15px 15px;font-size:18px;line-height:20px}.navbar-brand:hover,.navbar-brand:focus{text-decoration:none}.navbar-brand>img{display:block}@media(min-width:768px){.navbar>.container .navbar-brand,.navbar>.container-fluid .navbar-brand{margin-left:-15px}}.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}.navbar-toggle:focus{outline:0}.navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media(min-width:768px){.navbar-toggle{display:none}}.navbar-nav{margin:7.5px -15px}.navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}@media(max-width:767px){.navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}.navbar-nav .open .dropdown-menu>li>a,.navbar-nav .open .dropdown-menu .dropdown-header{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:hover,.navbar-nav .open .dropdown-menu>li>a:focus{background-image:none}}@media(min-width:768px){.navbar-nav{float:left;margin:0}.navbar-nav>li{float:left}.navbar-nav>li>a{padding-top:15px;padding-bottom:15px}}.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){.navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.navbar-form .form-control-static{display:inline-block}.navbar-form .input-group{display:inline-table;vertical-align:middle}.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn,.navbar-form .input-group .form-control{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .radio,.navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .radio label,.navbar-form .checkbox label{padding-left:0}.navbar-form .radio input[type="radio"],.navbar-form .checkbox input[type="checkbox"]{position:relative;margin-left:0}.navbar-form .has-feedback .form-control-feedback{top:0}}@media(max-width:767px){.navbar-form .form-group{margin-bottom:5px}.navbar-form .form-group:last-child{margin-bottom:0}}@media(min-width:768px){.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}}.navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}.navbar-fixed-bottom .navbar-nav>li>.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}.navbar-btn{margin-top:8px;margin-bottom:8px}.navbar-btn.btn-sm{margin-top:10px;margin-bottom:10px}.navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}.navbar-text{margin-top:15px;margin-bottom:15px}@media(min-width:768px){.navbar-text{float:left;margin-right:15px;margin-left:15px}}@media(min-width:768px){.navbar-left{float:left!important}.navbar-right{float:right!important;margin-right:-15px}.navbar-right ~ .navbar-right{margin-right:0}}.navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.navbar-default .navbar-brand{color:#777}.navbar-default .navbar-brand:hover,.navbar-default .navbar-brand:focus{color:#5e5e5e;background-color:transparent}.navbar-default .navbar-text{color:#777}.navbar-default .navbar-nav>li>a{color:#777}.navbar-default .navbar-nav>li>a:hover,.navbar-default .navbar-nav>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:hover,.navbar-default .navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:hover,.navbar-default .navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:hover,.navbar-default .navbar-toggle:focus{background-color:#ddd}.navbar-default .navbar-toggle .icon-bar{background-color:#888}.navbar-default .navbar-collapse,.navbar-default .navbar-form{border-color:#e7e7e7}.navbar-default .navbar-nav>.open>a,.navbar-default .navbar-nav>.open>a:hover,.navbar-default .navbar-nav>.open>a:focus{color:#555;background-color:#e7e7e7}@media(max-width:767px){.navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}}.navbar-default .navbar-link{color:#777}.navbar-default .navbar-link:hover{color:#333}.navbar-default .btn-link{color:#777}.navbar-default .btn-link:hover,.navbar-default .btn-link:focus{color:#333}.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:hover,.navbar-default .btn-link[disabled]:focus,fieldset[disabled] .navbar-default .btn-link:focus{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:hover,.navbar-inverse .navbar-brand:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-text{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav>li>a:hover,.navbar-inverse .navbar-nav>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:hover,.navbar-inverse .navbar-nav>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:hover,.navbar-inverse .navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:hover,.navbar-inverse .navbar-toggle:focus{background-color:#333}.navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}.navbar-inverse .navbar-collapse,.navbar-inverse .navbar-form{border-color:#101010}.navbar-inverse .navbar-nav>.open>a,.navbar-inverse .navbar-nav>.open>a:hover,.navbar-inverse .navbar-nav>.open>a:focus{color:#fff;background-color:#080808}@media(max-width:767px){.navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#9d9d9d}.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}}.navbar-inverse .navbar-link{color:#9d9d9d}.navbar-inverse .navbar-link:hover{color:#fff}.navbar-inverse .btn-link{color:#9d9d9d}.navbar-inverse .btn-link:hover,.navbar-inverse .btn-link:focus{color:#fff}.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:hover,.navbar-inverse .btn-link[disabled]:focus,fieldset[disabled] .navbar-inverse .btn-link:focus{color:#444}.breadcrumb{padding:8px 15px;margin-bottom:20px;list-style:none;background-color:#f5f5f5;border-radius:4px}.breadcrumb>li{display:inline-block}.breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}.breadcrumb>.active{color:#777}.pagination{display:inline-block;padding-left:0;margin:20px 0;border-radius:4px}.pagination>li{display:inline}.pagination>li>a,.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}.pagination>li:first-child>a,.pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.pagination>li:last-child>a,.pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}.pagination>li>a:hover,.pagination>li>span:hover,.pagination>li>a:focus,.pagination>li>span:focus{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>span,.pagination>.active>a:hover,.pagination>.active>span:hover,.pagination>.active>a:focus,.pagination>.active>span:focus{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>span,.pagination>.disabled>span:hover,.pagination>.disabled>span:focus,.pagination>.disabled>a,.pagination>.disabled>a:hover,.pagination>.disabled>a:focus{color:#777;cursor:not-allowed;background-color:#fff;border-color:#ddd}.pagination-lg>li>a,.pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}.pagination-lg>li:first-child>a,.pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}.pagination-lg>li:last-child>a,.pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}.pagination-sm>li>a,.pagination-sm>li>span{padding:5px 10px;font-size:12px;line-height:1.5}.pagination-sm>li:first-child>a,.pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}.pagination-sm>li:last-child>a,.pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}.pager{padding-left:0;margin:20px 0;text-align:center;list-style:none}.pager li{display:inline}.pager li>a,.pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #ddd;border-radius:15px}.pager li>a:hover,.pager li>a:focus{text-decoration:none;background-color:#eee}.pager .next>a,.pager .next>span{float:right}.pager .previous>a,.pager .previous>span{float:left}.pager .disabled>a,.pager .disabled>a:hover,.pager .disabled>a:focus,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.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.label:hover,a.label:focus{color:#fff;text-decoration:none;cursor:pointer}.label:empty{display:none}.btn .label{position:relative;top:-1px}.label-default{background-color:#777}.label-default[href]:hover,.label-default[href]:focus{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:hover,.label-primary[href]:focus{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:hover,.label-success[href]:focus{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:hover,.label-info[href]:focus{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:hover,.label-warning[href]:focus{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:hover,.label-danger[href]:focus{background-color:#c9302c}.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}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-xs .badge,.btn-group-xs>.btn .badge{top:0;padding:1px 5px}a.badge:hover,a.badge:focus{color:#fff;text-decoration:none;cursor:pointer}.list-group-item.active>.badge,.nav-pills>.active>a>.badge{color:#337ab7;background-color:#fff}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}.nav-pills>li>a>.badge{margin-left:3px}.jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#eee}.jumbotron h1,.jumbotron .h1{color:inherit}.jumbotron p{margin-bottom:15px;font-size:21px;font-weight:200}.jumbotron>hr{border-top-color:#d5d5d5}.container .jumbotron,.container-fluid .jumbotron{padding-right:15px;padding-left:15px;border-radius:6px}.jumbotron .container{max-width:100%}@media screen and (min-width:768px){.jumbotron{padding-top:48px;padding-bottom:48px}.container .jumbotron,.container-fluid .jumbotron{padding-right:60px;padding-left:60px}.jumbotron h1,.jumbotron .h1{font-size:63px}}.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}.thumbnail>img,.thumbnail a>img{margin-right:auto;margin-left:auto}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#337ab7}.thumbnail .caption{padding:9px;color:#333}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable,.alert-dismissible{padding-right:35px}.alert-dismissable .close,.alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .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}}.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)}.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}.progress-striped .progress-bar,.progress-bar-striped{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}.progress.active .progress-bar,.progress-bar.active{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .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)}.progress-bar-info{background-color:#5bc0de}.progress-striped .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)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .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)}.progress-bar-danger{background-color:#d9534f}.progress-striped .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)}.media{margin-top:15px}.media:first-child{margin-top:0}.media,.media-body{overflow:hidden;zoom:1}.media-body{width:10000px}.media-object{display:block}.media-object.img-thumbnail{max-width:none}.media-right,.media>.pull-right{padding-left:10px}.media-left,.media>.pull-left{padding-right:10px}.media-left,.media-right,.media-body{display:table-cell;vertical-align:top}.media-middle{vertical-align:middle}.media-bottom{vertical-align:bottom}.media-heading{margin-top:0;margin-bottom:5px}.media-list{padding-left:0;list-style:none}.list-group{padding-left:0;margin-bottom:20px}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}a.list-group-item,button.list-group-item{color:#555}a.list-group-item .list-group-item-heading,button.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,button.list-group-item:hover,a.list-group-item:focus,button.list-group-item:focus{color:#555;text-decoration:none;background-color:#f5f5f5}button.list-group-item{width:100%;text-align:left}.list-group-item.disabled,.list-group-item.disabled:hover,.list-group-item.disabled:focus{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:hover,.list-group-item.active:focus{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>.small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:hover .list-group-item-text,.list-group-item.active:focus .list-group-item-text{color:#c7ddef}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success,button.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading,button.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,button.list-group-item-success:hover,a.list-group-item-success:focus,button.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,button.list-group-item-success.active,a.list-group-item-success.active:hover,button.list-group-item-success.active:hover,a.list-group-item-success.active:focus,button.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info,button.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading,button.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,button.list-group-item-info:hover,a.list-group-item-info:focus,button.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,button.list-group-item-info.active,a.list-group-item-info.active:hover,button.list-group-item-info.active:hover,a.list-group-item-info.active:focus,button.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning,button.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading,button.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,button.list-group-item-warning:hover,a.list-group-item-warning:focus,button.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,button.list-group-item-warning.active,a.list-group-item-warning.active:hover,button.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus,button.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger,button.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading,button.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,button.list-group-item-danger:hover,a.list-group-item-danger:focus,button.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,button.list-group-item-danger.active,a.list-group-item-danger.active:hover,button.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus,button.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.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)}.panel-body{padding:15px}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a,.panel-title>small,.panel-title>.small,.panel-title>small>a,.panel-title>.small>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group,.panel>.panel-collapse>.list-group{margin-bottom:0}.panel>.list-group .list-group-item,.panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child,.panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}.panel>.list-group:last-child .list-group-item:last-child,.panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.list-group+.panel-footer{border-top-width:0}.panel>.table,.panel>.table-responsive>.table,.panel>.panel-collapse>.table{margin-bottom:0}.panel>.table caption,.panel>.table-responsive>.table caption,.panel>.panel-collapse>.table caption{padding-right:15px;padding-left:15px}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive,.panel>.table+.panel-body,.panel>.table-responsive+.panel-body{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{margin-bottom:0;border:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse>.panel-body,.panel-group .panel-heading+.panel-collapse>.list-group{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ddd}.panel-default>.panel-heading .badge{color:#f5f5f5;background-color:#333}.panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#337ab7}.panel-primary>.panel-heading{color:#fff;background-color:#337ab7;border-color:#337ab7}.panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#337ab7}.panel-primary>.panel-heading .badge{color:#337ab7;background-color:#fff}.panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#337ab7}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}.panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}.panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}.panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}.panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}.panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}.panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}.panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}.panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}.embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}.embed-responsive .embed-responsive-item,.embed-responsive iframe,.embed-responsive embed,.embed-responsive object,.embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}.embed-responsive-16by9{padding-bottom:56.25%}.embed-responsive-4by3{padding-bottom:75%}.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)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.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}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:transparent;border:0}.modal-open{overflow:hidden}.modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}.modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}.modal-open .modal{overflow-x:hidden;overflow-y:auto}.modal-dialog{position:relative;width:auto;margin:10px}.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)}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857143}.modal-body{position:relative;padding:15px}.modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}.modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media(min-width:768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}.modal-sm{width:300px}}@media(min-width:992px){.modal-lg{width:900px}}.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}.tooltip.in{filter:alpha(opacity=90);opacity:.9}.tooltip.top{padding:5px 0;margin-top:-3px}.tooltip.right{padding:0 5px;margin-left:3px}.tooltip.bottom{padding:5px 0;margin-top:3px}.tooltip.left{padding:0 5px;margin-left:-3px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}.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,.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}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{padding:8px 14px;margin:0;font-size:14px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{content:"";border-width:10px}.popover.top>.arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}.popover.top>.arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}.popover.right>.arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}.popover.bottom>.arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}.popover.bottom>.arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}.popover.left>.arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}.carousel{position:relative}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner>.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}.carousel-inner>.item>img,.carousel-inner>.item>a>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){.carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}.carousel-inner>.item.next,.carousel-inner>.item.active.right{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.prev,.carousel-inner>.item.active.left{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right,.carousel-inner>.item.active{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.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);filter:alpha(opacity=50);opacity:.5}.carousel-control.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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000',endColorstr='#00000000',GradientType=1);background-repeat:repeat-x}.carousel-control.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%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000',endColorstr='#80000000',GradientType=1);background-repeat:repeat-x}.carousel-control:hover,.carousel-control:focus{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%;margin-left:-10px}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%;margin-right:-10px}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;font-family:serif;line-height:1}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.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}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000 \9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}.carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}.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)}.carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-10px;font-size:30px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{margin-right:-10px}.carousel-caption{right:20%;left:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.clearfix:after,.dl-horizontal dd:before,.dl-horizontal dd:after,.container:before,.container:after,.container-fluid:before,.container-fluid:after,.row:before,.row:after,.form-horizontal .form-group:before,.form-horizontal .form-group:after,.btn-toolbar:before,.btn-toolbar:after,.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after,.nav:before,.nav:after,.navbar:before,.navbar:after,.navbar-header:before,.navbar-header:after,.navbar-collapse:before,.navbar-collapse:after,.pager:before,.pager:after,.panel-body:before,.panel-body:after,.modal-header:before,.modal-header:after,.modal-footer:before,.modal-footer:after{display:table;content:" "}.clearfix:after,.dl-horizontal dd:after,.container:after,.container-fluid:after,.row:after,.form-horizontal .form-group:after,.btn-toolbar:after,.btn-group-vertical>.btn-group:after,.nav:after,.navbar:after,.navbar-header:after,.navbar-collapse:after,.pager:after,.panel-body:after,.modal-header:after,.modal-footer:after{clear:both}.center-block{display:block;margin-right:auto;margin-left:auto}.pull-right{float:right!important}.pull-left{float:left!important}.hide{display:none!important}.show{display:block!important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none!important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none!important}.visible-xs-block,.visible-xs-inline,.visible-xs-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block{display:none!important}@media(max-width:767px){.visible-xs{display:block!important}table.visible-xs{display:table!important}tr.visible-xs{display:table-row!important}th.visible-xs,td.visible-xs{display:table-cell!important}}@media(max-width:767px){.visible-xs-block{display:block!important}}@media(max-width:767px){.visible-xs-inline{display:inline!important}}@media(max-width:767px){.visible-xs-inline-block{display:inline-block!important}}@media(min-width:768px) and (max-width:991px){.visible-sm{display:block!important}table.visible-sm{display:table!important}tr.visible-sm{display:table-row!important}th.visible-sm,td.visible-sm{display:table-cell!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-block{display:block!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline{display:inline!important}}@media(min-width:768px) and (max-width:991px){.visible-sm-inline-block{display:inline-block!important}}@media(min-width:992px) and (max-width:1199px){.visible-md{display:block!important}table.visible-md{display:table!important}tr.visible-md{display:table-row!important}th.visible-md,td.visible-md{display:table-cell!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-block{display:block!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline{display:inline!important}}@media(min-width:992px) and (max-width:1199px){.visible-md-inline-block{display:inline-block!important}}@media(min-width:1200px){.visible-lg{display:block!important}table.visible-lg{display:table!important}tr.visible-lg{display:table-row!important}th.visible-lg,td.visible-lg{display:table-cell!important}}@media(min-width:1200px){.visible-lg-block{display:block!important}}@media(min-width:1200px){.visible-lg-inline{display:inline!important}}@media(min-width:1200px){.visible-lg-inline-block{display:inline-block!important}}@media(max-width:767px){.hidden-xs{display:none!important}}@media(min-width:768px) and (max-width:991px){.hidden-sm{display:none!important}}@media(min-width:992px) and (max-width:1199px){.hidden-md{display:none!important}}@media(min-width:1200px){.hidden-lg{display:none!important}}.visible-print{display:none!important}@media print{.visible-print{display:block!important}table.visible-print{display:table!important}tr.visible-print{display:table-row!important}th.visible-print,td.visible-print{display:table-cell!important}}.visible-print-block{display:none!important}@media print{.visible-print-block{display:block!important}}.visible-print-inline{display:none!important}@media print{.visible-print-inline{display:inline!important}}.visible-print-inline-block{display:none!important}@media print{.visible-print-inline-block{display:inline-block!important}}@media print{.hidden-print{display:none!important}}
asset/css/font-awesome.css CHANGED
@@ -1,2086 +1,2086 @@
1
- /*!
2
- * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
3
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
- */
5
- /* FONT PATH
6
- * -------------------------- */
7
- @font-face {
8
- font-family: 'FontAwesome';
9
- src: url('../fonts/fontawesome-webfont.eot?v=4.5.0');
10
- src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
11
- font-weight: normal;
12
- font-style: normal;
13
- }
14
- .fa {
15
- display: inline-block;
16
- font: normal normal normal 14px/1 FontAwesome;
17
- font-size: inherit;
18
- text-rendering: auto;
19
- -webkit-font-smoothing: antialiased;
20
- -moz-osx-font-smoothing: grayscale;
21
- }
22
- /* makes the font 33% larger relative to the icon container */
23
- .fa-lg {
24
- font-size: 1.33333333em;
25
- line-height: 0.75em;
26
- vertical-align: -15%;
27
- }
28
- .fa-2x {
29
- font-size: 2em;
30
- }
31
- .fa-3x {
32
- font-size: 3em;
33
- }
34
- .fa-4x {
35
- font-size: 4em;
36
- }
37
- .fa-5x {
38
- font-size: 5em;
39
- }
40
- .fa-fw {
41
- width: 1.28571429em;
42
- text-align: center;
43
- }
44
- .fa-ul {
45
- padding-left: 0;
46
- margin-left: 2.14285714em;
47
- list-style-type: none;
48
- }
49
- .fa-ul > li {
50
- position: relative;
51
- }
52
- .fa-li {
53
- position: absolute;
54
- left: -2.14285714em;
55
- width: 2.14285714em;
56
- top: 0.14285714em;
57
- text-align: center;
58
- }
59
- .fa-li.fa-lg {
60
- left: -1.85714286em;
61
- }
62
- .fa-border {
63
- padding: .2em .25em .15em;
64
- border: solid 0.08em #eeeeee;
65
- border-radius: .1em;
66
- }
67
- .fa-pull-left {
68
- float: left;
69
- }
70
- .fa-pull-right {
71
- float: right;
72
- }
73
- .fa.fa-pull-left {
74
- margin-right: .3em;
75
- }
76
- .fa.fa-pull-right {
77
- margin-left: .3em;
78
- }
79
- /* Deprecated as of 4.4.0 */
80
- .pull-right {
81
- float: right;
82
- }
83
- .pull-left {
84
- float: left;
85
- }
86
- .fa.pull-left {
87
- margin-right: .3em;
88
- }
89
- .fa.pull-right {
90
- margin-left: .3em;
91
- }
92
- .fa-spin {
93
- -webkit-animation: fa-spin 2s infinite linear;
94
- animation: fa-spin 2s infinite linear;
95
- }
96
- .fa-pulse {
97
- -webkit-animation: fa-spin 1s infinite steps(8);
98
- animation: fa-spin 1s infinite steps(8);
99
- }
100
- @-webkit-keyframes fa-spin {
101
- 0% {
102
- -webkit-transform: rotate(0deg);
103
- transform: rotate(0deg);
104
- }
105
- 100% {
106
- -webkit-transform: rotate(359deg);
107
- transform: rotate(359deg);
108
- }
109
- }
110
- @keyframes fa-spin {
111
- 0% {
112
- -webkit-transform: rotate(0deg);
113
- transform: rotate(0deg);
114
- }
115
- 100% {
116
- -webkit-transform: rotate(359deg);
117
- transform: rotate(359deg);
118
- }
119
- }
120
- .fa-rotate-90 {
121
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
122
- -webkit-transform: rotate(90deg);
123
- -ms-transform: rotate(90deg);
124
- transform: rotate(90deg);
125
- }
126
- .fa-rotate-180 {
127
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
128
- -webkit-transform: rotate(180deg);
129
- -ms-transform: rotate(180deg);
130
- transform: rotate(180deg);
131
- }
132
- .fa-rotate-270 {
133
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
134
- -webkit-transform: rotate(270deg);
135
- -ms-transform: rotate(270deg);
136
- transform: rotate(270deg);
137
- }
138
- .fa-flip-horizontal {
139
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
140
- -webkit-transform: scale(-1, 1);
141
- -ms-transform: scale(-1, 1);
142
- transform: scale(-1, 1);
143
- }
144
- .fa-flip-vertical {
145
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
146
- -webkit-transform: scale(1, -1);
147
- -ms-transform: scale(1, -1);
148
- transform: scale(1, -1);
149
- }
150
- :root .fa-rotate-90,
151
- :root .fa-rotate-180,
152
- :root .fa-rotate-270,
153
- :root .fa-flip-horizontal,
154
- :root .fa-flip-vertical {
155
- filter: none;
156
- }
157
- .fa-stack {
158
- position: relative;
159
- display: inline-block;
160
- width: 2em;
161
- height: 2em;
162
- line-height: 2em;
163
- vertical-align: middle;
164
- }
165
- .fa-stack-1x,
166
- .fa-stack-2x {
167
- position: absolute;
168
- left: 0;
169
- width: 100%;
170
- text-align: center;
171
- }
172
- .fa-stack-1x {
173
- line-height: inherit;
174
- }
175
- .fa-stack-2x {
176
- font-size: 2em;
177
- }
178
- .fa-inverse {
179
- color: #ffffff;
180
- }
181
- /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
182
- readers do not read off random characters that represent icons */
183
- .fa-glass:before {
184
- content: "\f000";
185
- }
186
- .fa-music:before {
187
- content: "\f001";
188
- }
189
- .fa-search:before {
190
- content: "\f002";
191
- }
192
- .fa-envelope-o:before {
193
- content: "\f003";
194
- }
195
- .fa-heart:before {
196
- content: "\f004";
197
- }
198
- .fa-star:before {
199
- content: "\f005";
200
- }
201
- .fa-star-o:before {
202
- content: "\f006";
203
- }
204
- .fa-user:before {
205
- content: "\f007";
206
- }
207
- .fa-film:before {
208
- content: "\f008";
209
- }
210
- .fa-th-large:before {
211
- content: "\f009";
212
- }
213
- .fa-th:before {
214
- content: "\f00a";
215
- }
216
- .fa-th-list:before {
217
- content: "\f00b";
218
- }
219
- .fa-check:before {
220
- content: "\f00c";
221
- }
222
- .fa-remove:before,
223
- .fa-close:before,
224
- .fa-times:before {
225
- content: "\f00d";
226
- }
227
- .fa-search-plus:before {
228
- content: "\f00e";
229
- }
230
- .fa-search-minus:before {
231
- content: "\f010";
232
- }
233
- .fa-power-off:before {
234
- content: "\f011";
235
- }
236
- .fa-signal:before {
237
- content: "\f012";
238
- }
239
- .fa-gear:before,
240
- .fa-cog:before {
241
- content: "\f013";
242
- }
243
- .fa-trash-o:before {
244
- content: "\f014";
245
- }
246
- .fa-home:before {
247
- content: "\f015";
248
- }
249
- .fa-file-o:before {
250
- content: "\f016";
251
- }
252
- .fa-clock-o:before {
253
- content: "\f017";
254
- }
255
- .fa-road:before {
256
- content: "\f018";
257
- }
258
- .fa-download:before {
259
- content: "\f019";
260
- }
261
- .fa-arrow-circle-o-down:before {
262
- content: "\f01a";
263
- }
264
- .fa-arrow-circle-o-up:before {
265
- content: "\f01b";
266
- }
267
- .fa-inbox:before {
268
- content: "\f01c";
269
- }
270
- .fa-play-circle-o:before {
271
- content: "\f01d";
272
- }
273
- .fa-rotate-right:before,
274
- .fa-repeat:before {
275
- content: "\f01e";
276
- }
277
- .fa-refresh:before {
278
- content: "\f021";
279
- }
280
- .fa-list-alt:before {
281
- content: "\f022";
282
- }
283
- .fa-lock:before {
284
- content: "\f023";
285
- }
286
- .fa-flag:before {
287
- content: "\f024";
288
- }
289
- .fa-headphones:before {
290
- content: "\f025";
291
- }
292
- .fa-volume-off:before {
293
- content: "\f026";
294
- }
295
- .fa-volume-down:before {
296
- content: "\f027";
297
- }
298
- .fa-volume-up:before {
299
- content: "\f028";
300
- }
301
- .fa-qrcode:before {
302
- content: "\f029";
303
- }
304
- .fa-barcode:before {
305
- content: "\f02a";
306
- }
307
- .fa-tag:before {
308
- content: "\f02b";
309
- }
310
- .fa-tags:before {
311
- content: "\f02c";
312
- }
313
- .fa-book:before {
314
- content: "\f02d";
315
- }
316
- .fa-bookmark:before {
317
- content: "\f02e";
318
- }
319
- .fa-print:before {
320
- content: "\f02f";
321
- }
322
- .fa-camera:before {
323
- content: "\f030";
324
- }
325
- .fa-font:before {
326
- content: "\f031";
327
- }
328
- .fa-bold:before {
329
- content: "\f032";
330
- }
331
- .fa-italic:before {
332
- content: "\f033";
333
- }
334
- .fa-text-height:before {
335
- content: "\f034";
336
- }
337
- .fa-text-width:before {
338
- content: "\f035";
339
- }
340
- .fa-align-left:before {
341
- content: "\f036";
342
- }
343
- .fa-align-center:before {
344
- content: "\f037";
345
- }
346
- .fa-align-right:before {
347
- content: "\f038";
348
- }
349
- .fa-align-justify:before {
350
- content: "\f039";
351
- }
352
- .fa-list:before {
353
- content: "\f03a";
354
- }
355
- .fa-dedent:before,
356
- .fa-outdent:before {
357
- content: "\f03b";
358
- }
359
- .fa-indent:before {
360
- content: "\f03c";
361
- }
362
- .fa-video-camera:before {
363
- content: "\f03d";
364
- }
365
- .fa-photo:before,
366
- .fa-image:before,
367
- .fa-picture-o:before {
368
- content: "\f03e";
369
- }
370
- .fa-pencil:before {
371
- content: "\f040";
372
- }
373
- .fa-map-marker:before {
374
- content: "\f041";
375
- }
376
- .fa-adjust:before {
377
- content: "\f042";
378
- }
379
- .fa-tint:before {
380
- content: "\f043";
381
- }
382
- .fa-edit:before,
383
- .fa-pencil-square-o:before {
384
- content: "\f044";
385
- }
386
- .fa-share-square-o:before {
387
- content: "\f045";
388
- }
389
- .fa-check-square-o:before {
390
- content: "\f046";
391
- }
392
- .fa-arrows:before {
393
- content: "\f047";
394
- }
395
- .fa-step-backward:before {
396
- content: "\f048";
397
- }
398
- .fa-fast-backward:before {
399
- content: "\f049";
400
- }
401
- .fa-backward:before {
402
- content: "\f04a";
403
- }
404
- .fa-play:before {
405
- content: "\f04b";
406
- }
407
- .fa-pause:before {
408
- content: "\f04c";
409
- }
410
- .fa-stop:before {
411
- content: "\f04d";
412
- }
413
- .fa-forward:before {
414
- content: "\f04e";
415
- }
416
- .fa-fast-forward:before {
417
- content: "\f050";
418
- }
419
- .fa-step-forward:before {
420
- content: "\f051";
421
- }
422
- .fa-eject:before {
423
- content: "\f052";
424
- }
425
- .fa-chevron-left:before {
426
- content: "\f053";
427
- }
428
- .fa-chevron-right:before {
429
- content: "\f054";
430
- }
431
- .fa-plus-circle:before {
432
- content: "\f055";
433
- }
434
- .fa-minus-circle:before {
435
- content: "\f056";
436
- }
437
- .fa-times-circle:before {
438
- content: "\f057";
439
- }
440
- .fa-check-circle:before {
441
- content: "\f058";
442
- }
443
- .fa-question-circle:before {
444
- content: "\f059";
445
- }
446
- .fa-info-circle:before {
447
- content: "\f05a";
448
- }
449
- .fa-crosshairs:before {
450
- content: "\f05b";
451
- }
452
- .fa-times-circle-o:before {
453
- content: "\f05c";
454
- }
455
- .fa-check-circle-o:before {
456
- content: "\f05d";
457
- }
458
- .fa-ban:before {
459
- content: "\f05e";
460
- }
461
- .fa-arrow-left:before {
462
- content: "\f060";
463
- }
464
- .fa-arrow-right:before {
465
- content: "\f061";
466
- }
467
- .fa-arrow-up:before {
468
- content: "\f062";
469
- }
470
- .fa-arrow-down:before {
471
- content: "\f063";
472
- }
473
- .fa-mail-forward:before,
474
- .fa-share:before {
475
- content: "\f064";
476
- }
477
- .fa-expand:before {
478
- content: "\f065";
479
- }
480
- .fa-compress:before {
481
- content: "\f066";
482
- }
483
- .fa-plus:before {
484
- content: "\f067";
485
- }
486
- .fa-minus:before {
487
- content: "\f068";
488
- }
489
- .fa-asterisk:before {
490
- content: "\f069";
491
- }
492
- .fa-exclamation-circle:before {
493
- content: "\f06a";
494
- }
495
- .fa-gift:before {
496
- content: "\f06b";
497
- }
498
- .fa-leaf:before {
499
- content: "\f06c";
500
- }
501
- .fa-fire:before {
502
- content: "\f06d";
503
- }
504
- .fa-eye:before {
505
- content: "\f06e";
506
- }
507
- .fa-eye-slash:before {
508
- content: "\f070";
509
- }
510
- .fa-warning:before,
511
- .fa-exclamation-triangle:before {
512
- content: "\f071";
513
- }
514
- .fa-plane:before {
515
- content: "\f072";
516
- }
517
- .fa-calendar:before {
518
- content: "\f073";
519
- }
520
- .fa-random:before {
521
- content: "\f074";
522
- }
523
- .fa-comment:before {
524
- content: "\f075";
525
- }
526
- .fa-magnet:before {
527
- content: "\f076";
528
- }
529
- .fa-chevron-up:before {
530
- content: "\f077";
531
- }
532
- .fa-chevron-down:before {
533
- content: "\f078";
534
- }
535
- .fa-retweet:before {
536
- content: "\f079";
537
- }
538
- .fa-shopping-cart:before {
539
- content: "\f07a";
540
- }
541
- .fa-folder:before {
542
- content: "\f07b";
543
- }
544
- .fa-folder-open:before {
545
- content: "\f07c";
546
- }
547
- .fa-arrows-v:before {
548
- content: "\f07d";
549
- }
550
- .fa-arrows-h:before {
551
- content: "\f07e";
552
- }
553
- .fa-bar-chart-o:before,
554
- .fa-bar-chart:before {
555
- content: "\f080";
556
- }
557
- .fa-twitter-square:before {
558
- content: "\f081";
559
- }
560
- .fa-facebook-square:before {
561
- content: "\f082";
562
- }
563
- .fa-camera-retro:before {
564
- content: "\f083";
565
- }
566
- .fa-key:before {
567
- content: "\f084";
568
- }
569
- .fa-gears:before,
570
- .fa-cogs:before {
571
- content: "\f085";
572
- }
573
- .fa-comments:before {
574
- content: "\f086";
575
- }
576
- .fa-thumbs-o-up:before {
577
- content: "\f087";
578
- }
579
- .fa-thumbs-o-down:before {
580
- content: "\f088";
581
- }
582
- .fa-star-half:before {
583
- content: "\f089";
584
- }
585
- .fa-heart-o:before {
586
- content: "\f08a";
587
- }
588
- .fa-sign-out:before {
589
- content: "\f08b";
590
- }
591
- .fa-linkedin-square:before {
592
- content: "\f08c";
593
- }
594
- .fa-thumb-tack:before {
595
- content: "\f08d";
596
- }
597
- .fa-external-link:before {
598
- content: "\f08e";
599
- }
600
- .fa-sign-in:before {
601
- content: "\f090";
602
- }
603
- .fa-trophy:before {
604
- content: "\f091";
605
- }
606
- .fa-github-square:before {
607
- content: "\f092";
608
- }
609
- .fa-upload:before {
610
- content: "\f093";
611
- }
612
- .fa-lemon-o:before {
613
- content: "\f094";
614
- }
615
- .fa-phone:before {
616
- content: "\f095";
617
- }
618
- .fa-square-o:before {
619
- content: "\f096";
620
- }
621
- .fa-bookmark-o:before {
622
- content: "\f097";
623
- }
624
- .fa-phone-square:before {
625
- content: "\f098";
626
- }
627
- .fa-twitter:before {
628
- content: "\f099";
629
- }
630
- .fa-facebook-f:before,
631
- .fa-facebook:before {
632
- content: "\f09a";
633
- }
634
- .fa-github:before {
635
- content: "\f09b";
636
- }
637
- .fa-unlock:before {
638
- content: "\f09c";
639
- }
640
- .fa-credit-card:before {
641
- content: "\f09d";
642
- }
643
- .fa-feed:before,
644
- .fa-rss:before {
645
- content: "\f09e";
646
- }
647
- .fa-hdd-o:before {
648
- content: "\f0a0";
649
- }
650
- .fa-bullhorn:before {
651
- content: "\f0a1";
652
- }
653
- .fa-bell:before {
654
- content: "\f0f3";
655
- }
656
- .fa-certificate:before {
657
- content: "\f0a3";
658
- }
659
- .fa-hand-o-right:before {
660
- content: "\f0a4";
661
- }
662
- .fa-hand-o-left:before {
663
- content: "\f0a5";
664
- }
665
- .fa-hand-o-up:before {
666
- content: "\f0a6";
667
- }
668
- .fa-hand-o-down:before {
669
- content: "\f0a7";
670
- }
671
- .fa-arrow-circle-left:before {
672
- content: "\f0a8";
673
- }
674
- .fa-arrow-circle-right:before {
675
- content: "\f0a9";
676
- }
677
- .fa-arrow-circle-up:before {
678
- content: "\f0aa";
679
- }
680
- .fa-arrow-circle-down:before {
681
- content: "\f0ab";
682
- }
683
- .fa-globe:before {
684
- content: "\f0ac";
685
- }
686
- .fa-wrench:before {
687
- content: "\f0ad";
688
- }
689
- .fa-tasks:before {
690
- content: "\f0ae";
691
- }
692
- .fa-filter:before {
693
- content: "\f0b0";
694
- }
695
- .fa-briefcase:before {
696
- content: "\f0b1";
697
- }
698
- .fa-arrows-alt:before {
699
- content: "\f0b2";
700
- }
701
- .fa-group:before,
702
- .fa-users:before {
703
- content: "\f0c0";
704
- }
705
- .fa-chain:before,
706
- .fa-link:before {
707
- content: "\f0c1";
708
- }
709
- .fa-cloud:before {
710
- content: "\f0c2";
711
- }
712
- .fa-flask:before {
713
- content: "\f0c3";
714
- }
715
- .fa-cut:before,
716
- .fa-scissors:before {
717
- content: "\f0c4";
718
- }
719
- .fa-copy:before,
720
- .fa-files-o:before {
721
- content: "\f0c5";
722
- }
723
- .fa-paperclip:before {
724
- content: "\f0c6";
725
- }
726
- .fa-save:before,
727
- .fa-floppy-o:before {
728
- content: "\f0c7";
729
- }
730
- .fa-square:before {
731
- content: "\f0c8";
732
- }
733
- .fa-navicon:before,
734
- .fa-reorder:before,
735
- .fa-bars:before {
736
- content: "\f0c9";
737
- }
738
- .fa-list-ul:before {
739
- content: "\f0ca";
740
- }
741
- .fa-list-ol:before {
742
- content: "\f0cb";
743
- }
744
- .fa-strikethrough:before {
745
- content: "\f0cc";
746
- }
747
- .fa-underline:before {
748
- content: "\f0cd";
749
- }
750
- .fa-table:before {
751
- content: "\f0ce";
752
- }
753
- .fa-magic:before {
754
- content: "\f0d0";
755
- }
756
- .fa-truck:before {
757
- content: "\f0d1";
758
- }
759
- .fa-pinterest:before {
760
- content: "\f0d2";
761
- }
762
- .fa-pinterest-square:before {
763
- content: "\f0d3";
764
- }
765
- .fa-google-plus-square:before {
766
- content: "\f0d4";
767
- }
768
- .fa-google-plus:before {
769
- content: "\f0d5";
770
- }
771
- .fa-money:before {
772
- content: "\f0d6";
773
- }
774
- .fa-caret-down:before {
775
- content: "\f0d7";
776
- }
777
- .fa-caret-up:before {
778
- content: "\f0d8";
779
- }
780
- .fa-caret-left:before {
781
- content: "\f0d9";
782
- }
783
- .fa-caret-right:before {
784
- content: "\f0da";
785
- }
786
- .fa-columns:before {
787
- content: "\f0db";
788
- }
789
- .fa-unsorted:before,
790
- .fa-sort:before {
791
- content: "\f0dc";
792
- }
793
- .fa-sort-down:before,
794
- .fa-sort-desc:before {
795
- content: "\f0dd";
796
- }
797
- .fa-sort-up:before,
798
- .fa-sort-asc:before {
799
- content: "\f0de";
800
- }
801
- .fa-envelope:before {
802
- content: "\f0e0";
803
- }
804
- .fa-linkedin:before {
805
- content: "\f0e1";
806
- }
807
- .fa-rotate-left:before,
808
- .fa-undo:before {
809
- content: "\f0e2";
810
- }
811
- .fa-legal:before,
812
- .fa-gavel:before {
813
- content: "\f0e3";
814
- }
815
- .fa-dashboard:before,
816
- .fa-tachometer:before {
817
- content: "\f0e4";
818
- }
819
- .fa-comment-o:before {
820
- content: "\f0e5";
821
- }
822
- .fa-comments-o:before {
823
- content: "\f0e6";
824
- }
825
- .fa-flash:before,
826
- .fa-bolt:before {
827
- content: "\f0e7";
828
- }
829
- .fa-sitemap:before {
830
- content: "\f0e8";
831
- }
832
- .fa-umbrella:before {
833
- content: "\f0e9";
834
- }
835
- .fa-paste:before,
836
- .fa-clipboard:before {
837
- content: "\f0ea";
838
- }
839
- .fa-lightbulb-o:before {
840
- content: "\f0eb";
841
- }
842
- .fa-exchange:before {
843
- content: "\f0ec";
844
- }
845
- .fa-cloud-download:before {
846
- content: "\f0ed";
847
- }
848
- .fa-cloud-upload:before {
849
- content: "\f0ee";
850
- }
851
- .fa-user-md:before {
852
- content: "\f0f0";
853
- }
854
- .fa-stethoscope:before {
855
- content: "\f0f1";
856
- }
857
- .fa-suitcase:before {
858
- content: "\f0f2";
859
- }
860
- .fa-bell-o:before {
861
- content: "\f0a2";
862
- }
863
- .fa-coffee:before {
864
- content: "\f0f4";
865
- }
866
- .fa-cutlery:before {
867
- content: "\f0f5";
868
- }
869
- .fa-file-text-o:before {
870
- content: "\f0f6";
871
- }
872
- .fa-building-o:before {
873
- content: "\f0f7";
874
- }
875
- .fa-hospital-o:before {
876
- content: "\f0f8";
877
- }
878
- .fa-ambulance:before {
879
- content: "\f0f9";
880
- }
881
- .fa-medkit:before {
882
- content: "\f0fa";
883
- }
884
- .fa-fighter-jet:before {
885
- content: "\f0fb";
886
- }
887
- .fa-beer:before {
888
- content: "\f0fc";
889
- }
890
- .fa-h-square:before {
891
- content: "\f0fd";
892
- }
893
- .fa-plus-square:before {
894
- content: "\f0fe";
895
- }
896
- .fa-angle-double-left:before {
897
- content: "\f100";
898
- }
899
- .fa-angle-double-right:before {
900
- content: "\f101";
901
- }
902
- .fa-angle-double-up:before {
903
- content: "\f102";
904
- }
905
- .fa-angle-double-down:before {
906
- content: "\f103";
907
- }
908
- .fa-angle-left:before {
909
- content: "\f104";
910
- }
911
- .fa-angle-right:before {
912
- content: "\f105";
913
- }
914
- .fa-angle-up:before {
915
- content: "\f106";
916
- }
917
- .fa-angle-down:before {
918
- content: "\f107";
919
- }
920
- .fa-desktop:before {
921
- content: "\f108";
922
- }
923
- .fa-laptop:before {
924
- content: "\f109";
925
- }
926
- .fa-tablet:before {
927
- content: "\f10a";
928
- }
929
- .fa-mobile-phone:before,
930
- .fa-mobile:before {
931
- content: "\f10b";
932
- }
933
- .fa-circle-o:before {
934
- content: "\f10c";
935
- }
936
- .fa-quote-left:before {
937
- content: "\f10d";
938
- }
939
- .fa-quote-right:before {
940
- content: "\f10e";
941
- }
942
- .fa-spinner:before {
943
- content: "\f110";
944
- }
945
- .fa-circle:before {
946
- content: "\f111";
947
- }
948
- .fa-mail-reply:before,
949
- .fa-reply:before {
950
- content: "\f112";
951
- }
952
- .fa-github-alt:before {
953
- content: "\f113";
954
- }
955
- .fa-folder-o:before {
956
- content: "\f114";
957
- }
958
- .fa-folder-open-o:before {
959
- content: "\f115";
960
- }
961
- .fa-smile-o:before {
962
- content: "\f118";
963
- }
964
- .fa-frown-o:before {
965
- content: "\f119";
966
- }
967
- .fa-meh-o:before {
968
- content: "\f11a";
969
- }
970
- .fa-gamepad:before {
971
- content: "\f11b";
972
- }
973
- .fa-keyboard-o:before {
974
- content: "\f11c";
975
- }
976
- .fa-flag-o:before {
977
- content: "\f11d";
978
- }
979
- .fa-flag-checkered:before {
980
- content: "\f11e";
981
- }
982
- .fa-terminal:before {
983
- content: "\f120";
984
- }
985
- .fa-code:before {
986
- content: "\f121";
987
- }
988
- .fa-mail-reply-all:before,
989
- .fa-reply-all:before {
990
- content: "\f122";
991
- }
992
- .fa-star-half-empty:before,
993
- .fa-star-half-full:before,
994
- .fa-star-half-o:before {
995
- content: "\f123";
996
- }
997
- .fa-location-arrow:before {
998
- content: "\f124";
999
- }
1000
- .fa-crop:before {
1001
- content: "\f125";
1002
- }
1003
- .fa-code-fork:before {
1004
- content: "\f126";
1005
- }
1006
- .fa-unlink:before,
1007
- .fa-chain-broken:before {
1008
- content: "\f127";
1009
- }
1010
- .fa-question:before {
1011
- content: "\f128";
1012
- }
1013
- .fa-info:before {
1014
- content: "\f129";
1015
- }
1016
- .fa-exclamation:before {
1017
- content: "\f12a";
1018
- }
1019
- .fa-superscript:before {
1020
- content: "\f12b";
1021
- }
1022
- .fa-subscript:before {
1023
- content: "\f12c";
1024
- }
1025
- .fa-eraser:before {
1026
- content: "\f12d";
1027
- }
1028
- .fa-puzzle-piece:before {
1029
- content: "\f12e";
1030
- }
1031
- .fa-microphone:before {
1032
- content: "\f130";
1033
- }
1034
- .fa-microphone-slash:before {
1035
- content: "\f131";
1036
- }
1037
- .fa-shield:before {
1038
- content: "\f132";
1039
- }
1040
- .fa-calendar-o:before {
1041
- content: "\f133";
1042
- }
1043
- .fa-fire-extinguisher:before {
1044
- content: "\f134";
1045
- }
1046
- .fa-rocket:before {
1047
- content: "\f135";
1048
- }
1049
- .fa-maxcdn:before {
1050
- content: "\f136";
1051
- }
1052
- .fa-chevron-circle-left:before {
1053
- content: "\f137";
1054
- }
1055
- .fa-chevron-circle-right:before {
1056
- content: "\f138";
1057
- }
1058
- .fa-chevron-circle-up:before {
1059
- content: "\f139";
1060
- }
1061
- .fa-chevron-circle-down:before {
1062
- content: "\f13a";
1063
- }
1064
- .fa-html5:before {
1065
- content: "\f13b";
1066
- }
1067
- .fa-css3:before {
1068
- content: "\f13c";
1069
- }
1070
- .fa-anchor:before {
1071
- content: "\f13d";
1072
- }
1073
- .fa-unlock-alt:before {
1074
- content: "\f13e";
1075
- }
1076
- .fa-bullseye:before {
1077
- content: "\f140";
1078
- }
1079
- .fa-ellipsis-h:before {
1080
- content: "\f141";
1081
- }
1082
- .fa-ellipsis-v:before {
1083
- content: "\f142";
1084
- }
1085
- .fa-rss-square:before {
1086
- content: "\f143";
1087
- }
1088
- .fa-play-circle:before {
1089
- content: "\f144";
1090
- }
1091
- .fa-ticket:before {
1092
- content: "\f145";
1093
- }
1094
- .fa-minus-square:before {
1095
- content: "\f146";
1096
- }
1097
- .fa-minus-square-o:before {
1098
- content: "\f147";
1099
- }
1100
- .fa-level-up:before {
1101
- content: "\f148";
1102
- }
1103
- .fa-level-down:before {
1104
- content: "\f149";
1105
- }
1106
- .fa-check-square:before {
1107
- content: "\f14a";
1108
- }
1109
- .fa-pencil-square:before {
1110
- content: "\f14b";
1111
- }
1112
- .fa-external-link-square:before {
1113
- content: "\f14c";
1114
- }
1115
- .fa-share-square:before {
1116
- content: "\f14d";
1117
- }
1118
- .fa-compass:before {
1119
- content: "\f14e";
1120
- }
1121
- .fa-toggle-down:before,
1122
- .fa-caret-square-o-down:before {
1123
- content: "\f150";
1124
- }
1125
- .fa-toggle-up:before,
1126
- .fa-caret-square-o-up:before {
1127
- content: "\f151";
1128
- }
1129
- .fa-toggle-right:before,
1130
- .fa-caret-square-o-right:before {
1131
- content: "\f152";
1132
- }
1133
- .fa-euro:before,
1134
- .fa-eur:before {
1135
- content: "\f153";
1136
- }
1137
- .fa-gbp:before {
1138
- content: "\f154";
1139
- }
1140
- .fa-dollar:before,
1141
- .fa-usd:before {
1142
- content: "\f155";
1143
- }
1144
- .fa-rupee:before,
1145
- .fa-inr:before {
1146
- content: "\f156";
1147
- }
1148
- .fa-cny:before,
1149
- .fa-rmb:before,
1150
- .fa-yen:before,
1151
- .fa-jpy:before {
1152
- content: "\f157";
1153
- }
1154
- .fa-ruble:before,
1155
- .fa-rouble:before,
1156
- .fa-rub:before {
1157
- content: "\f158";
1158
- }
1159
- .fa-won:before,
1160
- .fa-krw:before {
1161
- content: "\f159";
1162
- }
1163
- .fa-bitcoin:before,
1164
- .fa-btc:before {
1165
- content: "\f15a";
1166
- }
1167
- .fa-file:before {
1168
- content: "\f15b";
1169
- }
1170
- .fa-file-text:before {
1171
- content: "\f15c";
1172
- }
1173
- .fa-sort-alpha-asc:before {
1174
- content: "\f15d";
1175
- }
1176
- .fa-sort-alpha-desc:before {
1177
- content: "\f15e";
1178
- }
1179
- .fa-sort-amount-asc:before {
1180
- content: "\f160";
1181
- }
1182
- .fa-sort-amount-desc:before {
1183
- content: "\f161";
1184
- }
1185
- .fa-sort-numeric-asc:before {
1186
- content: "\f162";
1187
- }
1188
- .fa-sort-numeric-desc:before {
1189
- content: "\f163";
1190
- }
1191
- .fa-thumbs-up:before {
1192
- content: "\f164";
1193
- }
1194
- .fa-thumbs-down:before {
1195
- content: "\f165";
1196
- }
1197
- .fa-youtube-square:before {
1198
- content: "\f166";
1199
- }
1200
- .fa-youtube:before {
1201
- content: "\f167";
1202
- }
1203
- .fa-xing:before {
1204
- content: "\f168";
1205
- }
1206
- .fa-xing-square:before {
1207
- content: "\f169";
1208
- }
1209
- .fa-youtube-play:before {
1210
- content: "\f16a";
1211
- }
1212
- .fa-dropbox:before {
1213
- content: "\f16b";
1214
- }
1215
- .fa-stack-overflow:before {
1216
- content: "\f16c";
1217
- }
1218
- .fa-instagram:before {
1219
- content: "\f16d";
1220
- }
1221
- .fa-flickr:before {
1222
- content: "\f16e";
1223
- }
1224
- .fa-adn:before {
1225
- content: "\f170";
1226
- }
1227
- .fa-bitbucket:before {
1228
- content: "\f171";
1229
- }
1230
- .fa-bitbucket-square:before {
1231
- content: "\f172";
1232
- }
1233
- .fa-tumblr:before {
1234
- content: "\f173";
1235
- }
1236
- .fa-tumblr-square:before {
1237
- content: "\f174";
1238
- }
1239
- .fa-long-arrow-down:before {
1240
- content: "\f175";
1241
- }
1242
- .fa-long-arrow-up:before {
1243
- content: "\f176";
1244
- }
1245
- .fa-long-arrow-left:before {
1246
- content: "\f177";
1247
- }
1248
- .fa-long-arrow-right:before {
1249
- content: "\f178";
1250
- }
1251
- .fa-apple:before {
1252
- content: "\f179";
1253
- }
1254
- .fa-windows:before {
1255
- content: "\f17a";
1256
- }
1257
- .fa-android:before {
1258
- content: "\f17b";
1259
- }
1260
- .fa-linux:before {
1261
- content: "\f17c";
1262
- }
1263
- .fa-dribbble:before {
1264
- content: "\f17d";
1265
- }
1266
- .fa-skype:before {
1267
- content: "\f17e";
1268
- }
1269
- .fa-foursquare:before {
1270
- content: "\f180";
1271
- }
1272
- .fa-trello:before {
1273
- content: "\f181";
1274
- }
1275
- .fa-female:before {
1276
- content: "\f182";
1277
- }
1278
- .fa-male:before {
1279
- content: "\f183";
1280
- }
1281
- .fa-gittip:before,
1282
- .fa-gratipay:before {
1283
- content: "\f184";
1284
- }
1285
- .fa-sun-o:before {
1286
- content: "\f185";
1287
- }
1288
- .fa-moon-o:before {
1289
- content: "\f186";
1290
- }
1291
- .fa-archive:before {
1292
- content: "\f187";
1293
- }
1294
- .fa-bug:before {
1295
- content: "\f188";
1296
- }
1297
- .fa-vk:before {
1298
- content: "\f189";
1299
- }
1300
- .fa-weibo:before {
1301
- content: "\f18a";
1302
- }
1303
- .fa-renren:before {
1304
- content: "\f18b";
1305
- }
1306
- .fa-pagelines:before {
1307
- content: "\f18c";
1308
- }
1309
- .fa-stack-exchange:before {
1310
- content: "\f18d";
1311
- }
1312
- .fa-arrow-circle-o-right:before {
1313
- content: "\f18e";
1314
- }
1315
- .fa-arrow-circle-o-left:before {
1316
- content: "\f190";
1317
- }
1318
- .fa-toggle-left:before,
1319
- .fa-caret-square-o-left:before {
1320
- content: "\f191";
1321
- }
1322
- .fa-dot-circle-o:before {
1323
- content: "\f192";
1324
- }
1325
- .fa-wheelchair:before {
1326
- content: "\f193";
1327
- }
1328
- .fa-vimeo-square:before {
1329
- content: "\f194";
1330
- }
1331
- .fa-turkish-lira:before,
1332
- .fa-try:before {
1333
- content: "\f195";
1334
- }
1335
- .fa-plus-square-o:before {
1336
- content: "\f196";
1337
- }
1338
- .fa-space-shuttle:before {
1339
- content: "\f197";
1340
- }
1341
- .fa-slack:before {
1342
- content: "\f198";
1343
- }
1344
- .fa-envelope-square:before {
1345
- content: "\f199";
1346
- }
1347
- .fa-wordpress:before {
1348
- content: "\f19a";
1349
- }
1350
- .fa-openid:before {
1351
- content: "\f19b";
1352
- }
1353
- .fa-institution:before,
1354
- .fa-bank:before,
1355
- .fa-university:before {
1356
- content: "\f19c";
1357
- }
1358
- .fa-mortar-board:before,
1359
- .fa-graduation-cap:before {
1360
- content: "\f19d";
1361
- }
1362
- .fa-yahoo:before {
1363
- content: "\f19e";
1364
- }
1365
- .fa-google:before {
1366
- content: "\f1a0";
1367
- }
1368
- .fa-reddit:before {
1369
- content: "\f1a1";
1370
- }
1371
- .fa-reddit-square:before {
1372
- content: "\f1a2";
1373
- }
1374
- .fa-stumbleupon-circle:before {
1375
- content: "\f1a3";
1376
- }
1377
- .fa-stumbleupon:before {
1378
- content: "\f1a4";
1379
- }
1380
- .fa-delicious:before {
1381
- content: "\f1a5";
1382
- }
1383
- .fa-digg:before {
1384
- content: "\f1a6";
1385
- }
1386
- .fa-pied-piper:before {
1387
- content: "\f1a7";
1388
- }
1389
- .fa-pied-piper-alt:before {
1390
- content: "\f1a8";
1391
- }
1392
- .fa-drupal:before {
1393
- content: "\f1a9";
1394
- }
1395
- .fa-joomla:before {
1396
- content: "\f1aa";
1397
- }
1398
- .fa-language:before {
1399
- content: "\f1ab";
1400
- }
1401
- .fa-fax:before {
1402
- content: "\f1ac";
1403
- }
1404
- .fa-building:before {
1405
- content: "\f1ad";
1406
- }
1407
- .fa-child:before {
1408
- content: "\f1ae";
1409
- }
1410
- .fa-paw:before {
1411
- content: "\f1b0";
1412
- }
1413
- .fa-spoon:before {
1414
- content: "\f1b1";
1415
- }
1416
- .fa-cube:before {
1417
- content: "\f1b2";
1418
- }
1419
- .fa-cubes:before {
1420
- content: "\f1b3";
1421
- }
1422
- .fa-behance:before {
1423
- content: "\f1b4";
1424
- }
1425
- .fa-behance-square:before {
1426
- content: "\f1b5";
1427
- }
1428
- .fa-steam:before {
1429
- content: "\f1b6";
1430
- }
1431
- .fa-steam-square:before {
1432
- content: "\f1b7";
1433
- }
1434
- .fa-recycle:before {
1435
- content: "\f1b8";
1436
- }
1437
- .fa-automobile:before,
1438
- .fa-car:before {
1439
- content: "\f1b9";
1440
- }
1441
- .fa-cab:before,
1442
- .fa-taxi:before {
1443
- content: "\f1ba";
1444
- }
1445
- .fa-tree:before {
1446
- content: "\f1bb";
1447
- }
1448
- .fa-spotify:before {
1449
- content: "\f1bc";
1450
- }
1451
- .fa-deviantart:before {
1452
- content: "\f1bd";
1453
- }
1454
- .fa-soundcloud:before {
1455
- content: "\f1be";
1456
- }
1457
- .fa-database:before {
1458
- content: "\f1c0";
1459
- }
1460
- .fa-file-pdf-o:before {
1461
- content: "\f1c1";
1462
- }
1463
- .fa-file-word-o:before {
1464
- content: "\f1c2";
1465
- }
1466
- .fa-file-excel-o:before {
1467
- content: "\f1c3";
1468
- }
1469
- .fa-file-powerpoint-o:before {
1470
- content: "\f1c4";
1471
- }
1472
- .fa-file-photo-o:before,
1473
- .fa-file-picture-o:before,
1474
- .fa-file-image-o:before {
1475
- content: "\f1c5";
1476
- }
1477
- .fa-file-zip-o:before,
1478
- .fa-file-archive-o:before {
1479
- content: "\f1c6";
1480
- }
1481
- .fa-file-sound-o:before,
1482
- .fa-file-audio-o:before {
1483
- content: "\f1c7";
1484
- }
1485
- .fa-file-movie-o:before,
1486
- .fa-file-video-o:before {
1487
- content: "\f1c8";
1488
- }
1489
- .fa-file-code-o:before {
1490
- content: "\f1c9";
1491
- }
1492
- .fa-vine:before {
1493
- content: "\f1ca";
1494
- }
1495
- .fa-codepen:before {
1496
- content: "\f1cb";
1497
- }
1498
- .fa-jsfiddle:before {
1499
- content: "\f1cc";
1500
- }
1501
- .fa-life-bouy:before,
1502
- .fa-life-buoy:before,
1503
- .fa-life-saver:before,
1504
- .fa-support:before,
1505
- .fa-life-ring:before {
1506
- content: "\f1cd";
1507
- }
1508
- .fa-circle-o-notch:before {
1509
- content: "\f1ce";
1510
- }
1511
- .fa-ra:before,
1512
- .fa-rebel:before {
1513
- content: "\f1d0";
1514
- }
1515
- .fa-ge:before,
1516
- .fa-empire:before {
1517
- content: "\f1d1";
1518
- }
1519
- .fa-git-square:before {
1520
- content: "\f1d2";
1521
- }
1522
- .fa-git:before {
1523
- content: "\f1d3";
1524
- }
1525
- .fa-y-combinator-square:before,
1526
- .fa-yc-square:before,
1527
- .fa-hacker-news:before {
1528
- content: "\f1d4";
1529
- }
1530
- .fa-tencent-weibo:before {
1531
- content: "\f1d5";
1532
- }
1533
- .fa-qq:before {
1534
- content: "\f1d6";
1535
- }
1536
- .fa-wechat:before,
1537
- .fa-weixin:before {
1538
- content: "\f1d7";
1539
- }
1540
- .fa-send:before,
1541
- .fa-paper-plane:before {
1542
- content: "\f1d8";
1543
- }
1544
- .fa-send-o:before,
1545
- .fa-paper-plane-o:before {
1546
- content: "\f1d9";
1547
- }
1548
- .fa-history:before {
1549
- content: "\f1da";
1550
- }
1551
- .fa-circle-thin:before {
1552
- content: "\f1db";
1553
- }
1554
- .fa-header:before {
1555
- content: "\f1dc";
1556
- }
1557
- .fa-paragraph:before {
1558
- content: "\f1dd";
1559
- }
1560
- .fa-sliders:before {
1561
- content: "\f1de";
1562
- }
1563
- .fa-share-alt:before {
1564
- content: "\f1e0";
1565
- }
1566
- .fa-share-alt-square:before {
1567
- content: "\f1e1";
1568
- }
1569
- .fa-bomb:before {
1570
- content: "\f1e2";
1571
- }
1572
- .fa-soccer-ball-o:before,
1573
- .fa-futbol-o:before {
1574
- content: "\f1e3";
1575
- }
1576
- .fa-tty:before {
1577
- content: "\f1e4";
1578
- }
1579
- .fa-binoculars:before {
1580
- content: "\f1e5";
1581
- }
1582
- .fa-plug:before {
1583
- content: "\f1e6";
1584
- }
1585
- .fa-slideshare:before {
1586
- content: "\f1e7";
1587
- }
1588
- .fa-twitch:before {
1589
- content: "\f1e8";
1590
- }
1591
- .fa-yelp:before {
1592
- content: "\f1e9";
1593
- }
1594
- .fa-newspaper-o:before {
1595
- content: "\f1ea";
1596
- }
1597
- .fa-wifi:before {
1598
- content: "\f1eb";
1599
- }
1600
- .fa-calculator:before {
1601
- content: "\f1ec";
1602
- }
1603
- .fa-paypal:before {
1604
- content: "\f1ed";
1605
- }
1606
- .fa-google-wallet:before {
1607
- content: "\f1ee";
1608
- }
1609
- .fa-cc-visa:before {
1610
- content: "\f1f0";
1611
- }
1612
- .fa-cc-mastercard:before {
1613
- content: "\f1f1";
1614
- }
1615
- .fa-cc-discover:before {
1616
- content: "\f1f2";
1617
- }
1618
- .fa-cc-amex:before {
1619
- content: "\f1f3";
1620
- }
1621
- .fa-cc-paypal:before {
1622
- content: "\f1f4";
1623
- }
1624
- .fa-cc-stripe:before {
1625
- content: "\f1f5";
1626
- }
1627
- .fa-bell-slash:before {
1628
- content: "\f1f6";
1629
- }
1630
- .fa-bell-slash-o:before {
1631
- content: "\f1f7";
1632
- }
1633
- .fa-trash:before {
1634
- content: "\f1f8";
1635
- }
1636
- .fa-copyright:before {
1637
- content: "\f1f9";
1638
- }
1639
- .fa-at:before {
1640
- content: "\f1fa";
1641
- }
1642
- .fa-eyedropper:before {
1643
- content: "\f1fb";
1644
- }
1645
- .fa-paint-brush:before {
1646
- content: "\f1fc";
1647
- }
1648
- .fa-birthday-cake:before {
1649
- content: "\f1fd";
1650
- }
1651
- .fa-area-chart:before {
1652
- content: "\f1fe";
1653
- }
1654
- .fa-pie-chart:before {
1655
- content: "\f200";
1656
- }
1657
- .fa-line-chart:before {
1658
- content: "\f201";
1659
- }
1660
- .fa-lastfm:before {
1661
- content: "\f202";
1662
- }
1663
- .fa-lastfm-square:before {
1664
- content: "\f203";
1665
- }
1666
- .fa-toggle-off:before {
1667
- content: "\f204";
1668
- }
1669
- .fa-toggle-on:before {
1670
- content: "\f205";
1671
- }
1672
- .fa-bicycle:before {
1673
- content: "\f206";
1674
- }
1675
- .fa-bus:before {
1676
- content: "\f207";
1677
- }
1678
- .fa-ioxhost:before {
1679
- content: "\f208";
1680
- }
1681
- .fa-angellist:before {
1682
- content: "\f209";
1683
- }
1684
- .fa-cc:before {
1685
- content: "\f20a";
1686
- }
1687
- .fa-shekel:before,
1688
- .fa-sheqel:before,
1689
- .fa-ils:before {
1690
- content: "\f20b";
1691
- }
1692
- .fa-meanpath:before {
1693
- content: "\f20c";
1694
- }
1695
- .fa-buysellads:before {
1696
- content: "\f20d";
1697
- }
1698
- .fa-connectdevelop:before {
1699
- content: "\f20e";
1700
- }
1701
- .fa-dashcube:before {
1702
- content: "\f210";
1703
- }
1704
- .fa-forumbee:before {
1705
- content: "\f211";
1706
- }
1707
- .fa-leanpub:before {
1708
- content: "\f212";
1709
- }
1710
- .fa-sellsy:before {
1711
- content: "\f213";
1712
- }
1713
- .fa-shirtsinbulk:before {
1714
- content: "\f214";
1715
- }
1716
- .fa-simplybuilt:before {
1717
- content: "\f215";
1718
- }
1719
- .fa-skyatlas:before {
1720
- content: "\f216";
1721
- }
1722
- .fa-cart-plus:before {
1723
- content: "\f217";
1724
- }
1725
- .fa-cart-arrow-down:before {
1726
- content: "\f218";
1727
- }
1728
- .fa-diamond:before {
1729
- content: "\f219";
1730
- }
1731
- .fa-ship:before {
1732
- content: "\f21a";
1733
- }
1734
- .fa-user-secret:before {
1735
- content: "\f21b";
1736
- }
1737
- .fa-motorcycle:before {
1738
- content: "\f21c";
1739
- }
1740
- .fa-street-view:before {
1741
- content: "\f21d";
1742
- }
1743
- .fa-heartbeat:before {
1744
- content: "\f21e";
1745
- }
1746
- .fa-venus:before {
1747
- content: "\f221";
1748
- }
1749
- .fa-mars:before {
1750
- content: "\f222";
1751
- }
1752
- .fa-mercury:before {
1753
- content: "\f223";
1754
- }
1755
- .fa-intersex:before,
1756
- .fa-transgender:before {
1757
- content: "\f224";
1758
- }
1759
- .fa-transgender-alt:before {
1760
- content: "\f225";
1761
- }
1762
- .fa-venus-double:before {
1763
- content: "\f226";
1764
- }
1765
- .fa-mars-double:before {
1766
- content: "\f227";
1767
- }
1768
- .fa-venus-mars:before {
1769
- content: "\f228";
1770
- }
1771
- .fa-mars-stroke:before {
1772
- content: "\f229";
1773
- }
1774
- .fa-mars-stroke-v:before {
1775
- content: "\f22a";
1776
- }
1777
- .fa-mars-stroke-h:before {
1778
- content: "\f22b";
1779
- }
1780
- .fa-neuter:before {
1781
- content: "\f22c";
1782
- }
1783
- .fa-genderless:before {
1784
- content: "\f22d";
1785
- }
1786
- .fa-facebook-official:before {
1787
- content: "\f230";
1788
- }
1789
- .fa-pinterest-p:before {
1790
- content: "\f231";
1791
- }
1792
- .fa-whatsapp:before {
1793
- content: "\f232";
1794
- }
1795
- .fa-server:before {
1796
- content: "\f233";
1797
- }
1798
- .fa-user-plus:before {
1799
- content: "\f234";
1800
- }
1801
- .fa-user-times:before {
1802
- content: "\f235";
1803
- }
1804
- .fa-hotel:before,
1805
- .fa-bed:before {
1806
- content: "\f236";
1807
- }
1808
- .fa-viacoin:before {
1809
- content: "\f237";
1810
- }
1811
- .fa-train:before {
1812
- content: "\f238";
1813
- }
1814
- .fa-subway:before {
1815
- content: "\f239";
1816
- }
1817
- .fa-medium:before {
1818
- content: "\f23a";
1819
- }
1820
- .fa-yc:before,
1821
- .fa-y-combinator:before {
1822
- content: "\f23b";
1823
- }
1824
- .fa-optin-monster:before {
1825
- content: "\f23c";
1826
- }
1827
- .fa-opencart:before {
1828
- content: "\f23d";
1829
- }
1830
- .fa-expeditedssl:before {
1831
- content: "\f23e";
1832
- }
1833
- .fa-battery-4:before,
1834
- .fa-battery-full:before {
1835
- content: "\f240";
1836
- }
1837
- .fa-battery-3:before,
1838
- .fa-battery-three-quarters:before {
1839
- content: "\f241";
1840
- }
1841
- .fa-battery-2:before,
1842
- .fa-battery-half:before {
1843
- content: "\f242";
1844
- }
1845
- .fa-battery-1:before,
1846
- .fa-battery-quarter:before {
1847
- content: "\f243";
1848
- }
1849
- .fa-battery-0:before,
1850
- .fa-battery-empty:before {
1851
- content: "\f244";
1852
- }
1853
- .fa-mouse-pointer:before {
1854
- content: "\f245";
1855
- }
1856
- .fa-i-cursor:before {
1857
- content: "\f246";
1858
- }
1859
- .fa-object-group:before {
1860
- content: "\f247";
1861
- }
1862
- .fa-object-ungroup:before {
1863
- content: "\f248";
1864
- }
1865
- .fa-sticky-note:before {
1866
- content: "\f249";
1867
- }
1868
- .fa-sticky-note-o:before {
1869
- content: "\f24a";
1870
- }
1871
- .fa-cc-jcb:before {
1872
- content: "\f24b";
1873
- }
1874
- .fa-cc-diners-club:before {
1875
- content: "\f24c";
1876
- }
1877
- .fa-clone:before {
1878
- content: "\f24d";
1879
- }
1880
- .fa-balance-scale:before {
1881
- content: "\f24e";
1882
- }
1883
- .fa-hourglass-o:before {
1884
- content: "\f250";
1885
- }
1886
- .fa-hourglass-1:before,
1887
- .fa-hourglass-start:before {
1888
- content: "\f251";
1889
- }
1890
- .fa-hourglass-2:before,
1891
- .fa-hourglass-half:before {
1892
- content: "\f252";
1893
- }
1894
- .fa-hourglass-3:before,
1895
- .fa-hourglass-end:before {
1896
- content: "\f253";
1897
- }
1898
- .fa-hourglass:before {
1899
- content: "\f254";
1900
- }
1901
- .fa-hand-grab-o:before,
1902
- .fa-hand-rock-o:before {
1903
- content: "\f255";
1904
- }
1905
- .fa-hand-stop-o:before,
1906
- .fa-hand-paper-o:before {
1907
- content: "\f256";
1908
- }
1909
- .fa-hand-scissors-o:before {
1910
- content: "\f257";
1911
- }
1912
- .fa-hand-lizard-o:before {
1913
- content: "\f258";
1914
- }
1915
- .fa-hand-spock-o:before {
1916
- content: "\f259";
1917
- }
1918
- .fa-hand-pointer-o:before {
1919
- content: "\f25a";
1920
- }
1921
- .fa-hand-peace-o:before {
1922
- content: "\f25b";
1923
- }
1924
- .fa-trademark:before {
1925
- content: "\f25c";
1926
- }
1927
- .fa-registered:before {
1928
- content: "\f25d";
1929
- }
1930
- .fa-creative-commons:before {
1931
- content: "\f25e";
1932
- }
1933
- .fa-gg:before {
1934
- content: "\f260";
1935
- }
1936
- .fa-gg-circle:before {
1937
- content: "\f261";
1938
- }
1939
- .fa-tripadvisor:before {
1940
- content: "\f262";
1941
- }
1942
- .fa-odnoklassniki:before {
1943
- content: "\f263";
1944
- }
1945
- .fa-odnoklassniki-square:before {
1946
- content: "\f264";
1947
- }
1948
- .fa-get-pocket:before {
1949
- content: "\f265";
1950
- }
1951
- .fa-wikipedia-w:before {
1952
- content: "\f266";
1953
- }
1954
- .fa-safari:before {
1955
- content: "\f267";
1956
- }
1957
- .fa-chrome:before {
1958
- content: "\f268";
1959
- }
1960
- .fa-firefox:before {
1961
- content: "\f269";
1962
- }
1963
- .fa-opera:before {
1964
- content: "\f26a";
1965
- }
1966
- .fa-internet-explorer:before {
1967
- content: "\f26b";
1968
- }
1969
- .fa-tv:before,
1970
- .fa-television:before {
1971
- content: "\f26c";
1972
- }
1973
- .fa-contao:before {
1974
- content: "\f26d";
1975
- }
1976
- .fa-500px:before {
1977
- content: "\f26e";
1978
- }
1979
- .fa-amazon:before {
1980
- content: "\f270";
1981
- }
1982
- .fa-calendar-plus-o:before {
1983
- content: "\f271";
1984
- }
1985
- .fa-calendar-minus-o:before {
1986
- content: "\f272";
1987
- }
1988
- .fa-calendar-times-o:before {
1989
- content: "\f273";
1990
- }
1991
- .fa-calendar-check-o:before {
1992
- content: "\f274";
1993
- }
1994
- .fa-industry:before {
1995
- content: "\f275";
1996
- }
1997
- .fa-map-pin:before {
1998
- content: "\f276";
1999
- }
2000
- .fa-map-signs:before {
2001
- content: "\f277";
2002
- }
2003
- .fa-map-o:before {
2004
- content: "\f278";
2005
- }
2006
- .fa-map:before {
2007
- content: "\f279";
2008
- }
2009
- .fa-commenting:before {
2010
- content: "\f27a";
2011
- }
2012
- .fa-commenting-o:before {
2013
- content: "\f27b";
2014
- }
2015
- .fa-houzz:before {
2016
- content: "\f27c";
2017
- }
2018
- .fa-vimeo:before {
2019
- content: "\f27d";
2020
- }
2021
- .fa-black-tie:before {
2022
- content: "\f27e";
2023
- }
2024
- .fa-fonticons:before {
2025
- content: "\f280";
2026
- }
2027
- .fa-reddit-alien:before {
2028
- content: "\f281";
2029
- }
2030
- .fa-edge:before {
2031
- content: "\f282";
2032
- }
2033
- .fa-credit-card-alt:before {
2034
- content: "\f283";
2035
- }
2036
- .fa-codiepie:before {
2037
- content: "\f284";
2038
- }
2039
- .fa-modx:before {
2040
- content: "\f285";
2041
- }
2042
- .fa-fort-awesome:before {
2043
- content: "\f286";
2044
- }
2045
- .fa-usb:before {
2046
- content: "\f287";
2047
- }
2048
- .fa-product-hunt:before {
2049
- content: "\f288";
2050
- }
2051
- .fa-mixcloud:before {
2052
- content: "\f289";
2053
- }
2054
- .fa-scribd:before {
2055
- content: "\f28a";
2056
- }
2057
- .fa-pause-circle:before {
2058
- content: "\f28b";
2059
- }
2060
- .fa-pause-circle-o:before {
2061
- content: "\f28c";
2062
- }
2063
- .fa-stop-circle:before {
2064
- content: "\f28d";
2065
- }
2066
- .fa-stop-circle-o:before {
2067
- content: "\f28e";
2068
- }
2069
- .fa-shopping-bag:before {
2070
- content: "\f290";
2071
- }
2072
- .fa-shopping-basket:before {
2073
- content: "\f291";
2074
- }
2075
- .fa-hashtag:before {
2076
- content: "\f292";
2077
- }
2078
- .fa-bluetooth:before {
2079
- content: "\f293";
2080
- }
2081
- .fa-bluetooth-b:before {
2082
- content: "\f294";
2083
- }
2084
- .fa-percent:before {
2085
- content: "\f295";
2086
- }
1
+ /*!
2
+ * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ @font-face {
8
+ font-family: 'FontAwesome';
9
+ src: url('../fonts/fontawesome-webfont.eot?v=4.5.0');
10
+ src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'), url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+ .fa {
15
+ display: inline-block;
16
+ font: normal normal normal 14px/1 FontAwesome;
17
+ font-size: inherit;
18
+ text-rendering: auto;
19
+ -webkit-font-smoothing: antialiased;
20
+ -moz-osx-font-smoothing: grayscale;
21
+ }
22
+ /* makes the font 33% larger relative to the icon container */
23
+ .fa-lg {
24
+ font-size: 1.33333333em;
25
+ line-height: 0.75em;
26
+ vertical-align: -15%;
27
+ }
28
+ .fa-2x {
29
+ font-size: 2em;
30
+ }
31
+ .fa-3x {
32
+ font-size: 3em;
33
+ }
34
+ .fa-4x {
35
+ font-size: 4em;
36
+ }
37
+ .fa-5x {
38
+ font-size: 5em;
39
+ }
40
+ .fa-fw {
41
+ width: 1.28571429em;
42
+ text-align: center;
43
+ }
44
+ .fa-ul {
45
+ padding-left: 0;
46
+ margin-left: 2.14285714em;
47
+ list-style-type: none;
48
+ }
49
+ .fa-ul > li {
50
+ position: relative;
51
+ }
52
+ .fa-li {
53
+ position: absolute;
54
+ left: -2.14285714em;
55
+ width: 2.14285714em;
56
+ top: 0.14285714em;
57
+ text-align: center;
58
+ }
59
+ .fa-li.fa-lg {
60
+ left: -1.85714286em;
61
+ }
62
+ .fa-border {
63
+ padding: .2em .25em .15em;
64
+ border: solid 0.08em #eeeeee;
65
+ border-radius: .1em;
66
+ }
67
+ .fa-pull-left {
68
+ float: left;
69
+ }
70
+ .fa-pull-right {
71
+ float: right;
72
+ }
73
+ .fa.fa-pull-left {
74
+ margin-right: .3em;
75
+ }
76
+ .fa.fa-pull-right {
77
+ margin-left: .3em;
78
+ }
79
+ /* Deprecated as of 4.4.0 */
80
+ .pull-right {
81
+ float: right;
82
+ }
83
+ .pull-left {
84
+ float: left;
85
+ }
86
+ .fa.pull-left {
87
+ margin-right: .3em;
88
+ }
89
+ .fa.pull-right {
90
+ margin-left: .3em;
91
+ }
92
+ .fa-spin {
93
+ -webkit-animation: fa-spin 2s infinite linear;
94
+ animation: fa-spin 2s infinite linear;
95
+ }
96
+ .fa-pulse {
97
+ -webkit-animation: fa-spin 1s infinite steps(8);
98
+ animation: fa-spin 1s infinite steps(8);
99
+ }
100
+ @-webkit-keyframes fa-spin {
101
+ 0% {
102
+ -webkit-transform: rotate(0deg);
103
+ transform: rotate(0deg);
104
+ }
105
+ 100% {
106
+ -webkit-transform: rotate(359deg);
107
+ transform: rotate(359deg);
108
+ }
109
+ }
110
+ @keyframes fa-spin {
111
+ 0% {
112
+ -webkit-transform: rotate(0deg);
113
+ transform: rotate(0deg);
114
+ }
115
+ 100% {
116
+ -webkit-transform: rotate(359deg);
117
+ transform: rotate(359deg);
118
+ }
119
+ }
120
+ .fa-rotate-90 {
121
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
122
+ -webkit-transform: rotate(90deg);
123
+ -ms-transform: rotate(90deg);
124
+ transform: rotate(90deg);
125
+ }
126
+ .fa-rotate-180 {
127
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
128
+ -webkit-transform: rotate(180deg);
129
+ -ms-transform: rotate(180deg);
130
+ transform: rotate(180deg);
131
+ }
132
+ .fa-rotate-270 {
133
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
134
+ -webkit-transform: rotate(270deg);
135
+ -ms-transform: rotate(270deg);
136
+ transform: rotate(270deg);
137
+ }
138
+ .fa-flip-horizontal {
139
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
140
+ -webkit-transform: scale(-1, 1);
141
+ -ms-transform: scale(-1, 1);
142
+ transform: scale(-1, 1);
143
+ }
144
+ .fa-flip-vertical {
145
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
146
+ -webkit-transform: scale(1, -1);
147
+ -ms-transform: scale(1, -1);
148
+ transform: scale(1, -1);
149
+ }
150
+ :root .fa-rotate-90,
151
+ :root .fa-rotate-180,
152
+ :root .fa-rotate-270,
153
+ :root .fa-flip-horizontal,
154
+ :root .fa-flip-vertical {
155
+ filter: none;
156
+ }
157
+ .fa-stack {
158
+ position: relative;
159
+ display: inline-block;
160
+ width: 2em;
161
+ height: 2em;
162
+ line-height: 2em;
163
+ vertical-align: middle;
164
+ }
165
+ .fa-stack-1x,
166
+ .fa-stack-2x {
167
+ position: absolute;
168
+ left: 0;
169
+ width: 100%;
170
+ text-align: center;
171
+ }
172
+ .fa-stack-1x {
173
+ line-height: inherit;
174
+ }
175
+ .fa-stack-2x {
176
+ font-size: 2em;
177
+ }
178
+ .fa-inverse {
179
+ color: #ffffff;
180
+ }
181
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
182
+ readers do not read off random characters that represent icons */
183
+ .fa-glass:before {
184
+ content: "\f000";
185
+ }
186
+ .fa-music:before {
187
+ content: "\f001";
188
+ }
189
+ .fa-search:before {
190
+ content: "\f002";
191
+ }
192
+ .fa-envelope-o:before {
193
+ content: "\f003";
194
+ }
195
+ .fa-heart:before {
196
+ content: "\f004";
197
+ }
198
+ .fa-star:before {
199
+ content: "\f005";
200
+ }
201
+ .fa-star-o:before {
202
+ content: "\f006";
203
+ }
204
+ .fa-user:before {
205
+ content: "\f007";
206
+ }
207
+ .fa-film:before {
208
+ content: "\f008";
209
+ }
210
+ .fa-th-large:before {
211
+ content: "\f009";
212
+ }
213
+ .fa-th:before {
214
+ content: "\f00a";
215
+ }
216
+ .fa-th-list:before {
217
+ content: "\f00b";
218
+ }
219
+ .fa-check:before {
220
+ content: "\f00c";
221
+ }
222
+ .fa-remove:before,
223
+ .fa-close:before,
224
+ .fa-times:before {
225
+ content: "\f00d";
226
+ }
227
+ .fa-search-plus:before {
228
+ content: "\f00e";
229
+ }
230
+ .fa-search-minus:before {
231
+ content: "\f010";
232
+ }
233
+ .fa-power-off:before {
234
+ content: "\f011";
235
+ }
236
+ .fa-signal:before {
237
+ content: "\f012";
238
+ }
239
+ .fa-gear:before,
240
+ .fa-cog:before {
241
+ content: "\f013";
242
+ }
243
+ .fa-trash-o:before {
244
+ content: "\f014";
245
+ }
246
+ .fa-home:before {
247
+ content: "\f015";
248
+ }
249
+ .fa-file-o:before {
250
+ content: "\f016";
251
+ }
252
+ .fa-clock-o:before {
253
+ content: "\f017";
254
+ }
255
+ .fa-road:before {
256
+ content: "\f018";
257
+ }
258
+ .fa-download:before {
259
+ content: "\f019";
260
+ }
261
+ .fa-arrow-circle-o-down:before {
262
+ content: "\f01a";
263
+ }
264
+ .fa-arrow-circle-o-up:before {
265
+ content: "\f01b";
266
+ }
267
+ .fa-inbox:before {
268
+ content: "\f01c";
269
+ }
270
+ .fa-play-circle-o:before {
271
+ content: "\f01d";
272
+ }
273
+ .fa-rotate-right:before,
274
+ .fa-repeat:before {
275
+ content: "\f01e";
276
+ }
277
+ .fa-refresh:before {
278
+ content: "\f021";
279
+ }
280
+ .fa-list-alt:before {
281
+ content: "\f022";
282
+ }
283
+ .fa-lock:before {
284
+ content: "\f023";
285
+ }
286
+ .fa-flag:before {
287
+ content: "\f024";
288
+ }
289
+ .fa-headphones:before {
290
+ content: "\f025";
291
+ }
292
+ .fa-volume-off:before {
293
+ content: "\f026";
294
+ }
295
+ .fa-volume-down:before {
296
+ content: "\f027";
297
+ }
298
+ .fa-volume-up:before {
299
+ content: "\f028";
300
+ }
301
+ .fa-qrcode:before {
302
+ content: "\f029";
303
+ }
304
+ .fa-barcode:before {
305
+ content: "\f02a";
306
+ }
307
+ .fa-tag:before {
308
+ content: "\f02b";
309
+ }
310
+ .fa-tags:before {
311
+ content: "\f02c";
312
+ }
313
+ .fa-book:before {
314
+ content: "\f02d";
315
+ }
316
+ .fa-bookmark:before {
317
+ content: "\f02e";
318
+ }
319
+ .fa-print:before {
320
+ content: "\f02f";
321
+ }
322
+ .fa-camera:before {
323
+ content: "\f030";
324
+ }
325
+ .fa-font:before {
326
+ content: "\f031";
327
+ }
328
+ .fa-bold:before {
329
+ content: "\f032";
330
+ }
331
+ .fa-italic:before {
332
+ content: "\f033";
333
+ }
334
+ .fa-text-height:before {
335
+ content: "\f034";
336
+ }
337
+ .fa-text-width:before {
338
+ content: "\f035";
339
+ }
340
+ .fa-align-left:before {
341
+ content: "\f036";
342
+ }
343
+ .fa-align-center:before {
344
+ content: "\f037";
345
+ }
346
+ .fa-align-right:before {
347
+ content: "\f038";
348
+ }
349
+ .fa-align-justify:before {
350
+ content: "\f039";
351
+ }
352
+ .fa-list:before {
353
+ content: "\f03a";
354
+ }
355
+ .fa-dedent:before,
356
+ .fa-outdent:before {
357
+ content: "\f03b";
358
+ }
359
+ .fa-indent:before {
360
+ content: "\f03c";
361
+ }
362
+ .fa-video-camera:before {
363
+ content: "\f03d";
364
+ }
365
+ .fa-photo:before,
366
+ .fa-image:before,
367
+ .fa-picture-o:before {
368
+ content: "\f03e";
369
+ }
370
+ .fa-pencil:before {
371
+ content: "\f040";
372
+ }
373
+ .fa-map-marker:before {
374
+ content: "\f041";
375
+ }
376
+ .fa-adjust:before {
377
+ content: "\f042";
378
+ }
379
+ .fa-tint:before {
380
+ content: "\f043";
381
+ }
382
+ .fa-edit:before,
383
+ .fa-pencil-square-o:before {
384
+ content: "\f044";
385
+ }
386
+ .fa-share-square-o:before {
387
+ content: "\f045";
388
+ }
389
+ .fa-check-square-o:before {
390
+ content: "\f046";
391
+ }
392
+ .fa-arrows:before {
393
+ content: "\f047";
394
+ }
395
+ .fa-step-backward:before {
396
+ content: "\f048";
397
+ }
398
+ .fa-fast-backward:before {
399
+ content: "\f049";
400
+ }
401
+ .fa-backward:before {
402
+ content: "\f04a";
403
+ }
404
+ .fa-play:before {
405
+ content: "\f04b";
406
+ }
407
+ .fa-pause:before {
408
+ content: "\f04c";
409
+ }
410
+ .fa-stop:before {
411
+ content: "\f04d";
412
+ }
413
+ .fa-forward:before {
414
+ content: "\f04e";
415
+ }
416
+ .fa-fast-forward:before {
417
+ content: "\f050";
418
+ }
419
+ .fa-step-forward:before {
420
+ content: "\f051";
421
+ }
422
+ .fa-eject:before {
423
+ content: "\f052";
424
+ }
425
+ .fa-chevron-left:before {
426
+ content: "\f053";
427
+ }
428
+ .fa-chevron-right:before {
429
+ content: "\f054";
430
+ }
431
+ .fa-plus-circle:before {
432
+ content: "\f055";
433
+ }
434
+ .fa-minus-circle:before {
435
+ content: "\f056";
436
+ }
437
+ .fa-times-circle:before {
438
+ content: "\f057";
439
+ }
440
+ .fa-check-circle:before {
441
+ content: "\f058";
442
+ }
443
+ .fa-question-circle:before {
444
+ content: "\f059";
445
+ }
446
+ .fa-info-circle:before {
447
+ content: "\f05a";
448
+ }
449
+ .fa-crosshairs:before {
450
+ content: "\f05b";
451
+ }
452
+ .fa-times-circle-o:before {
453
+ content: "\f05c";
454
+ }
455
+ .fa-check-circle-o:before {
456
+ content: "\f05d";
457
+ }
458
+ .fa-ban:before {
459
+ content: "\f05e";
460
+ }
461
+ .fa-arrow-left:before {
462
+ content: "\f060";
463
+ }
464
+ .fa-arrow-right:before {
465
+ content: "\f061";
466
+ }
467
+ .fa-arrow-up:before {
468
+ content: "\f062";
469
+ }
470
+ .fa-arrow-down:before {
471
+ content: "\f063";
472
+ }
473
+ .fa-mail-forward:before,
474
+ .fa-share:before {
475
+ content: "\f064";
476
+ }
477
+ .fa-expand:before {
478
+ content: "\f065";
479
+ }
480
+ .fa-compress:before {
481
+ content: "\f066";
482
+ }
483
+ .fa-plus:before {
484
+ content: "\f067";
485
+ }
486
+ .fa-minus:before {
487
+ content: "\f068";
488
+ }
489
+ .fa-asterisk:before {
490
+ content: "\f069";
491
+ }
492
+ .fa-exclamation-circle:before {
493
+ content: "\f06a";
494
+ }
495
+ .fa-gift:before {
496
+ content: "\f06b";
497
+ }
498
+ .fa-leaf:before {
499
+ content: "\f06c";
500
+ }
501
+ .fa-fire:before {
502
+ content: "\f06d";
503
+ }
504
+ .fa-eye:before {
505
+ content: "\f06e";
506
+ }
507
+ .fa-eye-slash:before {
508
+ content: "\f070";
509
+ }
510
+ .fa-warning:before,
511
+ .fa-exclamation-triangle:before {
512
+ content: "\f071";
513
+ }
514
+ .fa-plane:before {
515
+ content: "\f072";
516
+ }
517
+ .fa-calendar:before {
518
+ content: "\f073";
519
+ }
520
+ .fa-random:before {
521
+ content: "\f074";
522
+ }
523
+ .fa-comment:before {
524
+ content: "\f075";
525
+ }
526
+ .fa-magnet:before {
527
+ content: "\f076";
528
+ }
529
+ .fa-chevron-up:before {
530
+ content: "\f077";
531
+ }
532
+ .fa-chevron-down:before {
533
+ content: "\f078";
534
+ }
535
+ .fa-retweet:before {
536
+ content: "\f079";
537
+ }
538
+ .fa-shopping-cart:before {
539
+ content: "\f07a";
540
+ }
541
+ .fa-folder:before {
542
+ content: "\f07b";
543
+ }
544
+ .fa-folder-open:before {
545
+ content: "\f07c";
546
+ }
547
+ .fa-arrows-v:before {
548
+ content: "\f07d";
549
+ }
550
+ .fa-arrows-h:before {
551
+ content: "\f07e";
552
+ }
553
+ .fa-bar-chart-o:before,
554
+ .fa-bar-chart:before {
555
+ content: "\f080";
556
+ }
557
+ .fa-twitter-square:before {
558
+ content: "\f081";
559
+ }
560
+ .fa-facebook-square:before {
561
+ content: "\f082";
562
+ }
563
+ .fa-camera-retro:before {
564
+ content: "\f083";
565
+ }
566
+ .fa-key:before {
567
+ content: "\f084";
568
+ }
569
+ .fa-gears:before,
570
+ .fa-cogs:before {
571
+ content: "\f085";
572
+ }
573
+ .fa-comments:before {
574
+ content: "\f086";
575
+ }
576
+ .fa-thumbs-o-up:before {
577
+ content: "\f087";
578
+ }
579
+ .fa-thumbs-o-down:before {
580
+ content: "\f088";
581
+ }
582
+ .fa-star-half:before {
583
+ content: "\f089";
584
+ }
585
+ .fa-heart-o:before {
586
+ content: "\f08a";
587
+ }
588
+ .fa-sign-out:before {
589
+ content: "\f08b";
590
+ }
591
+ .fa-linkedin-square:before {
592
+ content: "\f08c";
593
+ }
594
+ .fa-thumb-tack:before {
595
+ content: "\f08d";
596
+ }
597
+ .fa-external-link:before {
598
+ content: "\f08e";
599
+ }
600
+ .fa-sign-in:before {
601
+ content: "\f090";
602
+ }
603
+ .fa-trophy:before {
604
+ content: "\f091";
605
+ }
606
+ .fa-github-square:before {
607
+ content: "\f092";
608
+ }
609
+ .fa-upload:before {
610
+ content: "\f093";
611
+ }
612
+ .fa-lemon-o:before {
613
+ content: "\f094";
614
+ }
615
+ .fa-phone:before {
616
+ content: "\f095";
617
+ }
618
+ .fa-square-o:before {
619
+ content: "\f096";
620
+ }
621
+ .fa-bookmark-o:before {
622
+ content: "\f097";
623
+ }
624
+ .fa-phone-square:before {
625
+ content: "\f098";
626
+ }
627
+ .fa-twitter:before {
628
+ content: "\f099";
629
+ }
630
+ .fa-facebook-f:before,
631
+ .fa-facebook:before {
632
+ content: "\f09a";
633
+ }
634
+ .fa-github:before {
635
+ content: "\f09b";
636
+ }
637
+ .fa-unlock:before {
638
+ content: "\f09c";
639
+ }
640
+ .fa-credit-card:before {
641
+ content: "\f09d";
642
+ }
643
+ .fa-feed:before,
644
+ .fa-rss:before {
645
+ content: "\f09e";
646
+ }
647
+ .fa-hdd-o:before {
648
+ content: "\f0a0";
649
+ }
650
+ .fa-bullhorn:before {
651
+ content: "\f0a1";
652
+ }
653
+ .fa-bell:before {
654
+ content: "\f0f3";
655
+ }
656
+ .fa-certificate:before {
657
+ content: "\f0a3";
658
+ }
659
+ .fa-hand-o-right:before {
660
+ content: "\f0a4";
661
+ }
662
+ .fa-hand-o-left:before {
663
+ content: "\f0a5";
664
+ }
665
+ .fa-hand-o-up:before {
666
+ content: "\f0a6";
667
+ }
668
+ .fa-hand-o-down:before {
669
+ content: "\f0a7";
670
+ }
671
+ .fa-arrow-circle-left:before {
672
+ content: "\f0a8";
673
+ }
674
+ .fa-arrow-circle-right:before {
675
+ content: "\f0a9";
676
+ }
677
+ .fa-arrow-circle-up:before {
678
+ content: "\f0aa";
679
+ }
680
+ .fa-arrow-circle-down:before {
681
+ content: "\f0ab";
682
+ }
683
+ .fa-globe:before {
684
+ content: "\f0ac";
685
+ }
686
+ .fa-wrench:before {
687
+ content: "\f0ad";
688
+ }
689
+ .fa-tasks:before {
690
+ content: "\f0ae";
691
+ }
692
+ .fa-filter:before {
693
+ content: "\f0b0";
694
+ }
695
+ .fa-briefcase:before {
696
+ content: "\f0b1";
697
+ }
698
+ .fa-arrows-alt:before {
699
+ content: "\f0b2";
700
+ }
701
+ .fa-group:before,
702
+ .fa-users:before {
703
+ content: "\f0c0";
704
+ }
705
+ .fa-chain:before,
706
+ .fa-link:before {
707
+ content: "\f0c1";
708
+ }
709
+ .fa-cloud:before {
710
+ content: "\f0c2";
711
+ }
712
+ .fa-flask:before {
713
+ content: "\f0c3";
714
+ }
715
+ .fa-cut:before,
716
+ .fa-scissors:before {
717
+ content: "\f0c4";
718
+ }
719
+ .fa-copy:before,
720
+ .fa-files-o:before {
721
+ content: "\f0c5";
722
+ }
723
+ .fa-paperclip:before {
724
+ content: "\f0c6";
725
+ }
726
+ .fa-save:before,
727
+ .fa-floppy-o:before {
728
+ content: "\f0c7";
729
+ }
730
+ .fa-square:before {
731
+ content: "\f0c8";
732
+ }
733
+ .fa-navicon:before,
734
+ .fa-reorder:before,
735
+ .fa-bars:before {
736
+ content: "\f0c9";
737
+ }
738
+ .fa-list-ul:before {
739
+ content: "\f0ca";
740
+ }
741
+ .fa-list-ol:before {
742
+ content: "\f0cb";
743
+ }
744
+ .fa-strikethrough:before {
745
+ content: "\f0cc";
746
+ }
747
+ .fa-underline:before {
748
+ content: "\f0cd";
749
+ }
750
+ .fa-table:before {
751
+ content: "\f0ce";
752
+ }
753
+ .fa-magic:before {
754
+ content: "\f0d0";
755
+ }
756
+ .fa-truck:before {
757
+ content: "\f0d1";
758
+ }
759
+ .fa-pinterest:before {
760
+ content: "\f0d2";
761
+ }
762
+ .fa-pinterest-square:before {
763
+ content: "\f0d3";
764
+ }
765
+ .fa-google-plus-square:before {
766
+ content: "\f0d4";
767
+ }
768
+ .fa-google-plus:before {
769
+ content: "\f0d5";
770
+ }
771
+ .fa-money:before {
772
+ content: "\f0d6";
773
+ }
774
+ .fa-caret-down:before {
775
+ content: "\f0d7";
776
+ }
777
+ .fa-caret-up:before {
778
+ content: "\f0d8";
779
+ }
780
+ .fa-caret-left:before {
781
+ content: "\f0d9";
782
+ }
783
+ .fa-caret-right:before {
784
+ content: "\f0da";
785
+ }
786
+ .fa-columns:before {
787
+ content: "\f0db";
788
+ }
789
+ .fa-unsorted:before,
790
+ .fa-sort:before {
791
+ content: "\f0dc";
792
+ }
793
+ .fa-sort-down:before,
794
+ .fa-sort-desc:before {
795
+ content: "\f0dd";
796
+ }
797
+ .fa-sort-up:before,
798
+ .fa-sort-asc:before {
799
+ content: "\f0de";
800
+ }
801
+ .fa-envelope:before {
802
+ content: "\f0e0";
803
+ }
804
+ .fa-linkedin:before {
805
+ content: "\f0e1";
806
+ }
807
+ .fa-rotate-left:before,
808
+ .fa-undo:before {
809
+ content: "\f0e2";
810
+ }
811
+ .fa-legal:before,
812
+ .fa-gavel:before {
813
+ content: "\f0e3";
814
+ }
815
+ .fa-dashboard:before,
816
+ .fa-tachometer:before {
817
+ content: "\f0e4";
818
+ }
819
+ .fa-comment-o:before {
820
+ content: "\f0e5";
821
+ }
822
+ .fa-comments-o:before {
823
+ content: "\f0e6";
824
+ }
825
+ .fa-flash:before,
826
+ .fa-bolt:before {
827
+ content: "\f0e7";
828
+ }
829
+ .fa-sitemap:before {
830
+ content: "\f0e8";
831
+ }
832
+ .fa-umbrella:before {
833
+ content: "\f0e9";
834
+ }
835
+ .fa-paste:before,
836
+ .fa-clipboard:before {
837
+ content: "\f0ea";
838
+ }
839
+ .fa-lightbulb-o:before {
840
+ content: "\f0eb";
841
+ }
842
+ .fa-exchange:before {
843
+ content: "\f0ec";
844
+ }
845
+ .fa-cloud-download:before {
846
+ content: "\f0ed";
847
+ }
848
+ .fa-cloud-upload:before {
849
+ content: "\f0ee";
850
+ }
851
+ .fa-user-md:before {
852
+ content: "\f0f0";
853
+ }
854
+ .fa-stethoscope:before {
855
+ content: "\f0f1";
856
+ }
857
+ .fa-suitcase:before {
858
+ content: "\f0f2";
859
+ }
860
+ .fa-bell-o:before {
861
+ content: "\f0a2";
862
+ }
863
+ .fa-coffee:before {
864
+ content: "\f0f4";
865
+ }
866
+ .fa-cutlery:before {
867
+ content: "\f0f5";
868
+ }
869
+ .fa-file-text-o:before {
870
+ content: "\f0f6";
871
+ }
872
+ .fa-building-o:before {
873
+ content: "\f0f7";
874
+ }
875
+ .fa-hospital-o:before {
876
+ content: "\f0f8";
877
+ }
878
+ .fa-ambulance:before {
879
+ content: "\f0f9";
880
+ }
881
+ .fa-medkit:before {
882
+ content: "\f0fa";
883
+ }
884
+ .fa-fighter-jet:before {
885
+ content: "\f0fb";
886
+ }
887
+ .fa-beer:before {
888
+ content: "\f0fc";
889
+ }
890
+ .fa-h-square:before {
891
+ content: "\f0fd";
892
+ }
893
+ .fa-plus-square:before {
894
+ content: "\f0fe";
895
+ }
896
+ .fa-angle-double-left:before {
897
+ content: "\f100";
898
+ }
899
+ .fa-angle-double-right:before {
900
+ content: "\f101";
901
+ }
902
+ .fa-angle-double-up:before {
903
+ content: "\f102";
904
+ }
905
+ .fa-angle-double-down:before {
906
+ content: "\f103";
907
+ }
908
+ .fa-angle-left:before {
909
+ content: "\f104";
910
+ }
911
+ .fa-angle-right:before {
912
+ content: "\f105";
913
+ }
914
+ .fa-angle-up:before {
915
+ content: "\f106";
916
+ }
917
+ .fa-angle-down:before {
918
+ content: "\f107";
919
+ }
920
+ .fa-desktop:before {
921
+ content: "\f108";
922
+ }
923
+ .fa-laptop:before {
924
+ content: "\f109";
925
+ }
926
+ .fa-tablet:before {
927
+ content: "\f10a";
928
+ }
929
+ .fa-mobile-phone:before,
930
+ .fa-mobile:before {
931
+ content: "\f10b";
932
+ }
933
+ .fa-circle-o:before {
934
+ content: "\f10c";
935
+ }
936
+ .fa-quote-left:before {
937
+ content: "\f10d";
938
+ }
939
+ .fa-quote-right:before {
940
+ content: "\f10e";
941
+ }
942
+ .fa-spinner:before {
943
+ content: "\f110";
944
+ }
945
+ .fa-circle:before {
946
+ content: "\f111";
947
+ }
948
+ .fa-mail-reply:before,
949
+ .fa-reply:before {
950
+ content: "\f112";
951
+ }
952
+ .fa-github-alt:before {
953
+ content: "\f113";
954
+ }
955
+ .fa-folder-o:before {
956
+ content: "\f114";
957
+ }
958
+ .fa-folder-open-o:before {
959
+ content: "\f115";
960
+ }
961
+ .fa-smile-o:before {
962
+ content: "\f118";
963
+ }
964
+ .fa-frown-o:before {
965
+ content: "\f119";
966
+ }
967
+ .fa-meh-o:before {
968
+ content: "\f11a";
969
+ }
970
+ .fa-gamepad:before {
971
+ content: "\f11b";
972
+ }
973
+ .fa-keyboard-o:before {
974
+ content: "\f11c";
975
+ }
976
+ .fa-flag-o:before {
977
+ content: "\f11d";
978
+ }
979
+ .fa-flag-checkered:before {
980
+ content: "\f11e";
981
+ }
982
+ .fa-terminal:before {
983
+ content: "\f120";
984
+ }
985
+ .fa-code:before {
986
+ content: "\f121";
987
+ }
988
+ .fa-mail-reply-all:before,
989
+ .fa-reply-all:before {
990
+ content: "\f122";
991
+ }
992
+ .fa-star-half-empty:before,
993
+ .fa-star-half-full:before,
994
+ .fa-star-half-o:before {
995
+ content: "\f123";
996
+ }
997
+ .fa-location-arrow:before {
998
+ content: "\f124";
999
+ }
1000
+ .fa-crop:before {
1001
+ content: "\f125";
1002
+ }
1003
+ .fa-code-fork:before {
1004
+ content: "\f126";
1005
+ }
1006
+ .fa-unlink:before,
1007
+ .fa-chain-broken:before {
1008
+ content: "\f127";
1009
+ }
1010
+ .fa-question:before {
1011
+ content: "\f128";
1012
+ }
1013
+ .fa-info:before {
1014
+ content: "\f129";
1015
+ }
1016
+ .fa-exclamation:before {
1017
+ content: "\f12a";
1018
+ }
1019
+ .fa-superscript:before {
1020
+ content: "\f12b";
1021
+ }
1022
+ .fa-subscript:before {
1023
+ content: "\f12c";
1024
+ }
1025
+ .fa-eraser:before {
1026
+ content: "\f12d";
1027
+ }
1028
+ .fa-puzzle-piece:before {
1029
+ content: "\f12e";
1030
+ }
1031
+ .fa-microphone:before {
1032
+ content: "\f130";
1033
+ }
1034
+ .fa-microphone-slash:before {
1035
+ content: "\f131";
1036
+ }
1037
+ .fa-shield:before {
1038
+ content: "\f132";
1039
+ }
1040
+ .fa-calendar-o:before {
1041
+ content: "\f133";
1042
+ }
1043
+ .fa-fire-extinguisher:before {
1044
+ content: "\f134";
1045
+ }
1046
+ .fa-rocket:before {
1047
+ content: "\f135";
1048
+ }
1049
+ .fa-maxcdn:before {
1050
+ content: "\f136";
1051
+ }
1052
+ .fa-chevron-circle-left:before {
1053
+ content: "\f137";
1054
+ }
1055
+ .fa-chevron-circle-right:before {
1056
+ content: "\f138";
1057
+ }
1058
+ .fa-chevron-circle-up:before {
1059
+ content: "\f139";
1060
+ }
1061
+ .fa-chevron-circle-down:before {
1062
+ content: "\f13a";
1063
+ }
1064
+ .fa-html5:before {
1065
+ content: "\f13b";
1066
+ }
1067
+ .fa-css3:before {
1068
+ content: "\f13c";
1069
+ }
1070
+ .fa-anchor:before {
1071
+ content: "\f13d";
1072
+ }
1073
+ .fa-unlock-alt:before {
1074
+ content: "\f13e";
1075
+ }
1076
+ .fa-bullseye:before {
1077
+ content: "\f140";
1078
+ }
1079
+ .fa-ellipsis-h:before {
1080
+ content: "\f141";
1081
+ }
1082
+ .fa-ellipsis-v:before {
1083
+ content: "\f142";
1084
+ }
1085
+ .fa-rss-square:before {
1086
+ content: "\f143";
1087
+ }
1088
+ .fa-play-circle:before {
1089
+ content: "\f144";
1090
+ }
1091
+ .fa-ticket:before {
1092
+ content: "\f145";
1093
+ }
1094
+ .fa-minus-square:before {
1095
+ content: "\f146";
1096
+ }
1097
+ .fa-minus-square-o:before {
1098
+ content: "\f147";
1099
+ }
1100
+ .fa-level-up:before {
1101
+ content: "\f148";
1102
+ }
1103
+ .fa-level-down:before {
1104
+ content: "\f149";
1105
+ }
1106
+ .fa-check-square:before {
1107
+ content: "\f14a";
1108
+ }
1109
+ .fa-pencil-square:before {
1110
+ content: "\f14b";
1111
+ }
1112
+ .fa-external-link-square:before {
1113
+ content: "\f14c";
1114
+ }
1115
+ .fa-share-square:before {
1116
+ content: "\f14d";
1117
+ }
1118
+ .fa-compass:before {
1119
+ content: "\f14e";
1120
+ }
1121
+ .fa-toggle-down:before,
1122
+ .fa-caret-square-o-down:before {
1123
+ content: "\f150";
1124
+ }
1125
+ .fa-toggle-up:before,
1126
+ .fa-caret-square-o-up:before {
1127
+ content: "\f151";
1128
+ }
1129
+ .fa-toggle-right:before,
1130
+ .fa-caret-square-o-right:before {
1131
+ content: "\f152";
1132
+ }
1133
+ .fa-euro:before,
1134
+ .fa-eur:before {
1135
+ content: "\f153";
1136
+ }
1137
+ .fa-gbp:before {
1138
+ content: "\f154";
1139
+ }
1140
+ .fa-dollar:before,
1141
+ .fa-usd:before {
1142
+ content: "\f155";
1143
+ }
1144
+ .fa-rupee:before,
1145
+ .fa-inr:before {
1146
+ content: "\f156";
1147
+ }
1148
+ .fa-cny:before,
1149
+ .fa-rmb:before,
1150
+ .fa-yen:before,
1151
+ .fa-jpy:before {
1152
+ content: "\f157";
1153
+ }
1154
+ .fa-ruble:before,
1155
+ .fa-rouble:before,
1156
+ .fa-rub:before {
1157
+ content: "\f158";
1158
+ }
1159
+ .fa-won:before,
1160
+ .fa-krw:before {
1161
+ content: "\f159";
1162
+ }
1163
+ .fa-bitcoin:before,
1164
+ .fa-btc:before {
1165
+ content: "\f15a";
1166
+ }
1167
+ .fa-file:before {
1168
+ content: "\f15b";
1169
+ }
1170
+ .fa-file-text:before {
1171
+ content: "\f15c";
1172
+ }
1173
+ .fa-sort-alpha-asc:before {
1174
+ content: "\f15d";
1175
+ }
1176
+ .fa-sort-alpha-desc:before {
1177
+ content: "\f15e";
1178
+ }
1179
+ .fa-sort-amount-asc:before {
1180
+ content: "\f160";
1181
+ }
1182
+ .fa-sort-amount-desc:before {
1183
+ content: "\f161";
1184
+ }
1185
+ .fa-sort-numeric-asc:before {
1186
+ content: "\f162";
1187
+ }
1188
+ .fa-sort-numeric-desc:before {
1189
+ content: "\f163";
1190
+ }
1191
+ .fa-thumbs-up:before {
1192
+ content: "\f164";
1193
+ }
1194
+ .fa-thumbs-down:before {
1195
+ content: "\f165";
1196
+ }
1197
+ .fa-youtube-square:before {
1198
+ content: "\f166";
1199
+ }
1200
+ .fa-youtube:before {
1201
+ content: "\f167";
1202
+ }
1203
+ .fa-xing:before {
1204
+ content: "\f168";
1205
+ }
1206
+ .fa-xing-square:before {
1207
+ content: "\f169";
1208
+ }
1209
+ .fa-youtube-play:before {
1210
+ content: "\f16a";
1211
+ }
1212
+ .fa-dropbox:before {
1213
+ content: "\f16b";
1214
+ }
1215
+ .fa-stack-overflow:before {
1216
+ content: "\f16c";
1217
+ }
1218
+ .fa-instagram:before {
1219
+ content: "\f16d";
1220
+ }
1221
+ .fa-flickr:before {
1222
+ content: "\f16e";
1223
+ }
1224
+ .fa-adn:before {
1225
+ content: "\f170";
1226
+ }
1227
+ .fa-bitbucket:before {
1228
+ content: "\f171";
1229
+ }
1230
+ .fa-bitbucket-square:before {
1231
+ content: "\f172";
1232
+ }
1233
+ .fa-tumblr:before {
1234
+ content: "\f173";
1235
+ }
1236
+ .fa-tumblr-square:before {
1237
+ content: "\f174";
1238
+ }
1239
+ .fa-long-arrow-down:before {
1240
+ content: "\f175";
1241
+ }
1242
+ .fa-long-arrow-up:before {
1243
+ content: "\f176";
1244
+ }
1245
+ .fa-long-arrow-left:before {
1246
+ content: "\f177";
1247
+ }
1248
+ .fa-long-arrow-right:before {
1249
+ content: "\f178";
1250
+ }
1251
+ .fa-apple:before {
1252
+ content: "\f179";
1253
+ }
1254
+ .fa-windows:before {
1255
+ content: "\f17a";
1256
+ }
1257
+ .fa-android:before {
1258
+ content: "\f17b";
1259
+ }
1260
+ .fa-linux:before {
1261
+ content: "\f17c";
1262
+ }
1263
+ .fa-dribbble:before {
1264
+ content: "\f17d";
1265
+ }
1266
+ .fa-skype:before {
1267
+ content: "\f17e";
1268
+ }
1269
+ .fa-foursquare:before {
1270
+ content: "\f180";
1271
+ }
1272
+ .fa-trello:before {
1273
+ content: "\f181";
1274
+ }
1275
+ .fa-female:before {
1276
+ content: "\f182";
1277
+ }
1278
+ .fa-male:before {
1279
+ content: "\f183";
1280
+ }
1281
+ .fa-gittip:before,
1282
+ .fa-gratipay:before {
1283
+ content: "\f184";
1284
+ }
1285
+ .fa-sun-o:before {
1286
+ content: "\f185";
1287
+ }
1288
+ .fa-moon-o:before {
1289
+ content: "\f186";
1290
+ }
1291
+ .fa-archive:before {
1292
+ content: "\f187";
1293
+ }
1294
+ .fa-bug:before {
1295
+ content: "\f188";
1296
+ }
1297
+ .fa-vk:before {
1298
+ content: "\f189";
1299
+ }
1300
+ .fa-weibo:before {
1301
+ content: "\f18a";
1302
+ }
1303
+ .fa-renren:before {
1304
+ content: "\f18b";
1305
+ }
1306
+ .fa-pagelines:before {
1307
+ content: "\f18c";
1308
+ }
1309
+ .fa-stack-exchange:before {
1310
+ content: "\f18d";
1311
+ }
1312
+ .fa-arrow-circle-o-right:before {
1313
+ content: "\f18e";
1314
+ }
1315
+ .fa-arrow-circle-o-left:before {
1316
+ content: "\f190";
1317
+ }
1318
+ .fa-toggle-left:before,
1319
+ .fa-caret-square-o-left:before {
1320
+ content: "\f191";
1321
+ }
1322
+ .fa-dot-circle-o:before {
1323
+ content: "\f192";
1324
+ }
1325
+ .fa-wheelchair:before {
1326
+ content: "\f193";
1327
+ }
1328
+ .fa-vimeo-square:before {
1329
+ content: "\f194";
1330
+ }
1331
+ .fa-turkish-lira:before,
1332
+ .fa-try:before {
1333
+ content: "\f195";
1334
+ }
1335
+ .fa-plus-square-o:before {
1336
+ content: "\f196";
1337
+ }
1338
+ .fa-space-shuttle:before {
1339
+ content: "\f197";
1340
+ }
1341
+ .fa-slack:before {
1342
+ content: "\f198";
1343
+ }
1344
+ .fa-envelope-square:before {
1345
+ content: "\f199";
1346
+ }
1347
+ .fa-wordpress:before {
1348
+ content: "\f19a";
1349
+ }
1350
+ .fa-openid:before {
1351
+ content: "\f19b";
1352
+ }
1353
+ .fa-institution:before,
1354
+ .fa-bank:before,
1355
+ .fa-university:before {
1356
+ content: "\f19c";
1357
+ }
1358
+ .fa-mortar-board:before,
1359
+ .fa-graduation-cap:before {
1360
+ content: "\f19d";
1361
+ }
1362
+ .fa-yahoo:before {
1363
+ content: "\f19e";
1364
+ }
1365
+ .fa-google:before {
1366
+ content: "\f1a0";
1367
+ }
1368
+ .fa-reddit:before {
1369
+ content: "\f1a1";
1370
+ }
1371
+ .fa-reddit-square:before {
1372
+ content: "\f1a2";
1373
+ }
1374
+ .fa-stumbleupon-circle:before {
1375
+ content: "\f1a3";
1376
+ }
1377
+ .fa-stumbleupon:before {
1378
+ content: "\f1a4";
1379
+ }
1380
+ .fa-delicious:before {
1381
+ content: "\f1a5";
1382
+ }
1383
+ .fa-digg:before {
1384
+ content: "\f1a6";
1385
+ }
1386
+ .fa-pied-piper:before {
1387
+ content: "\f1a7";
1388
+ }
1389
+ .fa-pied-piper-alt:before {
1390
+ content: "\f1a8";
1391
+ }
1392
+ .fa-drupal:before {
1393
+ content: "\f1a9";
1394
+ }
1395
+ .fa-joomla:before {
1396
+ content: "\f1aa";
1397
+ }
1398
+ .fa-language:before {
1399
+ content: "\f1ab";
1400
+ }
1401
+ .fa-fax:before {
1402
+ content: "\f1ac";
1403
+ }
1404
+ .fa-building:before {
1405
+ content: "\f1ad";
1406
+ }
1407
+ .fa-child:before {
1408
+ content: "\f1ae";
1409
+ }
1410
+ .fa-paw:before {
1411
+ content: "\f1b0";
1412
+ }
1413
+ .fa-spoon:before {
1414
+ content: "\f1b1";
1415
+ }
1416
+ .fa-cube:before {
1417
+ content: "\f1b2";
1418
+ }
1419
+ .fa-cubes:before {
1420
+ content: "\f1b3";
1421
+ }
1422
+ .fa-behance:before {
1423
+ content: "\f1b4";
1424
+ }
1425
+ .fa-behance-square:before {
1426
+ content: "\f1b5";
1427
+ }
1428
+ .fa-steam:before {
1429
+ content: "\f1b6";
1430
+ }
1431
+ .fa-steam-square:before {
1432
+ content: "\f1b7";
1433
+ }
1434
+ .fa-recycle:before {
1435
+ content: "\f1b8";
1436
+ }
1437
+ .fa-automobile:before,
1438
+ .fa-car:before {
1439
+ content: "\f1b9";
1440
+ }
1441
+ .fa-cab:before,
1442
+ .fa-taxi:before {
1443
+ content: "\f1ba";
1444
+ }
1445
+ .fa-tree:before {
1446
+ content: "\f1bb";
1447
+ }
1448
+ .fa-spotify:before {
1449
+ content: "\f1bc";
1450
+ }
1451
+ .fa-deviantart:before {
1452
+ content: "\f1bd";
1453
+ }
1454
+ .fa-soundcloud:before {
1455
+ content: "\f1be";
1456
+ }
1457
+ .fa-database:before {
1458
+ content: "\f1c0";
1459
+ }
1460
+ .fa-file-pdf-o:before {
1461
+ content: "\f1c1";
1462
+ }
1463
+ .fa-file-word-o:before {
1464
+ content: "\f1c2";
1465
+ }
1466
+ .fa-file-excel-o:before {
1467
+ content: "\f1c3";
1468
+ }
1469
+ .fa-file-powerpoint-o:before {
1470
+ content: "\f1c4";
1471
+ }
1472
+ .fa-file-photo-o:before,
1473
+ .fa-file-picture-o:before,
1474
+ .fa-file-image-o:before {
1475
+ content: "\f1c5";
1476
+ }
1477
+ .fa-file-zip-o:before,
1478
+ .fa-file-archive-o:before {
1479
+ content: "\f1c6";
1480
+ }
1481
+ .fa-file-sound-o:before,
1482
+ .fa-file-audio-o:before {
1483
+ content: "\f1c7";
1484
+ }
1485
+ .fa-file-movie-o:before,
1486
+ .fa-file-video-o:before {
1487
+ content: "\f1c8";
1488
+ }
1489
+ .fa-file-code-o:before {
1490
+ content: "\f1c9";
1491
+ }
1492
+ .fa-vine:before {
1493
+ content: "\f1ca";
1494
+ }
1495
+ .fa-codepen:before {
1496
+ content: "\f1cb";
1497
+ }
1498
+ .fa-jsfiddle:before {
1499
+ content: "\f1cc";
1500
+ }
1501
+ .fa-life-bouy:before,
1502
+ .fa-life-buoy:before,
1503
+ .fa-life-saver:before,
1504
+ .fa-support:before,
1505
+ .fa-life-ring:before {
1506
+ content: "\f1cd";
1507
+ }
1508
+ .fa-circle-o-notch:before {
1509
+ content: "\f1ce";
1510
+ }
1511
+ .fa-ra:before,
1512
+ .fa-rebel:before {
1513
+ content: "\f1d0";
1514
+ }
1515
+ .fa-ge:before,
1516
+ .fa-empire:before {
1517
+ content: "\f1d1";
1518
+ }
1519
+ .fa-git-square:before {
1520
+ content: "\f1d2";
1521
+ }
1522
+ .fa-git:before {
1523
+ content: "\f1d3";
1524
+ }
1525
+ .fa-y-combinator-square:before,
1526
+ .fa-yc-square:before,
1527
+ .fa-hacker-news:before {
1528
+ content: "\f1d4";
1529
+ }
1530
+ .fa-tencent-weibo:before {
1531
+ content: "\f1d5";
1532
+ }
1533
+ .fa-qq:before {
1534
+ content: "\f1d6";
1535
+ }
1536
+ .fa-wechat:before,
1537
+ .fa-weixin:before {
1538
+ content: "\f1d7";
1539
+ }
1540
+ .fa-send:before,
1541
+ .fa-paper-plane:before {
1542
+ content: "\f1d8";
1543
+ }
1544
+ .fa-send-o:before,
1545
+ .fa-paper-plane-o:before {
1546
+ content: "\f1d9";
1547
+ }
1548
+ .fa-history:before {
1549
+ content: "\f1da";
1550
+ }
1551
+ .fa-circle-thin:before {
1552
+ content: "\f1db";
1553
+ }
1554
+ .fa-header:before {
1555
+ content: "\f1dc";
1556
+ }
1557
+ .fa-paragraph:before {
1558
+ content: "\f1dd";
1559
+ }
1560
+ .fa-sliders:before {
1561
+ content: "\f1de";
1562
+ }
1563
+ .fa-share-alt:before {
1564
+ content: "\f1e0";
1565
+ }
1566
+ .fa-share-alt-square:before {
1567
+ content: "\f1e1";
1568
+ }
1569
+ .fa-bomb:before {
1570
+ content: "\f1e2";
1571
+ }
1572
+ .fa-soccer-ball-o:before,
1573
+ .fa-futbol-o:before {
1574
+ content: "\f1e3";
1575
+ }
1576
+ .fa-tty:before {
1577
+ content: "\f1e4";
1578
+ }
1579
+ .fa-binoculars:before {
1580
+ content: "\f1e5";
1581
+ }
1582
+ .fa-plug:before {
1583
+ content: "\f1e6";
1584
+ }
1585
+ .fa-slideshare:before {
1586
+ content: "\f1e7";
1587
+ }
1588
+ .fa-twitch:before {
1589
+ content: "\f1e8";
1590
+ }
1591
+ .fa-yelp:before {
1592
+ content: "\f1e9";
1593
+ }
1594
+ .fa-newspaper-o:before {
1595
+ content: "\f1ea";
1596
+ }
1597
+ .fa-wifi:before {
1598
+ content: "\f1eb";
1599
+ }
1600
+ .fa-calculator:before {
1601
+ content: "\f1ec";
1602
+ }
1603
+ .fa-paypal:before {
1604
+ content: "\f1ed";
1605
+ }
1606
+ .fa-google-wallet:before {
1607
+ content: "\f1ee";
1608
+ }
1609
+ .fa-cc-visa:before {
1610
+ content: "\f1f0";
1611
+ }
1612
+ .fa-cc-mastercard:before {
1613
+ content: "\f1f1";
1614
+ }
1615
+ .fa-cc-discover:before {
1616
+ content: "\f1f2";
1617
+ }
1618
+ .fa-cc-amex:before {
1619
+ content: "\f1f3";
1620
+ }
1621
+ .fa-cc-paypal:before {
1622
+ content: "\f1f4";
1623
+ }
1624
+ .fa-cc-stripe:before {
1625
+ content: "\f1f5";
1626
+ }
1627
+ .fa-bell-slash:before {
1628
+ content: "\f1f6";
1629
+ }
1630
+ .fa-bell-slash-o:before {
1631
+ content: "\f1f7";
1632
+ }
1633
+ .fa-trash:before {
1634
+ content: "\f1f8";
1635
+ }
1636
+ .fa-copyright:before {
1637
+ content: "\f1f9";
1638
+ }
1639
+ .fa-at:before {
1640
+ content: "\f1fa";
1641
+ }
1642
+ .fa-eyedropper:before {
1643
+ content: "\f1fb";
1644
+ }
1645
+ .fa-paint-brush:before {
1646
+ content: "\f1fc";
1647
+ }
1648
+ .fa-birthday-cake:before {
1649
+ content: "\f1fd";
1650
+ }
1651
+ .fa-area-chart:before {
1652
+ content: "\f1fe";
1653
+ }
1654
+ .fa-pie-chart:before {
1655
+ content: "\f200";
1656
+ }
1657
+ .fa-line-chart:before {
1658
+ content: "\f201";
1659
+ }
1660
+ .fa-lastfm:before {
1661
+ content: "\f202";
1662
+ }
1663
+ .fa-lastfm-square:before {
1664
+ content: "\f203";
1665
+ }
1666
+ .fa-toggle-off:before {
1667
+ content: "\f204";
1668
+ }
1669
+ .fa-toggle-on:before {
1670
+ content: "\f205";
1671
+ }
1672
+ .fa-bicycle:before {
1673
+ content: "\f206";
1674
+ }
1675
+ .fa-bus:before {
1676
+ content: "\f207";
1677
+ }
1678
+ .fa-ioxhost:before {
1679
+ content: "\f208";
1680
+ }
1681
+ .fa-angellist:before {
1682
+ content: "\f209";
1683
+ }
1684
+ .fa-cc:before {
1685
+ content: "\f20a";
1686
+ }
1687
+ .fa-shekel:before,
1688
+ .fa-sheqel:before,
1689
+ .fa-ils:before {
1690
+ content: "\f20b";
1691
+ }
1692
+ .fa-meanpath:before {
1693
+ content: "\f20c";
1694
+ }
1695
+ .fa-buysellads:before {
1696
+ content: "\f20d";
1697
+ }
1698
+ .fa-connectdevelop:before {
1699
+ content: "\f20e";
1700
+ }
1701
+ .fa-dashcube:before {
1702
+ content: "\f210";
1703
+ }
1704
+ .fa-forumbee:before {
1705
+ content: "\f211";
1706
+ }
1707
+ .fa-leanpub:before {
1708
+ content: "\f212";
1709
+ }
1710
+ .fa-sellsy:before {
1711
+ content: "\f213";
1712
+ }
1713
+ .fa-shirtsinbulk:before {
1714
+ content: "\f214";
1715
+ }
1716
+ .fa-simplybuilt:before {
1717
+ content: "\f215";
1718
+ }
1719
+ .fa-skyatlas:before {
1720
+ content: "\f216";
1721
+ }
1722
+ .fa-cart-plus:before {
1723
+ content: "\f217";
1724
+ }
1725
+ .fa-cart-arrow-down:before {
1726
+ content: "\f218";
1727
+ }
1728
+ .fa-diamond:before {
1729
+ content: "\f219";
1730
+ }
1731
+ .fa-ship:before {
1732
+ content: "\f21a";
1733
+ }
1734
+ .fa-user-secret:before {
1735
+ content: "\f21b";
1736
+ }
1737
+ .fa-motorcycle:before {
1738
+ content: "\f21c";
1739
+ }
1740
+ .fa-street-view:before {
1741
+ content: "\f21d";
1742
+ }
1743
+ .fa-heartbeat:before {
1744
+ content: "\f21e";
1745
+ }
1746
+ .fa-venus:before {
1747
+ content: "\f221";
1748
+ }
1749
+ .fa-mars:before {
1750
+ content: "\f222";
1751
+ }
1752
+ .fa-mercury:before {
1753
+ content: "\f223";
1754
+ }
1755
+ .fa-intersex:before,
1756
+ .fa-transgender:before {
1757
+ content: "\f224";
1758
+ }
1759
+ .fa-transgender-alt:before {
1760
+ content: "\f225";
1761
+ }
1762
+ .fa-venus-double:before {
1763
+ content: "\f226";
1764
+ }
1765
+ .fa-mars-double:before {
1766
+ content: "\f227";
1767
+ }
1768
+ .fa-venus-mars:before {
1769
+ content: "\f228";
1770
+ }
1771
+ .fa-mars-stroke:before {
1772
+ content: "\f229";
1773
+ }
1774
+ .fa-mars-stroke-v:before {
1775
+ content: "\f22a";
1776
+ }
1777
+ .fa-mars-stroke-h:before {
1778
+ content: "\f22b";
1779
+ }
1780
+ .fa-neuter:before {
1781
+ content: "\f22c";
1782
+ }
1783
+ .fa-genderless:before {
1784
+ content: "\f22d";
1785
+ }
1786
+ .fa-facebook-official:before {
1787
+ content: "\f230";
1788
+ }
1789
+ .fa-pinterest-p:before {
1790
+ content: "\f231";
1791
+ }
1792
+ .fa-whatsapp:before {
1793
+ content: "\f232";
1794
+ }
1795
+ .fa-server:before {
1796
+ content: "\f233";
1797
+ }
1798
+ .fa-user-plus:before {
1799
+ content: "\f234";
1800
+ }
1801
+ .fa-user-times:before {
1802
+ content: "\f235";
1803
+ }
1804
+ .fa-hotel:before,
1805
+ .fa-bed:before {
1806
+ content: "\f236";
1807
+ }
1808
+ .fa-viacoin:before {
1809
+ content: "\f237";
1810
+ }
1811
+ .fa-train:before {
1812
+ content: "\f238";
1813
+ }
1814
+ .fa-subway:before {
1815
+ content: "\f239";
1816
+ }
1817
+ .fa-medium:before {
1818
+ content: "\f23a";
1819
+ }
1820
+ .fa-yc:before,
1821
+ .fa-y-combinator:before {
1822
+ content: "\f23b";
1823
+ }
1824
+ .fa-optin-monster:before {
1825
+ content: "\f23c";
1826
+ }
1827
+ .fa-opencart:before {
1828
+ content: "\f23d";
1829
+ }
1830
+ .fa-expeditedssl:before {
1831
+ content: "\f23e";
1832
+ }
1833
+ .fa-battery-4:before,
1834
+ .fa-battery-full:before {
1835
+ content: "\f240";
1836
+ }
1837
+ .fa-battery-3:before,
1838
+ .fa-battery-three-quarters:before {
1839
+ content: "\f241";
1840
+ }
1841
+ .fa-battery-2:before,
1842
+ .fa-battery-half:before {
1843
+ content: "\f242";
1844
+ }
1845
+ .fa-battery-1:before,
1846
+ .fa-battery-quarter:before {
1847
+ content: "\f243";
1848
+ }
1849
+ .fa-battery-0:before,
1850
+ .fa-battery-empty:before {
1851
+ content: "\f244";
1852
+ }
1853
+ .fa-mouse-pointer:before {
1854
+ content: "\f245";
1855
+ }
1856
+ .fa-i-cursor:before {
1857
+ content: "\f246";
1858
+ }
1859
+ .fa-object-group:before {
1860
+ content: "\f247";
1861
+ }
1862
+ .fa-object-ungroup:before {
1863
+ content: "\f248";
1864
+ }
1865
+ .fa-sticky-note:before {
1866
+ content: "\f249";
1867
+ }
1868
+ .fa-sticky-note-o:before {
1869
+ content: "\f24a";
1870
+ }
1871
+ .fa-cc-jcb:before {
1872
+ content: "\f24b";
1873
+ }
1874
+ .fa-cc-diners-club:before {
1875
+ content: "\f24c";
1876
+ }
1877
+ .fa-clone:before {
1878
+ content: "\f24d";
1879
+ }
1880
+ .fa-balance-scale:before {
1881
+ content: "\f24e";
1882
+ }
1883
+ .fa-hourglass-o:before {
1884
+ content: "\f250";
1885
+ }
1886
+ .fa-hourglass-1:before,
1887
+ .fa-hourglass-start:before {
1888
+ content: "\f251";
1889
+ }
1890
+ .fa-hourglass-2:before,
1891
+ .fa-hourglass-half:before {
1892
+ content: "\f252";
1893
+ }
1894
+ .fa-hourglass-3:before,
1895
+ .fa-hourglass-end:before {
1896
+ content: "\f253";
1897
+ }
1898
+ .fa-hourglass:before {
1899
+ content: "\f254";
1900
+ }
1901
+ .fa-hand-grab-o:before,
1902
+ .fa-hand-rock-o:before {
1903
+ content: "\f255";
1904
+ }
1905
+ .fa-hand-stop-o:before,
1906
+ .fa-hand-paper-o:before {
1907
+ content: "\f256";
1908
+ }
1909
+ .fa-hand-scissors-o:before {
1910
+ content: "\f257";
1911
+ }
1912
+ .fa-hand-lizard-o:before {
1913
+ content: "\f258";
1914
+ }
1915
+ .fa-hand-spock-o:before {
1916
+ content: "\f259";
1917
+ }
1918
+ .fa-hand-pointer-o:before {
1919
+ content: "\f25a";
1920
+ }
1921
+ .fa-hand-peace-o:before {
1922
+ content: "\f25b";
1923
+ }
1924
+ .fa-trademark:before {
1925
+ content: "\f25c";
1926
+ }
1927
+ .fa-registered:before {
1928
+ content: "\f25d";
1929
+ }
1930
+ .fa-creative-commons:before {
1931
+ content: "\f25e";
1932
+ }
1933
+ .fa-gg:before {
1934
+ content: "\f260";
1935
+ }
1936
+ .fa-gg-circle:before {
1937
+ content: "\f261";
1938
+ }
1939
+ .fa-tripadvisor:before {
1940
+ content: "\f262";
1941
+ }
1942
+ .fa-odnoklassniki:before {
1943
+ content: "\f263";
1944
+ }
1945
+ .fa-odnoklassniki-square:before {
1946
+ content: "\f264";
1947
+ }
1948
+ .fa-get-pocket:before {
1949
+ content: "\f265";
1950
+ }
1951
+ .fa-wikipedia-w:before {
1952
+ content: "\f266";
1953
+ }
1954
+ .fa-safari:before {
1955
+ content: "\f267";
1956
+ }
1957
+ .fa-chrome:before {
1958
+ content: "\f268";
1959
+ }
1960
+ .fa-firefox:before {
1961
+ content: "\f269";
1962
+ }
1963
+ .fa-opera:before {
1964
+ content: "\f26a";
1965
+ }
1966
+ .fa-internet-explorer:before {
1967
+ content: "\f26b";
1968
+ }
1969
+ .fa-tv:before,
1970
+ .fa-television:before {
1971
+ content: "\f26c";
1972
+ }
1973
+ .fa-contao:before {
1974
+ content: "\f26d";
1975
+ }
1976
+ .fa-500px:before {
1977
+ content: "\f26e";
1978
+ }
1979
+ .fa-amazon:before {
1980
+ content: "\f270";
1981
+ }
1982
+ .fa-calendar-plus-o:before {
1983
+ content: "\f271";
1984
+ }
1985
+ .fa-calendar-minus-o:before {
1986
+ content: "\f272";
1987
+ }
1988
+ .fa-calendar-times-o:before {
1989
+ content: "\f273";
1990
+ }
1991
+ .fa-calendar-check-o:before {
1992
+ content: "\f274";
1993
+ }
1994
+ .fa-industry:before {
1995
+ content: "\f275";
1996
+ }
1997
+ .fa-map-pin:before {
1998
+ content: "\f276";
1999
+ }
2000
+ .fa-map-signs:before {
2001
+ content: "\f277";
2002
+ }
2003
+ .fa-map-o:before {
2004
+ content: "\f278";
2005
+ }
2006
+ .fa-map:before {
2007
+ content: "\f279";
2008
+ }
2009
+ .fa-commenting:before {
2010
+ content: "\f27a";
2011
+ }
2012
+ .fa-commenting-o:before {
2013
+ content: "\f27b";
2014
+ }
2015
+ .fa-houzz:before {
2016
+ content: "\f27c";
2017
+ }
2018
+ .fa-vimeo:before {
2019
+ content: "\f27d";
2020
+ }
2021
+ .fa-black-tie:before {
2022
+ content: "\f27e";
2023
+ }
2024
+ .fa-fonticons:before {
2025
+ content: "\f280";
2026
+ }
2027
+ .fa-reddit-alien:before {
2028
+ content: "\f281";
2029
+ }
2030
+ .fa-edge:before {
2031
+ content: "\f282";
2032
+ }
2033
+ .fa-credit-card-alt:before {
2034
+ content: "\f283";
2035
+ }
2036
+ .fa-codiepie:before {
2037
+ content: "\f284";
2038
+ }
2039
+ .fa-modx:before {
2040
+ content: "\f285";
2041
+ }
2042
+ .fa-fort-awesome:before {
2043
+ content: "\f286";
2044
+ }
2045
+ .fa-usb:before {
2046
+ content: "\f287";
2047
+ }
2048
+ .fa-product-hunt:before {
2049
+ content: "\f288";
2050
+ }
2051
+ .fa-mixcloud:before {
2052
+ content: "\f289";
2053
+ }
2054
+ .fa-scribd:before {
2055
+ content: "\f28a";
2056
+ }
2057
+ .fa-pause-circle:before {
2058
+ content: "\f28b";
2059
+ }
2060
+ .fa-pause-circle-o:before {
2061
+ content: "\f28c";
2062
+ }
2063
+ .fa-stop-circle:before {
2064
+ content: "\f28d";
2065
+ }
2066
+ .fa-stop-circle-o:before {
2067
+ content: "\f28e";
2068
+ }
2069
+ .fa-shopping-bag:before {
2070
+ content: "\f290";
2071
+ }
2072
+ .fa-shopping-basket:before {
2073
+ content: "\f291";
2074
+ }
2075
+ .fa-hashtag:before {
2076
+ content: "\f292";
2077
+ }
2078
+ .fa-bluetooth:before {
2079
+ content: "\f293";
2080
+ }
2081
+ .fa-bluetooth-b:before {
2082
+ content: "\f294";
2083
+ }
2084
+ .fa-percent:before {
2085
+ content: "\f295";
2086
+ }
asset/css/font-awesome.min.css CHANGED
@@ -1,4 +1,4 @@
1
- /*!
2
- * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
3
- * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
  */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
1
+ /*!
2
+ * Font Awesome 4.5.0 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
  */@font-face{font-family:'FontAwesome';src:url('../fonts/fontawesome-webfont.eot?v=4.5.0');src:url('../fonts/fontawesome-webfont.eot?#iefix&v=4.5.0') format('embedded-opentype'),url('../fonts/fontawesome-webfont.woff2?v=4.5.0') format('woff2'),url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff'),url('../fonts/fontawesome-webfont.ttf?v=4.5.0') format('truetype'),url('../fonts/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0,mirror=1);-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2,mirror=1);-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}
asset/css/genericons.css DELETED
@@ -1,263 +0,0 @@
1
- /**
2
-
3
- Genericons
4
-
5
- */
6
-
7
-
8
- /* IE8 and below use EOT and allow cross-site embedding.
9
- IE9 uses WOFF which is base64 encoded to allow cross-site embedding.
10
- So unfortunately, IE9 will throw a console error, but it'll still work.
11
- When the font is base64 encoded, cross-site embedding works in Firefox */
12
- @font-face {
13
- font-family: "Genericons";
14
- src: url("../fonts/genericons/Genericons.eot");
15
- src: url("../fonts/genericons/Genericons.eot?") format("embedded-opentype");
16
- font-weight: normal;
17
- font-style: normal;
18
- }
19
-
20
- @font-face {
21
- font-family: "Genericons";
22
- src: url("data:application/x-font-woff;charset=utf-8;base64,d09GRgABAAAAADakAA0AAAAAVqwAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAA2iAAAABoAAAAcdeu6KE9TLzIAAAGgAAAARQAAAGBkLHXFY21hcAAAAogAAACWAAABsqlys6FjdnQgAAADIAAAAAQAAAAEAEQFEWdhc3AAADaAAAAACAAAAAj//wADZ2x5ZgAABFQAAC7AAABIkKrsSc5oZWFkAAABMAAAAC8AAAA2C2BCV2hoZWEAAAFgAAAAHQAAACQQuAgGaG10eAAAAegAAACfAAABOFjwU3Jsb2NhAAADJAAAATAAAAEwy4vdrm1heHAAAAGAAAAAIAAAACAA6QEZbmFtZQAAMxQAAAE5AAACN1KGf59wb3N0AAA0UAAAAjAAAAXo9iKXv3jaY2BkYGAAYqUtWvLx/DZfGbg5GEDgkmLVWhj9/ycDAwcbWJyDgQlEAQABJgkgAHjaY2BkYOBgAIIdHAz/fwLZbAyMDKiAFQBE7gLWAAAAAAEAAACXAOgAEAAAAAAAAgAAAAEAAQAAAEAALgAAAAB42mNgYf/MOIGBlYGB1Zh1JgMDoxyEZr7OkMYkxMDAxMDKzAADjAIMCBCQ5prC0MCg8FWcA8TdwQFVg6REgYERAPvTCMQAAAB42i1PsRXCUAg8SAprl7FN4QZqb2WZGRjAIVLrHj4be4ews7OJHAd54cMBd+Af7JHmt3RPYAOHAYFweFhmYE4jlj+uVb8nshCzd/qVeNUCLysG8lgwrojfSW/pcTK6o7rWX82En6HJwIEv+wbi28IwpndxRu/JaJGStHRDq5EB+OKCNumZLlSVl2TnOFVtl9nR5t7woR0QzVT+D7cKLeIAeNpjYGBgZoBgGQZGBhBYA+QxgvksDBOAtAIQsoDoj5yfOD9JflL7zPGF84vkF80vll88v0R+yfxS9lX8/3+wCoZPDJ8EPil8ZvjC8EXgi8IXgy8OXwK+JHwp+Mrw////x/wsfHx8HHxMvJo8Rjw6PGo8CjxSPCI8fDwc3PVQ2/ECRjYGuDJGJiDBhK4A4pXhDABtHClYAAAARAURAAAALAAsACwALABaAIQAzADyAQABHAFGAZQBzgIIArIDTAOkA+AEEgTCBRYFYgW+BjAGwgbkByQHSAeCB+AI2Ao4CowLGgvQDBwM6g08DX4Nug4kDkYOYg6ADsoO7A8yD4gP8hAwEGYQpBDuEUgRshHUEfYSQBJeEnoSlhLEEtwTIBNYE6oT6hQaFC4UShSQFJ4UtBTyFSAVjBW4FegV+hYUFiwWQBZWFmQWchaIFuYXFhdUF4gXyhgEGCwYThh8GNYZEhlCGVgZZhl8GZIZoBnQGhIaShp8GtIa6Br+GzAbVBt+G8Ib/Bw6HGgciBy8HOwdHh1WHXAdmB3eHvYfIB8uHzofSB9WH6of4CA4IMghACFCIcQh4CIGIjoiSCJ8IpYiyCLmIxAjWiPwJCQkSHja1Xx5YFTVvf/53nUm++zJJJnMkpkJJJkss5GFMIQ9w04IS0BZRSJLMIIo1l4XFETQFkVFBKwVrbuWpRaXPOtalZaCPKu1D2yf28NX21qfQubk9z3nzoSAS//+Mbn3nnvuuWc/n+/n+z3fCxHIaEKEJfJMIhKVhJ4GUtP8jCqRz+ufVuQ/NT8jChgkT4ssWmbRz6gK9DU/Ayw+bPKY/B6TZ7TgpuVwN71Unnnm0dHS24QQRSACUYis8XyzST6xEAch4LF5ZJsnKkc9NsDDj2ETXgUikT4iaClNJEBSGoZIP74qa+l//YRfKB5EAEyj4g/ztWBZbslcIEjucqHATOpjkYBXsYo18DNYeOQI3UMvonuOHIHXj+/YcXyHSs7FLGQp+o7sYA8IFq+BpmqKhtk6SDEZinWVWfMsHlLfIkRCgjdPsLpAtMlRUu8CmzVP8HlDEInJmkC+wcbihT54cN/6cePW79Mv/f1E+MUT2zvCM68cOWt7Rwc2pk8TNQ3IWW0gEbuI3yxI7KW9HdtnjbxyZrhj+xPbWX0EYhjcf9h3Jg9gldjBfhLm1af1ERF7BTAEmoxngQDeU35mB/YPsDiFtU0gxChgX2tn8S6FP3zG38O+zMWEVkU1yaYQRCMxt13WblvTT9bcdgpaTsnahlcqUp9owt0Vr2zYc+oUHwN8S2FjwMYV62PNA5+pPhaFc0EP4JhuPr2la4eQCVCsNRvnLac3A9nRNShIBFZPXpciEmHjareZsEbRWNTEBhVvHDasmyniwP7HJ+4AhlsgbmOP7PUsWVA8DFmHuzoSa3avSXR09XZ0HaZfHa7raOARKjm8kWoLdwfuamwHbcqaNVOo1t54V2D3QtA2nsQL1TYePrwRtMTaWUWYhvI0gGlYz5FeldWtgPiwvfW8bpVgAk/cwxqtR/hwhHxeVq9YWNG6duzo0miCHtBgy55TlN/jbYIHFGwyi6IJ6NVO7RG0c7c7ugBDRITMuMlYqovNAFYeuNg4BWPRSBCDBRhsEaKRQJCl5mOvSfmxpqbY3GQSCmYvXjy7s6bVP2WcjI/P4iEUxG7ddWt0brKrC5/P+Yz2fTans2bNjWMvPTwOi8B2Vhtw5pEr+cpyCWabVVAkVQngpGDFtChYcIsQCIYgT1ADQUUNifmQB7g4HIrN6pIdiponhCAYkoJDMd7ucEkOlxK32q02qxIMlAewtuYWQVwLdsg6+fyNbcufpfRunw+CruicxZMm1JYsV4zGfIuUV9+8OH7VzTdfFV80IpSVVZBvMErLS2rHT140JxrJtYfGjRjrFIyl3liplFNkNDlFY6nTmwuKwx0fu6gZfL67aOrZ5W03Pn/SQNiZfrXlIfr62RfrVXeh9JvpoxY4FUt5/eRFm2bsvTy/YvzFdSDK5jq/F8DrrzMpglAxtSFekt2zZ/rmRZPr/WYl1JmVJxdEq6VcX3GhoGY7zaAUuoZ5pNwhrqF5WabyKXVZhW4l/MJZaHhoC28cdiIDKkJ4nxqIiZQittSTBJlKiL8+LogKUe3+mDleLrvAjLhidsRIPBDMAda9LsERkxwCsETlccHiVXx2S4sUD1SBWyIIewRxjzDgk8iBw54n/0w3db0rjt/1ViE9TY/nNXaeue+KFT+Cxz4uSNCP6Bp5+biD/9dsLw0qj8DEq51nG1+if695Cb68Zevjbs19yW+VvZO2LB9yLT1Er4JdsAEsP/85/ZxupEvw+PznPweLNhWq4MY2evS13r0roL03FCq+m/5W2Jx4iP5u/dsQm1SrddTDuw0Xd7lKw+05HqUYSuGfM+nhE/bxIXBCrGAf3Sc0ultay6/9qXZB5lggL5R1FyAeVyEef0Aa8EZR7Qi4kuRz++3helzyOL0wgJfhOL8YXsXtkgNnaIsQrrc7YvE8UGOqllwpVM/Vnvo9pdvoEdpfVTXzgZ+MuPJ5n99dV/vjhyfPTs6uvwVu+TCrcfGm5OQt4R+tsLY3rFJquycX25Yff/vwfT0jH5QDY+vEbavV3KI3b5QrxfqfXbS445E3s4dUtm1a3Dg8XpRILPfm6vUlKD9UjQQH0MGHKG3xDEcZEXbEAz4UIKUIiyg0zwMI+hHk5dCPKlv3yZOWX/TT2VWUpqrYAxUR4SxB6HwNpN6c5jj8Iyt28drRp2lfqmFHl4xPOLZjufLHWK6b4YPIBAMrI9IiYU+Ugejl5YrSbpiQT1+lvX/+s6N6/EXXtsW7nE51/pKKiNMofU2P9h0SJ0ANCJEFs8bHShVRpB+Z/NVeUTASRJ9M2yyIzB6yhKzi2GA3s0HxeXFFF5hjgDMXFKjHuZsNdgtYYvEWMRphQGBA6AjXOwLlPq+kqPXh+tgIiNkVVVHBIiKOxBz2c3F+HGpVjJmjEbENVsDEL7aN7Nn38idXH6T7v9i27Qv6pzNv0x+PFQO3XC8JX/+j+y/gmypIBXkW1VFoBYdslvMkVZjcCMZV9NN7b6H9R8YXF/lX+Lw2S561qhb8T13bbs23WjdOCVzm82GkrVLwycO/OvSeqmHu+w9e/cnL+3pGbvsCJvLSU3mn6YYlUul9fTUhWREeSo30SHv7dkOOklNXNzZcGJoT9Qp+gzu7JL/Qlt3QAUu6Ox9YJQsilHlFWei7SzDBbFXwuiErE6lWVN68M9XQBT3vH2FzXSC3wj9Rlm4ldWQ4G0W73q8hITOh1ZARh5FBLM5+Me7xh20+my/qi4ajYeE9IZAbGLPkmh3T1723++JF9797+do3WncKVqO9oMjucpWblz66ZMmjS0d2j48VSXS/uE9nVJIWDE/fcc2SMYGLd7+3bu37uy+ePPEeyFVzDdmqURIXP/rbRxeXx8Y0Fb3Nk2M9RZ13Kc8jJzFjXTkjCTJxx4YX4R/FPkZF2FQHFYWyxxz02FoUfCbYhPn0ILQ9KExbumxGvL0KqjrkAnpoWkfluKG52fSQJMGEbJvbUxNuLZ++eVkDEPG/bl40oW1h9aS62kmhszsF8/Ir/WF3cSz1n+L187eaSnzFxZbs+GWPr2ZcKT0/Gct0k+ZBKzC91Bg/saCYDoEPiYTVjhG8moIa9dgLbCrWOs672mbSVyVbeCiGHfSbG0ZPg6mto6ZPGyk1PbSpftowbwH9GgAMhixvg3fMyMwy1ZfkGSIW9X0sbpzS2DxpclPjlL4N8NqTB4sqg4XdHtpz4CAcrrQ5h5Re3E5nY2c+isJhGsqFqazGLkkf9kBQwJURDMQtbALEWKWsrD/ZGsFVEULemYdJkQSpeewvyOeJLNWt++MT2xZEqmdctePgksVPeicUeOffqZb+TMqzb71kxuxAc57j6iVrn1005obXfzT/0ZtXTQjOMKuqaBVUn33munj5xBV3/fIvBhJftGnvgfkbPnxx18rm+Qn6wbAN22MPXy08ZfQsj9x6+LLp4e3/0bD49l9B3cFLn76uLTSt+6a7p965yOYszJmSVWgy+u54rnvS7nu3rp9Vr+N4RvYtzvCJAiFPwGYGY3ELn8/AGiXqjbI77AgbEI8Fgmk0x6nD2CRS7TinOWxuYboywE5yBMiFXCIt5+/YliwZX7J12lW/u31a0+W73u5Zd3T3tVOGdC0zl8iCSZDlvNHjtN41Sx/oGjZ1x0XRdn9Odp1r3KjY3GiBwbjG4pAP0NO7BjMH+hn9iuU/dP1icEaTlx0G8c7Ox+9YnYhfdM3td7bdcmyoIc9iSGRZbaYpVy185uZpzctvm7n96zujndGaXVcObZ01+upk5TSLhfpnLNo8BRyw7sgAQRDIXmGBukDei4srn/PeAuS2BeXpq2yF2V9+SR/+MnVFOiDvZecv03d41eUlUW9Xc4gXbyQR+bkP0TuIkwWpYhx/FrPDjCITQxhlVjaAtSAHlaGfpu5bsco7bZ71qvaN1z0152hdxNo8YdiabkPBpsSYG1VioA/SFB1Oh0AZ3HYtlLWvuKLnboOV/p7+agr9+1NPzbu7FB5nbcjoT/mIDd9af0ZBIag27OnjZ+CanoKsl/J7Ac99nL0SgHeJplTgWvbqWgUqEw47kw9xEwoHnDaMeEZNvihvVFwaBb+gs0wF1c0TN93cM3/+ig0XXzSqNfJqVzIZqjapGm2iH9PIrqoqZ/ls+lHMbi8ra2i8boOwNuVLJObO2cKm52D8cJBqjsEX1J+4lQK7O1aANeKr0c05B9bNHkb2b8J5WQlepRSs9iaojw2GELGMvnSKqVBIzf/XvPk0/ez0ZjP932RUJtFkMqqlT+ejCCWn9Lf6TolkbCMqSKg7NY1JsVekA5l3knxp9QOooPSTbeSnZAe5h9xH7icPkoeZNodNsNUq7M+q1KHOoNQpqpWdFBsDFOxOJR9A8QahtgYCwdpANKB3byAYCfIVGIhiZAS7IFobi8bqIqzPo/VxftV/I6A2DrF6B9Ta62rtYbtj4GdjRy37szqsdXYwyXEjOPyyLQ4mv+qPB1UjBGV/VFVx1Pk/Af+E9BkvqVZThSnVCiLgdBZZrADn/RNgIDGKVuEFTC68AAIM5JHOCDArcH2cujJ19mNwpV59EO6kH34sjPv000+hUpA/ph8KjQ9K/5AlWi2oAkjsHVaowIpM54D5A63OzoFjLPt0TUX+HC+AL+GLEhyTZAFkEPCWHew1ngE7H8vOptXpFop6jqwMlgzfgCn07Rd3wmz68M4X9/5pVeoFiLx47+Rdu3ZhaPbOF+//06rz56oF5dwL5GM2V5GJFaCO5uaqVQsSYVTXBJQPDrsUV9I8AjEVgXUEMEzFFKiHWTgDUxiRRmStjdQhVQuUsyj+aoyBcAgUPUI4B8whIRjggocnY1Qcc2MP2T0TSiIqi0GO1w6XiLfsjfStAPXlOINQiAVZlojhEpYZDJjjMYyPK5KCcG+2SxI5yJgfI2T0Dkb8OAc8tpueWLlyidW075r14N4wIbn6rTtmlSdC2KNGEUb+/OVlD4Brodt/KX3/dnHo0I4tV6xrn7vgyWuT2V3tl9AvV14xvCXLsHPlqv9qanEkQxs3RTsstnBBVbS0am4gEDEYzEUFlfXFzki1udghK5VlFTWh8bmohxlt9jGBwFirTTYbi70V9spOj9cvCh0bW8Mza3Js5qmXrBtWPjJsKjaaHRsebp91+0y64TRsuqRp1o43eibdsNAZG9/TTQ899BD9dFxb7qzZUP2MyXwv/fSNdde9DyGdd+rNZLQzzUDvMqxdfRn945139E8Yn9dgm739re6xm9bWY1uzBEiuaLp1Q7j62jtTWaNuGtYz1FfiTV775ALhshdbJlmbWpZfds3637g80+d3fpgMV1uDwxcsnFlcWaZm5zkc44YMbfc4PBZByHGai9v8/haTXYFhlQKUTSh1eQSo9Pnag1aP0yIZi8rcc2pHXhYy5Yy5aHU00l5tsOfVDC+Pb2ieclU0P2flA303f/3WTTeuPXrvZVb3yq3T7qJPrN/QXer8rz27YOU99/7BJQk5t7xL/7x7H/3D+9f//8R1mT73Y3W4ej25BG9cuAjy5BAqSKY8A858HnIJsTiKJ5eI+ngspPiC3kAeJgOXWAZqSMLF0iK6RIe8Wy2aMGb26CZnXlnlitVXdl86K2E2I+waTFa3P1IaWdU+xmzxjB41rACGKdbEiNmTpo+oyxLKW6Z3zpsx0mKRCsKR5NgZ48aXFBeJJmeR0XhKdTQOKc0eP2rMww899bO7N8xzqkPEnKH1M+ffsO3QojmbZ8Qtcm6uqtD/EVS7w+3yuUqzzUKRKycXCr2VeeXV4jOpjwQ5W5It1aMuGzPx+s62Km++ASFJyS+sCCerqxdMm9hYlZP9htG9fNWD9786b/LlTW4hr6QoKz2GiEFXIAYNIddh79hVbgwNMqiRUCwy5iaivseUAtlmBWapCgz+YRqmD9rTgn3gORITJpusg2SINS3zB57bMnQgpo4Mw6QbDiy5auWUiZe//yukq6ZRdZ3r75y69cq2sYteeHB7z4wqekmT1ze8qX368g6Xu9xtKYjEOxdVDvWUOIpqIj5vkXPYsBkzu7ctXzGsIR7tnL1xXsswr6el9dLJ1aFCp8NWUlYV8/pikVlXHrxnVbfYuuzyJQdumNSYN3zFrmff62mfefnGqXeu76xL5lTN6Nn+4AuL5tPftl86e3hzRbDY6bAYjeZ8zCPkLXe7W0I2e3l5dai+FqmIMzhkQtuCS0a3BgMlVrPJ46ofMbTKbvN4orWFRagDJSdNrBkRCnH+jKyIKMzuGGESHXFX1wbwrFQiS+EcJSRUgomjOO94Zp1Gwe6ptyuaPVhkZ0cymmCsgSZGXjFu7lCtt27VwgSoiACeOWMLDAbYG01KpLiu3OAJ6mdM3ZWsqK0QtIvu/3qzbKr2lLTvnD5zrz+Q1Cn927BVDas93KIVJLVkBBmPesxmrGUMq6UPWwSJAY4VYC3TWqK9nKkzCrvzxzidV+0oE1iQWwesdgmsjhgzlyjEqzCzbsRi1e0/gBKO866MXoTpLCimHHILYgXrCtQSgn7R7mD3LpBezx/qyu949nBHvmto/rDbfkL/1hoKjRwZCrXC6HmtrfNaBU9lw5DqshmpLY+C75FH6AePPkY/eOQR8KU+rKiZWVo1pFGuxoEYUb1vWCjvilfoF/QE/eKVtQWllUXrZtTNKDn03/Nks9kGDYXT69qWL2+rmVIn0jOT/vxkycz62LyYaMh3VeZ3dORXuvKHgRJqxeJbW/VzKDS8rHZIQ3B4alnXgctWHOzqOnjiYJdwb03JxOHlDUJ7qCVUnUg9Fe8srq9b+uzGKVM2/mop6n/hkb4Z66oDC43whj07Rx4/pG75HcurJ4Wa6bU5CypCsXlsfSK/Znq6RnwkjuPBjDBM7RX5loUwHDw23VzOu81hU2VPRscKRh1x/aE0ze63e2sA5t03f4w2LwZqzega+bUtW16X7kMaoc7bPX/+7nmw/D6Mlo7Os/ttIS8tm3vPnGjnj0YfPeKpqfHAx5uef3HTZdU/Ptq5a+6cnZ1/qA0dZ/FEryPbP8B5nU/KM3ybb+Lo+jrbxkF+yPZyHBB3IamOOxRkxpn9GyTW7wWSXX76Hn3P35UMwHLZ1DC6wSSr3Kx+VN/iOcrs6Kl9LAF9H/z8hR1Sqc9XKhHdrvUCcqnWgT0WByFG0WTMiduMEHUIt8Ga1Od0O6wULBTDggVWpv4u5NPtqc9hDb0dLt+d+iL1xW61lb5FD0F56lnw0V/RtyAC4+kH9CFxL/0TTIDI2W/o28t66EvQ0rOMt10ghCpzsO0uMoa3XRUFNU9iKoQKeaBrOEwcMr6F65vtb8TNyLCYcqGzMKaZcMuiBxVo+dXZjdbIHFlWrEU1rjMGWaVX5g11Z1vL8suaK4RTXtlpSa2ylcr/dFpLyz6wFouCS5RcFvr3Yp+vGEZk2wtUsmgRpbTFarVV2MyCgTYU5IqyWlkh2xxVVSV09S/tZW5zn0GRcZ4U5jnzDLtyrT5vcbDYk2PhOMX2R9h+0GDtb9BmCPnezY/0bgfHOgFnLd9TYnsdqPw5PDaPGBZ6xd5+wjRETJ7i8jylIRPW+klmLmHJCmPHOdwqZYTMRqCESyFFKBHf7GKApmAwRdg+U5Ldk8weC5+HZcSftmtm2DQza+q7f4hNeCdZTKhsmcQ6cIH8XHf3c/Qs/ZCefX716ufhjrXv3NvZee87a3fRr3buhKw/wdBO+rRKVj+vJ2LJkefji8+fXd2588RnJ3Z27qRf0dcxuUToXPqfnTAV3tPnB9aJ8L1IE957GY7arSLrVQ/rTKmL72ZqTGs+tUfS+B4m/ezUnn7siD2nCBncrmxSTKp0W53JEw3b8LAw45c+rbj+mh4vNlQ+VlhYRqFzBg9NwM5ORvu4xiniOdXrRKYcSODZqWhn2RLStLOYjCVIsbNwIOCkhD2HXkx5fl1cZChpxLrUoqasioxHxS16iZ4mqK0PowJRAnU/VFUJy1JC4RJ1xRO8DMK0KYebmya/s8bSb0AwqFij4pxQETyNVRLcDtTnDn9X5QnJGajr4H3rYpwblaQJZdwohqdhm5g+MmFPOowc1Wb6oZ7OvHtuO5vVmF+/pwGU6GnYM37Q9DVzFsh3NQWi+qY5Xx8zYaZ6tXo1tseNCAcOQB2tRYA4qAFvPt+jUyFurx+BsAt/Fsrmpk6VNzUGvTnWYcLX+4WyA/6uwIFCs7lwf+rkgQCG/cIwnspfU5pnDIWnS88dSJ3c7/cfKGptLTwglGHwoL9rYG1ynC8gJdh3KqCUZjv15W7JjOyOIM9HBEMJhdhHNGq6+9n0+oFhkLVzdd/q9Ue+PLKenQAb/LfVmSe4dHY9eze8mX64fv2AfTpdFm/pBcWRdFGoXtgtUY9NNsHfvlVmauxAngZBE1dT07fKpd+cq5VhsG2cr7cSUsFtVza2FeOJMjj6gXqIOIw4UGzpCv+mOkomIb6S+jf14vKNQKWBKO+QXKxTKaJbNdv/Z9AWNEIMqyIagXe8EZi2FUNVI8aNjgLnXYifMpyl8hL6JfKeL5dSBc4shRwYCjl+WEu3Tnrl3Zcn0lvh8kmvrFjxypQUYWauU/SlhRxbZXyTypf09CyDM3BmWU9PXyVcAT2TZ0yfTG+lW/EKL+3RXzglRDk6n1dn5ofh46uOgDcIjDWyuiOtjDNLeByCFgcE46whqEtk8N7PmSM2KK7zTYkUeWC/ckoAWMBbcucvdm2/qH3FK0lY+8fQdWfJdRpt5M268//eSG3h1YC3u257eAVvWsuaEaf2rEDIgf2eoj2nhJN0L2vTlO3e6ZPhinfhQ54DvMoauDf1Fm/4V13LeRNfWrNgJQdjEBho6b4S2P/M7IX1MwIKo15IaLSX9mqQ4CdIyBfcayxNen+R29HPz8NA+nrFhNbX29eriQl+EhPqBfcaS8PmqJaWKxbEsyjzcLFVGqJ+ziLsKutBhlWIVHJ4wPgZPveTiQ44mo49ySgg0DCB4OxPA76mg4+eQuGJEYoOIOjiX2+KqyACXjMH5w1QirxhBzGy9WrBP5CLQSW0/BD1U/8hWi5M3L9f+jE9mPoUJtL9ggPaQHCkPmXYovMFDbs2i692BN4gMxqj1Ne0PqKJuGAUBpiUGahTvdBLE+f4MeMLRu6TZAT8M3kYi0jhT8TfGQxzF5pedmJVJRLvv16lF98zkDzGdIwCW90OHIoaQfXjfMQ+6u3TaELUUo8vEGak9moLEgs0mIThBQqW3qdBL7acPetbwJ/lskdp/oS5syE2Ztx8VOQ5jPYgDCVS/E1WFegdjDc5uLY5g+a+Gp6IUO4z1aMYcwLeZEGgCnxmphyhmAWi7zm09ZMjdPfvj8I2mAYlr67qJ/Me/Jx+TA880b23G//kjLvE72HREZGsepX+lT5JLz/6BCSh6PMH5/VpPB2X7f3fADEo6ovYG07uo+JCecJ1UlyiLcgsBpZmMXgs6luVeZErZnxzunVZs8PhE76u7L68u5L+H193f4zQj8LC3LHa/LgvMbNrmPTO2AkTxp45ylcVRNmeAQ5MZp/BhtgQ1nkNQwXUXeJc3+RIhqCG6Oth0GB3sMYH1ZAgcBqleJnHFv1tkv7mpVkPbm0E1AoC0S2TmIMOHqi+JmH4S9d/MofFg2/G4i95YyWcSo8dD7U3AWoT/tjwU0IZ28h47PiSOSwCyutLaS3vPd3fivsxVWa8mPLAyzg9Liu7m7sz+bwDTkt8rXGazJ2XOIJrLLRmytRuXDcauzLXpZR2NcP2qxk2MD8lQZuypntqmmy9TJvZnUA2snUBP1HY3Mgjhbp/HIKnyrA+GjGjClHAii+wi+VccsyZSpfT5VPn7IR9Nz733I2Ys0qYNFl7DB/AXVOPrd0FWSnnc2B4jjlTMTxbwPBMPsmWEJIJH8QdMucl9KR2Uj65IEVgr9aLY4Vz1EAGuBQpwsFi48WuBvI10Q82k3GZ4pHionAQZ7CQIZhHEFd1HrMLO0w4iKwJzALi8JjKcIJxDwMTTn34y18E7ZOa0f4/PnTz6UcXrZc3DVs69i8pzfLO+KlLnljF4pRSvP8k1L1xzNP0b1X0jH3zqyDeugvsdPKlrz48Dt+3vDP215euPbKtFBR8SFNMJxGxrZLGW8OWpcb87tL1ZPjDOoG1j89EfzrFWVRP+vC9PsKd3RjSzBASBtZnKtczy9gq5/wgfQGHlN7vM6fXizCM/gu2a9QCa6UH04HuvlE4Mdgw/H33mjW718j30zLEJyLsSZ3Sry0L2VOcPvTwGpbkPG6icj7L8IW7kg1emTL3HUNVCa+QPLceEYnTsSJ3IBu8GAnLisuUdN4ZphzXmTJJ4475gqs/7f2pM2Vd/Mhc8Hi4EEK1Ecmzz8TSCPu48Bj8B2nnRuZHmRFDNKGrA/ycwMqx5zgI/A3QX6T6ZZ9OjCVOm5lE0nM9yzVK5oTKCB0j4kRlumgJ12d1cRiJNUHajsVtTNw+OWizT1UPb2xdVxV67vI9pwolwvWyHWWejYfD1Us3nNrT0srXpqaCKqf9Ye1Wxr+DbGEEA5ERbCdNRFquHEwmP207mqQN9CS8Bm1tnyaPt83e20/2yruSx/ARjKcN4GaPjuNdW2rHXiAMkIHJLpnRKPVc/4t6RWS9Qtym+Af5f+UnuKwRsPCoByQCn1PLLJjFXFTpL+THqYVaOmCWBrO4HRIX2B8UTX8H1zySWyS1EplFf8G8UGHWLGqRH++gv8B3O+BzrssnFFYPxuiYgASEiFRvCllNr8xksYDUJsHTMSxJsHRYFyMm41YCIYE/jQlsDKZ6B3wJRKwe88bEGSxyd9o+Pg8BVyhWTX+Gc5st0syzNE+QNe6STIwiq7zGSBmbAWeJoDsecx5fwG5kTfm2/ucjQZzZNShz4lwTJBl9jx3xsM03+D48SB/8vnthgEylMqE+7cLAgAN0xgP6e0K8awRuB+G2DFbnb+1iZ5CF4ZisG2T4WbeNMEMJs5718TiJObNo6dUu4qM0jvD8GX4FLsg/zASuzRcdVI4YZYownCtKYxlpmQI5K2NWwEyZqOExxfhcwQeYituv2xAydnCGM8U6FjN5Lqev4LEKCiOAIRBEfIc3iF/6cJBv+vQn/eQnn96kcODglnD9mnrzbvqvX5bSf0Ju6S8hm9FEoq97Ja3FMXxOAwBDq8Eg4IIBFJCwesz1FnDe8NZi43SHX0U5vLGqfVypDgoCVk3HLmBmGyZH8OJ2bzzsqHSlMeIc9pQPYI9ej+8rPe1JSDJ10If1/JI5HOnQ+R1lCtxfn/EqI7fgmdjWlkfl8hqBGDECFy3zLmf6JzNHpN6bKwToXIGNEMV1xy1yKMD38Qfn2bDymZgo5c4cePJFue86MKjFNP2MZbNhuUpNsdXI8gaUm/q6TY+5iY84kxBNyGrTs5nVLRCJc41F4apFIjN1+4hYX1/fd4TZo9hU0vT5fBZLi/80zjRNAdFyj7pAXUCq+M6K6ldUixpkRDFoCQTlINMf48G4HIuLcQeictwh2h1+h2rHseaT216vLmikv6tptm95Y4Sz5Y0ttqZa+rvGTwyGTxqhrrbJtuWNkdaRb9xqb6qFOhZNN3H4FU7fam+uOZdSzyA3O4E5NNfoST/RM771dcy4jGM3ucDGYEV9/rwvH4Ab+VWI+fnOaRyUC7+BkOo3n96yaYNweHwf4aHUmPHf+iAidWTL6c3jU2M2bGJX4fCGb/GH4nNypTyjVyCgstXPlrusc4eUfmEsCGGYsEkj4ezRY/XF/SaTwWx1n5srOo8y6SyRxWZEvUx0qGbceoBz8ZTsyxH965GBbxIyOK+7D4n48AwrnmTwftD+QyYtkiELm576dyB6iSkuIAa+nyCDvp/A0tLfT4jAHbwN34u5ZBDm6kbwNNalQRc7x4AAeEZfsXj+OgO6vKoixyOWv4LaFcNcjqnG84rxpH+DihPS4CoMFAm82rj0M0XzL1Gw/0UtUzy+hO1mrR+oxoXzznLhvJMym3TI1zy2MDK3C+edsExH+720V9v7rQlXz4vpSzJooWk5dl55ju/+wodx1m995ZMazFsvKOjskfP0yPPKCH93GfrONa4qB9+uZkDLfqUQjnIPqO8pH170t7ffsf/n825aUlHkLCyKjC52vmUyj5n+fXUSGhqndSdGXrR/XEFBia+k2Du0umpkg7fUaquOpH3hdZ1Xn9Xsp+K8YYYKjrknqRuHzQ0nL0jLEhpZ2hSOvESYwZ6lZcyHupk9I2MHYUzHTOz4RhgVg7AFj6DPb0HNLlzMggqjGimWeQe00/85UamlPuvgtkitYwTeybwu3I7JE6bDvO7/xPrkKtvYTgbTQFsEexnEW8CF0horv35CU/DGZ1+YcP/9E1741caK5gk4ZZeO+c1r97YMHXP33WOGttz7+ktj2Jwgl8BJdafixhWsfw3F7F8iqBbRwQzaQeGyE/Qo1Jw4Kh09cfToCag52/U1kK/lhm3IoRu2QQO8to2+Rl/bBq/RshaJtDCdjOunaTtQEdv9MQpRFLSoxX3LgTjKtTREubBJNxIpiCqsnX0oqges7lEm33UTrcxhhFnz8IRU9lwKbtMfMPp+ux6lP1wP2w+Xn/p3JWvkO8os+4EyLSj+g+oPldoHL8+lOw50/lDJOH1e7mSJGIqm56iMcgzLNRkF5rRgCqIIY/Y0k8CtngyARYJyaEfbc0v6OR7LCWYdpb18CrMPyujxHW0Tqabfp/0ldFzP4z7Vg3OVL8iLfMf752wPIuuTjCzycgdl0Weq5w4WHD0kPsnHrk4mV48dt6Il3ODzNYRbVozjMcB7SsaVxzRSdogDoUEYx/lRNrPSQBrEeYnMv9kT5Fv1wC0jDLgljS2shmHdKdLtDxcxNS/FxaPE51EfSW6Nr1lTPvfiem0wd+K2hguHlDkEurFzZE+Uf1qncEW4j583nwb76c1slxR5h3TeGGq6J6rG6SbTNwQiz8I2FBAn99f1cJRUVBt3QfF5mCmOQWglFOlBH8qkZV+uXr1w6sqFf/0NnQbk+iVz6uouXbt96YK3FG3smHuW3ZinFt20+r6nhV8NH9daWkpb6PFJU28jaTs6kTP7wz4xrHriYYsv7pFna19oFTRRwS6oXnKFikvOtM1b49wim2EQ6+eMYwmYgswRk7MLOJCWxzhxe/s5Vko6Xel7U0j0phaAm00QI/ezZv3KeIOR5HB/ZxuOIMp+i8ljYR8asNk2BEC3DKt+I6BKr+nKDWjf8DHTzS2gm5i1bzROhPFeThNjiqVnDC9shEHjLErjagYztmnny0kz+Y/zZZgjqKgjuLtlMF4j5EONMEJ1jIAyCNRAvhQcAY54cIQQCKoO/MsXWSK8RVkXR3jmCeP5QhnGYaAM8iGuloEazzcEK/HGEccMJYdaIyvMXdNRI48QkDiPEPBtScWkIuboyMdZd6GIzBPFLNnkEsjLkGhT8n1FhcMiFUEAWXbkWnL9geJRzsJch5xX6nCGC8XcGkOhrSJ/Yo9k9Ug2Q/OkZqUgJ2R3j3FdtuidJwO1bl+NSynJrk2Wx3ODxV6Lx2MszbYmY0PlvOxQgbMsz+fMcjsNhaFgnVLamD8kWIUKowEMcpYMTtc1726SsrJHubPUPIMh35rbHBTyLaPrvEaDx1BTWyY4Suoryk2CRxr6LcH9L0mxIMPum/zHp7LCRQaLTSyNueOq2ZdndfogS/VnNcdkVbD7so0VTtHuNNqz1ycFk5wlGLN8pc0em9VkMIH/ZsgxGBTVLDrkItvQfHOJN+AwmbPiVos9x1SgWixyvsliLXQ2O2srKt2uSqfRPKW2oNWUZcpxlIcWz/gJ7X+mPOeWEa3DSgqiLXK2Uc01Fxepdq9FrjMWZEuWxpGjyzplh8mpcBm6V3SrC6SMDfJbPH6Az/t+fcMNv75BFAdfpJM38Ougv7SfJLO79DJUxzlvIF9rYq84YK/BGwNbKyRqArEXUb8vwd6REnwvC+ORa/BYA+lLcDtOIr3PJXD+wqL1PAfbACpILRmmf6+sey4hJ/Po3y2nv5YxIWOLDYd0VHl6wUtpYodI08i/Ru4njWOZLtwYuPqmrh083KfvRQrJtMPI2LXeB5jc6NIkn3fdGIZ8oY5WB7WP29H1gHftWIyw87QHMoRZGdAtzv/2PS1LMps7me+4gejSpI8wBV5EAU55jMhAgmlOeFCSCQHnYXqY41ucY4BGcvX9EKOIOjEEWyS+Y+rzBiEaDCj5oDBfLodubiyDcyYaAp9igf/0+8EP3MtP/G0M2xGjBxPOTv9Ef5c/X9Dy/RjKdya0p6KBQNSvatSBtDPX3xWAclG2jZu+8QyNTkx2xaBNSzjzMbH+VheGOp2J1L/wJX+UkMHfEo4mE0k7mUeW8D2jtE9gC8SZU6DHNBDDfGzZ8A6KiHLlf2C0mdUHrxlQH/D8ueCqDgx1Mpoe9rGN/Sjx0kG2m5MOMiealD4N+tJq2vmX+fq484nwAJKqD9L3Y9Z5wZeMPpCeJ3j7wJ5TkJk2OJPoB6f2pMXKmeQgZTiZmTsC9skpNaH08v00ou/Lh42CiGzXwbZHM2tWfsS3plXMFmh3v84k6fH/Hsc9A/Cnb0TJPdEWoe+kwGcPqoOzerYxkxi7F36W3sETYBWuqZ/imvLwvRYH9w6Iu8BhYh7XgzrZFrb5TC2Q6WaZ3rGMPkCX0AeW3TH2lR5NS/edpvW8Qn+kd9OROY/+9s1H5rRdYoF/aQ+c64UHNJptWSqm0o0W0nOCkMk4H3SLVyX75tdcCqytwyESZFt85UFlIMIcDwR9ujUsEg+YeC3xoUtwtwjML47dFah2m98bCOreoI48QeWbBG/neucuCkQC18+lX+28h/5rzg14s3iOJ+9t9rS39D68XfrY5yB9/thSDO4qSWk7U8Pn/mNT5+M/aarY8mu+qTCybRnt38rzS5x49MpbNl/52HH9bivAsgmtmGTqgiMg6HHXY1aY5fX6He0/0tmh/WLzwpXhzsTcWyZnbF3aoL1swZNGC1nTTXps3TOeInHGwMaQMgSAAQ7AuI09bPJWAclCLcHqUO3EIb9+371H6eX0SfrXV1cJpOv5S6D+sBgOU7LqVSiBabDt6Ocnnn+a/m06r8OrOBca+f8FUcr9zjhX5CTaGg8rAjOvBoRg2AXumDR1z5o1UyJzws/2Wr98up88/aW11/EOFB8XtTVTBDJlTXhOhJKpBYfoF0PoF1AwBAoObT50KO3TLGJLB++pySS9p3buO2pHxoLDDZ+mwWE13SeDzpxAZc6MOn1XPKTfy+gJvL+zM9+Z6T/mLsDwltnSGbHWQ6y/+TduhNfNyHbRQPTIoh//PCIKMe654JHIOroVqtahHh25Eqro1nXHhMdT77yTOpE68U7qHeFx+WN6zx/onvffh4V/EFENodekboRb6DrhGrgx8917poyMP4SnGFCFH5TJsWOo7g96Mb0ZN7h++YPfFnklL8zjWKaK386MVrD6wbK07x7X1ezI8CuZ/cmIs4vtZnOc9nBvczbv1EAQYZk9hfq43cFs1gof036udnWxweCBueOHzLphj77r20f0O8q4MQcyLpaBpP/TkKZrF3Xq8ZSH4cLv9arJBLLoO7029Z3hgId9i8x2j+3hWJhv3NnjulJSnv5M2Wp31PNHkqPebhl4xp+EM0/s4njohol/27r1b3Q/vZ3uZyGxy+LKN+bn/Z3+NXb1xNEmk6nI6cz95SU//uKiXK2kPLiJPvPIuFunjA6HyhSn0vPLn0OgK8epuWrCd9Dr3+l7JBEO5Lvlx359GGZfXaRqg7OGiby4s8vykRcX5qlbTWaTIbvYbHPlOpsacj6qcTVYJ8/GEk3NJZGs3GDbqFxwRvxh57xZYduYQDg3MCWZc15fidybtIjNdh//TwL4ZrzoyzARWxxn7y6hZFffxcpwWk3v/+yvlChLzpyFiz+Fx+THaDUcYwccP/s8HcUIiPR6apQ45+yOY8c4DqVtSen95cHaJhPPusJznmcmV3XYyuQx/Pz/AAfdhq542o2QsWrDMBCGfyVOSjOUDn4AdSlJiY1sMCTZ0hQHQqcM6RyMahsSKVj2EChd+wgd+wZ9s7xDz4pKl0IrkO7T3a+73wZwhU8wnNcNHhwzDPDiuIMLvDvu4hYnxx4G7M5xD9fsyXGf8q+kZN4l3e7tq5YZfDw77tDcN8ddPOLDsQef+Y574Cxx3Kd8gQU0DjiiQokcBWpwDJFhRDGGQIQEY+IV6SQU0RwGezR0GpvBQh+OVZkXNR9mIx6LKBnzlZaKz82+MUaSZGmV0k7JqJOit1hKJasy04p4TcWcmu6wJRHWMm92W4LUimsbK1JIayskYxwz2r81PlciTBBgSvv7M5BqVae6yiWPQ8Fn/McAXaJJMA1a8/9wu7FFQ2Vtf4mwE0IbW2fYyMqUWnEholAIwf/u+QXtVlqxAAAAeNpt0meTFVUUheH7DhkJEgQJgpIFhdvn7NM9gxKGCZKzKGZyUHJGySAgSq7i5wrFfYdPdFXX+tRP9V61Wl2tt8//rdbh1vueV29eWl2tYXQxjOGMYCSjGM0YxvIB4xjPBCbyIZOYzBSm8hHTmM7HzGAms5jNJ8xhLp/yGfOYzwIWsojFLOFzlrKML/iS5aygTUUiExRqGrrpYSVf8TWrWM0a1tLLOvroZ4BBvmE9G9jIJjazha1sYzs72MkudvMte/iO79nLD/zIT/zML/zKb+xjPwc4yCEOc4SjHOM4v/MHJzjJKU5zhrOc4zwXuMglLnOFq/zJX1zjOje4yS1uc4e73ONv7vOAh/zDI/7lPx7zhKc84zkveDnqwsljg1W7bVZmMrMZZjFrszG7zZ63mfSSXtJLekkv6SW9pJf00pBX6VV6lV6lV+lVepVepVfpVXpJL+klvaSX9JJe6njZu7J3Ze/K3pW9K3tXbg9915id/wid0Amd0Amd0Amd0Il3TueesJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn7CfsJ+wn0h6SS/pZb2sl/WyXtbLelkv62W9rBd6oRd6oRd6oRd6oRd6oVf0il7RK3pFr+gVvaJX9IperVfr1Xq1Xq1X69V6tV6tV+s1eo1eo9foNXqNXtPxijsr7qy4s+LOijsr7qy0h75rzG6zx+w115l9Zr85YA520l0Wd1ncZXGXxV0Wd1ncZama1x+EcTsAAAAB//8AAnjaY2BgYGQAgosrjpwF0ZcUq9bCaABTzgdAAAA=") format("woff"),
23
- url("../fonts/genericons/Genericons.ttf") format("truetype"),
24
- url("../fonts/genericons/Genericons.svg#Genericons") format("svg");
25
- font-weight: normal;
26
- font-style: normal;
27
- }
28
-
29
- @media screen and (-webkit-min-device-pixel-ratio:0) {
30
- @font-face {
31
- font-family: "Genericons";
32
- src: url("../fonts/genericons/Genericons.svg#Genericons") format("svg");
33
- }
34
- }
35
-
36
-
37
- /**
38
- * All Genericons
39
- */
40
-
41
- .genericon {
42
- font-size: 16px;
43
- vertical-align: top;
44
- text-align: center;
45
- -moz-transition: color .1s ease-in 0;
46
- -webkit-transition: color .1s ease-in 0;
47
- display: inline-block;
48
- font-family: "Genericons";
49
- font-style: normal;
50
- font-weight: normal;
51
- font-variant: normal;
52
- line-height: 1;
53
- text-decoration: inherit;
54
- text-transform: none;
55
- -moz-osx-font-smoothing: grayscale;
56
- -webkit-font-smoothing: antialiased;
57
- speak: none;
58
- }
59
-
60
-
61
- /**
62
- * Helper classes
63
- */
64
-
65
- .genericon-rotate-90 {
66
- -webkit-transform: rotate(90deg);
67
- -moz-transform: rotate(90deg);
68
- -ms-transform: rotate(90deg);
69
- -o-transform: rotate(90deg);
70
- transform: rotate(90deg);
71
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
72
- }
73
-
74
- .genericon-rotate-180 {
75
- -webkit-transform: rotate(180deg);
76
- -moz-transform: rotate(180deg);
77
- -ms-transform: rotate(180deg);
78
- -o-transform: rotate(180deg);
79
- transform: rotate(180deg);
80
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
81
- }
82
-
83
- .genericon-rotate-270 {
84
- -webkit-transform: rotate(270deg);
85
- -moz-transform: rotate(270deg);
86
- -ms-transform: rotate(270deg);
87
- -o-transform: rotate(270deg);
88
- transform: rotate(270deg);
89
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
90
- }
91
-
92
- .genericon-flip-horizontal {
93
- -webkit-transform: scale(-1, 1);
94
- -moz-transform: scale(-1, 1);
95
- -ms-transform: scale(-1, 1);
96
- -o-transform: scale(-1, 1);
97
- transform: scale(-1, 1);
98
- }
99
-
100
- .genericon-flip-vertical {
101
- -webkit-transform: scale(1, -1);
102
- -moz-transform: scale(1, -1);
103
- -ms-transform: scale(1, -1);
104
- -o-transform: scale(1, -1);
105
- transform: scale(1, -1);
106
- }
107
-
108
-
109
- /**
110
- * Individual icons
111
- */
112
-
113
- .genericon-404:before { content: "\f423"; }
114
- .genericon-activity:before { content: "\f508"; }
115
- .genericon-anchor:before { content: "\f509"; }
116
- .genericon-aside:before { content: "\f101"; }
117
- .genericon-attachment:before { content: "\f416"; }
118
- .genericon-audio:before { content: "\f109"; }
119
- .genericon-bold:before { content: "\f471"; }
120
- .genericon-book:before { content: "\f444"; }
121
- .genericon-bug:before { content: "\f50a"; }
122
- .genericon-cart:before { content: "\f447"; }
123
- .genericon-category:before { content: "\f301"; }
124
- .genericon-chat:before { content: "\f108"; }
125
- .genericon-checkmark:before { content: "\f418"; }
126
- .genericon-close:before { content: "\f405"; }
127
- .genericon-close-alt:before { content: "\f406"; }
128
- .genericon-cloud:before { content: "\f426"; }
129
- .genericon-cloud-download:before { content: "\f440"; }
130
- .genericon-cloud-upload:before { content: "\f441"; }
131
- .genericon-code:before { content: "\f462"; }
132
- .genericon-codepen:before { content: "\f216"; }
133
- .genericon-cog:before { content: "\f445"; }
134
- .genericon-collapse:before { content: "\f432"; }
135
- .genericon-comment:before { content: "\f300"; }
136
- .genericon-day:before { content: "\f305"; }
137
- .genericon-digg:before { content: "\f221"; }
138
- .genericon-document:before { content: "\f443"; }
139
- .genericon-dot:before { content: "\f428"; }
140
- .genericon-downarrow:before { content: "\f502"; }
141
- .genericon-download:before { content: "\f50b"; }
142
- .genericon-draggable:before { content: "\f436"; }
143
- .genericon-dribbble:before { content: "\f201"; }
144
- .genericon-dropbox:before { content: "\f225"; }
145
- .genericon-dropdown:before { content: "\f433"; }
146
- .genericon-dropdown-left:before { content: "\f434"; }
147
- .genericon-edit:before { content: "\f411"; }
148
- .genericon-ellipsis:before { content: "\f476"; }
149
- .genericon-expand:before { content: "\f431"; }
150
- .genericon-external:before { content: "\f442"; }
151
- .genericon-facebook:before { content: "\f203"; }
152
- .genericon-facebook-alt:before { content: "\f204"; }
153
- .genericon-fastforward:before { content: "\f458"; }
154
- .genericon-feed:before { content: "\f413"; }
155
- .genericon-flag:before { content: "\f468"; }
156
- .genericon-flickr:before { content: "\f211"; }
157
- .genericon-foursquare:before { content: "\f226"; }
158
- .genericon-fullscreen:before { content: "\f474"; }
159
- .genericon-gallery:before { content: "\f103"; }
160
- .genericon-github:before { content: "\f200"; }
161
- .genericon-googleplus:before { content: "\f206"; }
162
- .genericon-googleplus-alt:before { content: "\f218"; }
163
- .genericon-handset:before { content: "\f50c"; }
164
- .genericon-heart:before { content: "\f461"; }
165
- .genericon-help:before { content: "\f457"; }
166
- .genericon-hide:before { content: "\f404"; }
167
- .genericon-hierarchy:before { content: "\f505"; }
168
- .genericon-home:before { content: "\f409"; }
169
- .genericon-image:before { content: "\f102"; }
170
- .genericon-info:before { content: "\f455"; }
171
- .genericon-instagram:before { content: "\f215"; }
172
- .genericon-italic:before { content: "\f472"; }
173
- .genericon-key:before { content: "\f427"; }
174
- .genericon-leftarrow:before { content: "\f503"; }
175
- .genericon-link:before { content: "\f107"; }
176
- .genericon-linkedin:before { content: "\f207"; }
177
- .genericon-linkedin-alt:before { content: "\f208"; }
178
- .genericon-location:before { content: "\f417"; }
179
- .genericon-lock:before { content: "\f470"; }
180
- .genericon-mail:before { content: "\f410"; }
181
- .genericon-maximize:before { content: "\f422"; }
182
- .genericon-menu:before { content: "\f419"; }
183
- .genericon-microphone:before { content: "\f50d"; }
184
- .genericon-minimize:before { content: "\f421"; }
185
- .genericon-minus:before { content: "\f50e"; }
186
- .genericon-month:before { content: "\f307"; }
187
- .genericon-move:before { content: "\f50f"; }
188
- .genericon-next:before { content: "\f429"; }
189
- .genericon-notice:before { content: "\f456"; }
190
- .genericon-paintbrush:before { content: "\f506"; }
191
- .genericon-path:before { content: "\f219"; }
192
- .genericon-pause:before { content: "\f448"; }
193
- .genericon-phone:before { content: "\f437"; }
194
- .genericon-picture:before { content: "\f473"; }
195
- .genericon-pinned:before { content: "\f308"; }
196
- .genericon-pinterest:before { content: "\f209"; }
197
- .genericon-pinterest-alt:before { content: "\f210"; }
198
- .genericon-play:before { content: "\f452"; }
199
- .genericon-plugin:before { content: "\f439"; }
200
- .genericon-plus:before { content: "\f510"; }
201
- .genericon-pocket:before { content: "\f224"; }
202
- .genericon-polldaddy:before { content: "\f217"; }
203
- .genericon-portfolio:before { content: "\f460"; }
204
- .genericon-previous:before { content: "\f430"; }
205
- .genericon-print:before { content: "\f469"; }
206
- .genericon-quote:before { content: "\f106"; }
207
- .genericon-rating-empty:before { content: "\f511"; }
208
- .genericon-rating-full:before { content: "\f512"; }
209
- .genericon-rating-half:before { content: "\f513"; }
210
- .genericon-reddit:before { content: "\f222"; }
211
- .genericon-refresh:before { content: "\f420"; }
212
- .genericon-reply:before { content: "\f412"; }
213
- .genericon-reply-alt:before { content: "\f466"; }
214
- .genericon-reply-single:before { content: "\f467"; }
215
- .genericon-rewind:before { content: "\f459"; }
216
- .genericon-rightarrow:before { content: "\f501"; }
217
- .genericon-search:before { content: "\f400"; }
218
- .genericon-send-to-phone:before { content: "\f438"; }
219
- .genericon-send-to-tablet:before { content: "\f454"; }
220
- .genericon-share:before { content: "\f415"; }
221
- .genericon-show:before { content: "\f403"; }
222
- .genericon-shuffle:before { content: "\f514"; }
223
- .genericon-sitemap:before { content: "\f507"; }
224
- .genericon-skip-ahead:before { content: "\f451"; }
225
- .genericon-skip-back:before { content: "\f450"; }
226
- .genericon-skype:before { content: "\f220"; }
227
- .genericon-spam:before { content: "\f424"; }
228
- .genericon-spotify:before { content: "\f515"; }
229
- .genericon-standard:before { content: "\f100"; }
230
- .genericon-star:before { content: "\f408"; }
231
- .genericon-status:before { content: "\f105"; }
232
- .genericon-stop:before { content: "\f449"; }
233
- .genericon-stumbleupon:before { content: "\f223"; }
234
- .genericon-subscribe:before { content: "\f463"; }
235
- .genericon-subscribed:before { content: "\f465"; }
236
- .genericon-summary:before { content: "\f425"; }
237
- .genericon-tablet:before { content: "\f453"; }
238
- .genericon-tag:before { content: "\f302"; }
239
- .genericon-time:before { content: "\f303"; }
240
- .genericon-top:before { content: "\f435"; }
241
- .genericon-trash:before { content: "\f407"; }
242
- .genericon-tumblr:before { content: "\f214"; }
243
- .genericon-twitch:before { content: "\f516"; }
244
- .genericon-twitter:before { content: "\f202"; }
245
- .genericon-unapprove:before { content: "\f446"; }
246
- .genericon-unsubscribe:before { content: "\f464"; }
247
- .genericon-unzoom:before { content: "\f401"; }
248
- .genericon-uparrow:before { content: "\f500"; }
249
- .genericon-user:before { content: "\f304"; }
250
- .genericon-video:before { content: "\f104"; }
251
- .genericon-videocamera:before { content: "\f517"; }
252
- .genericon-vimeo:before { content: "\f212"; }
253
- .genericon-warning:before { content: "\f414"; }
254
- .genericon-website:before { content: "\f475"; }
255
- .genericon-week:before { content: "\f306"; }
256
- .genericon-wordpress:before { content: "\f205"; }
257
- .genericon-xpost:before { content: "\f504"; }
258
- .genericon-youtube:before { content: "\f213"; }
259
- .genericon-zoom:before { content: "\f402"; }
260
-
261
-
262
-
263
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
asset/css/public.css CHANGED
@@ -1,1973 +1,1973 @@
1
- /*
2
- To change this license header, choose License Headers in Project Properties.
3
- To change this template file, choose Tools | Templates
4
- and open the template in the editor.
5
- */
6
- /*
7
- Created on : 21.01.2016, 13:29:15
8
- Author : kurtis.core
9
- */
10
-
11
- .tinv-wishlist,
12
- .tinv-wishlist button,
13
- .tinv-wishlist input,
14
- .tinv-wishlist select,
15
- .tinv-wishlist textarea {
16
- }
17
-
18
- .tinv-wishlist *,
19
- .tinvwl-wishlist *:before,
20
- .tinvwl-wishlist *:after {
21
- -webkit-box-sizing: border-box;
22
- -moz-box-sizing: border-box;
23
- box-sizing: border-box;
24
- }
25
-
26
- .tinv-wishlist select {
27
- /*padding: 8.5px 10px;*/
28
- width: 140px;
29
- }
30
-
31
- .tinv-wishlist p:last-child {
32
- margin-bottom: 0;
33
- }
34
-
35
- .tinv-wishlist ul {
36
- list-style: none;
37
- margin: 0;
38
- padding: 0;
39
- }
40
-
41
- .tinv-wishlist table,
42
- .tinv-wishlist form {
43
- margin-bottom: 0;
44
- }
45
-
46
- .tinv-wishlist a {
47
- /*box-shadow: none !important;*/
48
- }
49
-
50
- .tinv-wishlist button,
51
- .tinv-wishlist input[type="button"],
52
- .tinv-wishlist input[type="reset"],
53
- .tinv-wishlist input[type="submit"] {
54
- /*text-align: center;
55
- font-weight: normal;
56
- letter-spacing: 0;
57
- line-height: 1;
58
- text-transform: none;
59
- padding: 11.5px 19px;*/
60
- }
61
-
62
- .tinv-wishlist .button,
63
- .tinv-wishlist button,
64
- .tinv-wishlist input[type=button],
65
- .tinv-wishlist input[type=reset],
66
- .tinv-wishlist input[type=submit] {
67
- /*box-shadow: none;*/
68
- }
69
-
70
- .tinv-wishlist input[type="text"],
71
- .tinv-wishlist input[type="email"],
72
- .tinv-wishlist input[type="url"],
73
- .tinv-wishlist input[type="password"],
74
- .tinv-wishlist input[type="search"],
75
- .tinv-wishlist input[type="tel"],
76
- .tinv-wishlist input[type="number"],
77
- .tinv-wishlist textarea {
78
- /*padding: 9px 15px;*/
79
- }
80
-
81
- .woocommerce.tinv-wishlist #respond input#submit,
82
- .woocommerce.tinv-wishlist a.button,
83
- .woocommerce.tinv-wishlist button.button,
84
- .woocommerce.tinv-wishlist input.button {
85
- /*text-align: center;
86
- font-weight: normal;
87
- letter-spacing: 0;
88
- line-height: 1;
89
- text-transform: none;
90
- padding: 11.5px 17px;*/
91
- }
92
-
93
- .woocommerce.tinv-wishlist #respond input#submit.alt,
94
- .woocommerce.tinv-wishlist a.button.alt,
95
- .woocommerce.tinv-wishlist button.button.alt,
96
- .woocommerce.tinv-wishlist input.button.alt {
97
- text-align: center;
98
- /*padding: 11.5px 20px;*/
99
- }
100
-
101
- .woocommerce.tinv-wishlist .tinvwl-my-wishlists {
102
- /*padding-left: 17px;
103
- padding-right: 17px;*/
104
- }
105
-
106
- .woocommerce.tinv-wishlist .tinvwl-continue-shop {
107
- /*padding-left: 17px;
108
- padding-right: 17px;*/
109
- }
110
-
111
- .tinv-wishlist button i,
112
- .tinv-wishlist input[type="button"] i,
113
- .tinv-wishlist input[type="reset"] i,
114
- .tinv-wishlist input[type="submit"] i,
115
- .tinv-wishlist .button i {
116
- /*font-size: 14px;*/
117
- margin-right: 14px;
118
- }
119
-
120
- .tinv-wishlist .navigation-button a i {
121
- margin-right: 14px;
122
- /*vertical-align: middle;*/
123
- }
124
-
125
- .tinv-wishlist a.tinvwl-my-wishlists i {
126
- margin-right: 17px;
127
- }
128
-
129
- .tinv-wishlist .tinvwl-estimate-wrap a i {
130
- margin-right: 18px;
131
- }
132
-
133
- .tinv-wishlist a.tinv-close-modal i {
134
- margin-right: 0;
135
- }
136
-
137
- .tinv-wishlist a i.fa-chevron-left,
138
- .tinv-wishlist a i.fa-chevron-right {
139
- /*font-size: 10px;*/
140
- }
141
-
142
- .tinv-wishlist .button i.fa-chevron-left,
143
- .tinv-wishlist .button i.fa-chevron-right {
144
- /*vertical-align: middle;*/
145
- }
146
-
147
- .tinv-wishlist .tinvwl-estimate-wrap a i.fa-envelope-o {
148
- /*font-size: 12px;*/
149
- }
150
-
151
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
152
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
153
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
154
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
155
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
156
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
157
- content: '';
158
- display: inline-block;
159
- margin-right: 10px;
160
- background-image: url(../img/add_to_wishlist.png);
161
- background-repeat: repeat;
162
- }
163
-
164
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
165
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt {
166
- position: relative;
167
- width: 36px;
168
- height: 36px;
169
- vertical-align: bottom;
170
- }
171
-
172
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before,
173
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before {
174
- position: absolute;
175
- top: 50%;
176
- left: 50%;
177
- margin-right: 0 !important;
178
- }
179
-
180
- .tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
181
- .tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt {
182
- padding-left: 1em;
183
- vertical-align: bottom;
184
- }
185
-
186
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-black:before {
187
- background-position: 0 0;
188
- width: 13px;
189
- height: 11px;
190
- }
191
-
192
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
193
- margin-top: -5px;
194
- margin-left: -6px;
195
- }
196
-
197
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-white:before {
198
- background-position: 0px 13px;
199
- width: 13px;
200
- height: 12px;
201
- }
202
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-black:before {
203
- background-position: 0 -12px;
204
- width: 13px;
205
- height: 12px;
206
- }
207
-
208
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.no-txt:before {
209
- margin-top: -6px;
210
- margin-left: -6px;
211
- }
212
-
213
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-black:before {
214
- background-position: 15px 0;
215
- width: 14px;
216
- height: 12px;
217
- }
218
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-white:before {
219
- background-position: 15px 25px;
220
- width: 14px;
221
- height: 12px;
222
- }
223
-
224
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before {
225
- margin-top: -5px;
226
- margin-left: -7px;
227
- }
228
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-white:before{
229
- background-position: 0 -25px;
230
- width: 13px;
231
- height: 11px;
232
- }
233
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-black:before {
234
- background-position: 15px -11px;
235
- width: 15px;
236
- height: 14px;
237
- }
238
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-white:before {
239
- background-position: 15px 14px;
240
- width: 15px;
241
- height: 14px;
242
- }
243
-
244
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.no-txt:before {
245
- margin-top: -7px;
246
- margin-left: -7px;
247
- }
248
-
249
- .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
250
- margin-bottom: 15px;
251
- }
252
-
253
- .woocommerce ul.products li.product .add_to_cart_button.button {
254
- /* float: left;*/
255
- }
256
-
257
- .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
258
- float: left;
259
- margin-right: 10px;
260
- margin-bottom: 0;
261
- }
262
-
263
- .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
264
- margin-top: 15px;
265
- }
266
-
267
- .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
268
- margin-left: 10px;
269
- }
270
-
271
- .single-product .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
272
- margin-top: 0;
273
- }
274
-
275
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt {
276
- padding: 10px 11px;
277
- line-height: 1;
278
- }
279
-
280
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom img {
281
- display: inline-block !important;
282
- vertical-align: baseline;
283
- width: auto !important;
284
- max-width: 16px;
285
- max-height: 16px;
286
- margin-bottom: 0;
287
- margin: 0 6px 0 0 !important;
288
- }
289
-
290
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img {
291
- margin-right: 0 !important;
292
- }
293
-
294
- .single-product div.product form.cart .button.tinvwl_add_to_wishlist_button,
295
- div.product form.cart .tinvwl_add_to_wishlist_button {
296
- float: none;
297
- }
298
-
299
- ul.products li.product .tinvwl_add_to_wishlist_button {
300
- margin-top: 1em;
301
- }
302
-
303
- .tinvwl_add_to_wishlist_button {
304
- display: inline-block;
305
- }
306
-
307
- .tinvwl_add_to_wishlist_button.button {
308
- }
309
-
310
- .tinv-wishlist.woocommerce .stock.in-stock:before {
311
- content: none;
312
- }
313
-
314
- .tinv-wraper.tinv-wishlist {
315
- font-size: 100%;
316
- }
317
-
318
- /* Create List */
319
-
320
- .tinv-create-list form {
321
- /*padding: 30px 30px 39px;*/
322
- }
323
-
324
- .tinv-create-list li input[type="radio"] {
325
- margin-right: 10px;
326
- }
327
-
328
- .tinv-create-list li + li {
329
- margin-top: 15px;
330
- }
331
-
332
- .tinv-create-list .input-group + ul {
333
- margin-top: 25px;
334
- }
335
-
336
-
337
- /* Search */
338
-
339
- .tinv-search-list {
340
- margin-bottom: 36px;
341
- }
342
-
343
-
344
- /* Header */
345
-
346
- .tinv-wishlist .tinv-header {
347
- margin-bottom: 30px;
348
- }
349
-
350
-
351
- /* Manage List */
352
-
353
- .tinv-wishlist table {
354
- position: relative;
355
- table-layout: auto;
356
- margin-bottom: 30px;
357
- z-index: 2;
358
- }
359
-
360
- .tinv-wishlist table.tinvwl-table-manage-list {
361
- margin-bottom: 27px;
362
- }
363
-
364
- .tinv-wishlist table input[type="checkbox"] {
365
- margin-right: 0;
366
- }
367
-
368
- .tinv-wishlist table th {
369
- /*padding: 22px 12px;*/
370
- vertical-align: middle;
371
- }
372
-
373
- /*.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public th {
374
- padding: 22px 15px;
375
- }
376
-
377
- .tinv-wishlist table.tinvwl-table-manage-list th {
378
- padding: 19px 12px;
379
- }*/
380
-
381
- .tinv-wishlist table td {
382
- /*padding: 27px 12px;*/
383
- vertical-align: middle;
384
- }
385
-
386
- /*.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public td {
387
- padding: 36px 15px;
388
- }
389
-
390
- .tinv-wishlist table.tinvwl-table-manage-list td {
391
- padding: 26px 12px;
392
- }*/
393
-
394
- .tinv-wishlist .tinvwl-table-manage-list .product-cb {
395
- /*padding-left: 10px;
396
- padding-right: 10px;*/
397
- width: 35px;
398
- text-align: center;
399
- }
400
-
401
- .tinv-wishlist .tinvwl-table-manage-list .product-remove {
402
- /*padding-left: 10px;
403
- padding-right: 10px;*/
404
- width: 46px;
405
- text-align: center;
406
- }
407
-
408
- .tinv-wishlist .product-remove button {
409
- display: block;
410
- margin: 0 auto;
411
- width: 27px;
412
- height: 27px;
413
- text-indent: -9999px;
414
- -webkit-border-radius: 100%;
415
- -moz-border-radius: 100%;
416
- border-radius: 100%;
417
- padding: 0;
418
- box-shadow: none;
419
- border-bottom: 0;
420
- border: none;
421
- background-image: url(../img/icon_delete.png);
422
- background-position: center;
423
- background-repeat: no-repeat;
424
- background-color: #f7f7f7;
425
- }
426
-
427
- .tinv-wishlist .product-thumbnail {
428
- min-width: 100px;
429
- width: 100px;
430
- }
431
-
432
- .tinv-wishlist .product-thumbnail .wp-post-image {
433
- margin-bottom: 0;
434
- }
435
-
436
- /*.tinv-wishlist td.product-name {
437
- line-height: 20px;
438
- }
439
-
440
- .tinv-wishlist td.product-name a {
441
- line-height: 1.14285714;
442
- }*/
443
-
444
- .tinv-wishlist td.product-name a + .variation {
445
- margin-top: 2px;
446
- }
447
-
448
- /*.tinv-wishlist td.product-price {
449
- line-height: 24px;
450
- }*/
451
-
452
- /*.tinv-wishlist .tinvwl-table-manage-list td.product-stock {
453
- padding-left: 9px;
454
- padding-right: 9px;
455
- }*/
456
-
457
- .tinv-wishlist .product-stock i {
458
- /*font-size: 12px;*/
459
- margin-right: 15px;
460
- }
461
-
462
- .tinv-wishlist .product-stock p {
463
- display: table;
464
- }
465
-
466
- .tinv-wishlist .product-stock span {
467
- display: table-cell;
468
- vertical-align: middle;
469
- }
470
-
471
- /*.tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
472
- padding-left: 9px;
473
- padding-right: 9px;
474
- }*/
475
-
476
- .tinv-wishlist.woocommerce .product-quantity {
477
- width: 80px;
478
- text-align: center;
479
- }
480
-
481
- .tinv-wishlist.woocommerce table .quantity .qty {
482
- max-width: 100%;
483
- width: 62px;
484
- /*padding: 10px 12px;*/
485
- text-align: left;
486
- }
487
-
488
- .tinv-wishlist .product-action {
489
- width: 135px;
490
- text-align: center;
491
- }
492
-
493
- .tinv-wishlist table.tinvwl-table-manage-list .product-action {
494
- /*padding-left: 11px;
495
- padding-right: 11px;*/
496
- }
497
-
498
- .tinv-wishlist .product-action .button {
499
- width: 100%;
500
- }
501
-
502
- .tinv-wishlist .product-action > .button > i {
503
- display: none;
504
- }
505
-
506
- .tinv-wishlist .product-action .tinvwl_move_product_button {
507
- margin-top: 5px;
508
- }
509
-
510
- .tinv-wishlist table thead th .tinvwl-mobile,
511
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
512
- display: none;
513
- }
514
-
515
- .tinv-wishlist .tinvwl-table-manage-list .product-action > button[name="tinvwl-remove"] > i {
516
- /*font-size: 12px;*/
517
- margin-right: 0;
518
- }
519
-
520
- .tinv-wishlist .tinvwl-table-manage-list .product-action > .tinvwl_move_product_button > i {
521
- /*font-size: 12px;*/
522
- }
523
-
524
- @media only screen and (max-width: 1024px) {
525
- .tinv-wishlist .tinvwl-table-manage-lists:not(.tinvwl-public) {
526
- margin-top: 0px;
527
- }
528
-
529
- .tinv-wishlist .tinvwl-table-manage-list .product-remove {
530
- display: none;
531
- }
532
-
533
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
534
- display: inline-block;
535
- margin-top: 5px;
536
- }
537
-
538
- .tinv-wishlist .product-action {
539
- width: 60px;
540
- }
541
- }
542
-
543
- @media only screen and (max-width: 1024px) and (min-width: 641px) {
544
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock p {
545
- display: block;
546
- text-align: center;
547
- }
548
-
549
- .tinv-wishlist .product-stock span {
550
- display: block;
551
- }
552
-
553
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock i {
554
- margin-right: 0;
555
- }
556
-
557
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock .tinvwl-txt {
558
- display: none;
559
- }
560
-
561
- .tinv-wishlist .product-thumbnail {
562
- max-width: 76px;
563
- width: 76px;
564
- }
565
-
566
- /*.tinv-wishlist table.tinvwl-table-manage-list td.product-thumbnail {
567
- padding-left: 10px;
568
- padding-right: 10px;
569
- }*/
570
-
571
- /*.tinv-wishlist .product-action .button {
572
- padding: 11.5px 12px !important;
573
- }*/
574
-
575
- .tinv-wishlist .product-action .button > i {
576
- display: inline-block;
577
- margin-right: 0;
578
- }
579
-
580
- .tinv-wishlist .product-action .button .tinvwl-txt {
581
- display: none;
582
- }
583
- }
584
-
585
- @media only screen and (max-width: 640px) {
586
- /*.tinv-wishlist table.tinvwl-table-manage-list th {
587
- padding-top: 26px;
588
- padding-bottom: 26px;
589
- }*/
590
-
591
- .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name),
592
- .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
593
- .tinv-wishlist table.tinvwl-table-manage-lists thead th:not(.wishlist-name),
594
- .tinv-wishlist thead th .tinvwl-full {
595
- display: none;
596
- }
597
-
598
- .tinv-wishlist table.tinvwl-table-manage-list thead th.product-name,
599
- .tinv-wishlist table.tinvwl-table-manage-lists thead th.wishlist-name {
600
- display: block;
601
- width: 100%;
602
- text-align: center;
603
- }
604
-
605
- .tinv-wishlist table thead th .tinvwl-mobile {
606
- display: block;
607
- }
608
-
609
- .tinv-wishlist table.tinvwl-table-manage-list tbody td,
610
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td,
611
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td {
612
- display: block;
613
- width: 100% !important;
614
- /*padding: 0 12px 12px;*/
615
- text-align: center;
616
- }
617
-
618
- .tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child),
619
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td:not(:last-child),
620
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td:not(:last-child) {
621
- border-bottom: 0;
622
- }
623
-
624
- /*.tinv-wishlist table.tinvwl-table-manage-list tbody td:first-child,
625
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td:first-child {
626
- padding-top: 20px;
627
- }
628
-
629
- .tinv-wishlist table.tinvwl-table-manage-list td,
630
- .tinv-wishlist table.tinvwl-table-manage-lists td,
631
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public td {
632
- padding: 12px;
633
- }
634
-
635
- .tinv-wishlist .tinvwl-table-manage-list td.product-cb,
636
- .tinv-wishlist .tinvwl-table-manage-lists td.wishlist-cb {
637
- padding-bottom: 20px;
638
- }
639
-
640
- .tinv-wishlist .tinvwl-table-manage-list td.product-thumbnail {
641
- padding-top: 20px;
642
- padding-bottom: 14px;
643
- }
644
-
645
- .tinv-wishlist .tinvwl-table-manage-list td.product-cb + td.product-remove + td.product-thumbnail {
646
- padding-top: 0;
647
- }
648
-
649
- .tinv-wishlist .tinvwl-table-manage-list td.product-name {
650
- padding-bottom: 6px;
651
- }
652
-
653
- .tinv-wishlist .tinvwl-table-manage-list td.product-price {
654
- padding-bottom: 23px;
655
- }
656
-
657
- .tinv-wishlist .tinvwl-table-manage-list td.product-date {
658
- padding-bottom: 16px;
659
- }
660
-
661
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock {
662
- padding-bottom: 24px;
663
- }
664
-
665
- .tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
666
- padding: 0 12px 10px;
667
- }*/
668
-
669
- .tinv-wishlist .product-thumbnail img,
670
- .tinv-wishlist .product-stock p {
671
- margin: 0 auto;
672
- }
673
-
674
- .tinv-wishlist .product-thumbnail img {
675
- max-width: 80px;
676
- }
677
-
678
- .tinv-wishlist.woocommerce table .quantity .qty {
679
- text-align: center;
680
- width: 100%;
681
- }
682
-
683
- .tinv-wishlist .product-action .tinvwl_move_product_button {
684
- margin-top: 10px;
685
- }
686
-
687
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
688
- margin-top: 10px;
689
- text-indent: -9999px;
690
- background-image: url(../img/icon_delete.png);
691
- background-position: center;
692
- background-repeat: no-repeat;
693
- }
694
-
695
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] > i {
696
- display: inline-block;
697
- }
698
-
699
- .tinv-wishlist table.tinvwl-table-manage-list tfoot td {
700
- display: block;
701
- width: 100%;
702
- }
703
-
704
- .tinv-wishlist table.tinvwl-table-manage-lists .wishlist-action button[value="manage_remove"] {
705
- width: 100%;
706
- }
707
-
708
- .tinv-wishlist table.tinvwl-table-manage-lists .wishlist-name .tinvwl-rename-button {
709
- float: none;
710
- }
711
- }
712
-
713
-
714
- /* Manage Lists */
715
-
716
- .tinv-wishlist .wishlist-cb {
717
- /*padding-left: 10px;
718
- padding-right: 10px;*/
719
- width: 33px;
720
- text-align: center;
721
- }
722
-
723
- .tinv-wishlist .wishlist-name .tinvwl-rename-input input {
724
- width: 100%;
725
- }
726
-
727
- .tinv-wishlist .wishlist-name .tinvwl-rename-button {
728
- float: right;
729
- }
730
-
731
- .tinv-wishlist .wishlist-name .tinvwl-rename-button > i {
732
- margin-right: 10px;
733
- }
734
-
735
- .tinv-wishlist table:not(.tinvwl-public) .wishlist-date,
736
- .tinv-wishlist .wishlist-privacy {
737
- width: 18%;
738
- }
739
-
740
- /*.tinv-wishlist .wishlist-privacy {
741
- padding-left: 15px;
742
- padding-right: 15px;
743
- }*/
744
-
745
- .tinv-wishlist .wishlist-privacy select {
746
- width: 100%;
747
- }
748
-
749
- .tinv-wishlist .wishlist-name {
750
- width: 45%;
751
- }
752
-
753
- .tinv-wishlist .wishlist-action {
754
- /*padding-left: 10px;
755
- padding-right: 10px;*/
756
- width: 120px;
757
- text-align: center;
758
- }
759
-
760
- /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
761
- background-image: url(../img/icon_delete.png);
762
- background-repeat: no-repeat;
763
- background-position: 14px 12px;
764
- padding-left: 39px;
765
- padding-right: 17px;
766
- }*/
767
-
768
- .tinv-wishlist .wishlist-action button[value="manage_remove"] > i {
769
- display: none;
770
- /*font-size: 12px;*/
771
- margin-right: 0;
772
- }
773
-
774
- /*.tinv-wishlist tfoot .tinvwl-to-left,*/
775
- .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list {
776
- /*float: left;*/
777
- display: inline-block;
778
- vertical-align: middle;
779
- }
780
-
781
- .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list > a.button {
782
- margin-right: 0;
783
- }
784
-
785
- /*.tinv-wishlist tfoot .tinvwl-to-right {
786
- float: right;
787
- }*/
788
-
789
- .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
790
- margin-top: 0;
791
- }
792
-
793
- .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
794
- margin-top: -10px;
795
- }
796
-
797
- .tinv-wishlist tfoot .tinvwl-to-left:not(:empty) {
798
- float: left;
799
- width: 35%;
800
- margin-right: 2%;
801
- }
802
-
803
- .tinv-wishlist tfoot .tinvwl-to-right {
804
- float: left;
805
- width: 63%;
806
- text-align: right;
807
- }
808
-
809
- .tinv-wishlist tfoot .tinvwl-to-right > * {
810
- margin: 10px 0 0;
811
- vertical-align: middle;
812
- }
813
-
814
- .tinv-wishlist tfoot .tinvwl-to-right > * + * {
815
- margin-left: 10px;
816
- }
817
-
818
- .tinv-wishlist tfoot .tinvwl-to-left:empty + .tinvwl-to-right {
819
- width: 100%;
820
- }
821
-
822
- .tinv-wishlist button[value="product_apply"]/*,
823
- .tinv-wishlist button + button[value="product_selected"],
824
- .tinv-wishlist button + button[value="product_all"]*/ {
825
- /*margin-left: 10px;*/
826
- }
827
-
828
- .tinv-wishlist button[value="manage_apply"]/*,
829
- .tinv-wishlist button[value="manage_save"]*/ {
830
- /*margin-left: 10px;*/
831
- }
832
-
833
- @media only screen and (max-width: 1024px) {
834
- .tinv-wishlist .wishlist-name .tinvwl-rename-button span {
835
- display: none;
836
- }
837
-
838
- .tinv-wishlist .wishlist-name .tinvwl-rename-button > i {
839
- margin-right: 0;
840
- }
841
-
842
- /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
843
- padding-left: 17px;
844
- }*/
845
-
846
- .tinv-wishlist .wishlist-action {
847
- width: 60px;
848
- }
849
-
850
- .tinv-wishlist tfoot .tinvwl-to-left:not(:empty),
851
- .tinv-wishlist tfoot .tinvwl-to-right {
852
- float: none;
853
- width: auto;
854
- }
855
-
856
- .tinv-wishlist tfoot .tinvwl-to-left:not(:empty) {
857
- margin-right: 0;
858
- }
859
-
860
- .tinv-wishlist tfoot .tinvwl-to-right {
861
- text-align: left;
862
- }
863
- }
864
-
865
- @media only screen and (max-width: 1024px) and (min-width: 641px) {
866
- /*.tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
867
- margin-top: 10px;
868
- }*/
869
-
870
- /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
871
- background-image: none;
872
- padding: 11.5px 12px !important;
873
- }*/
874
-
875
- .tinv-wishlist .wishlist-action button[value="manage_remove"] span {
876
- display: none;
877
- }
878
-
879
- .tinv-wishlist .wishlist-action button[value="manage_remove"] > i {
880
- display: inline-block;
881
- }
882
-
883
- .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
884
- margin-top: 0;
885
- }
886
- }
887
-
888
- @media only screen and (max-width: 640px) {
889
- /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
890
- text-indent: -9999px;
891
- background-position: center;
892
- }*/
893
-
894
- .tinv-wishlist button[value="manage_apply"] .tinvwl-mobile,
895
- .tinv-wishlist button[value="product_apply"] .tinvwl-mobile {
896
- display: none;
897
- }
898
-
899
- .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list {
900
- display: block;
901
- }
902
-
903
- .tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right button,
904
- .tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right .button,
905
- .tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right button,
906
- .tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right .button {
907
- width: 100%;
908
- margin: 10px 0 0;
909
- }
910
-
911
- .tinv-wishlist tfoot .tinvwl-to-right > * {
912
- margin: 10px 0 0;
913
- }
914
-
915
- /*.tinv-wishlist .tinvwl-table-manage-list tfoot select,
916
- .tinv-wishlist .tinvwl-table-manage-lists tfoot select {
917
- width: calc(100% - 127px);
918
- }*/
919
-
920
- .tinv-wishlist tfoot .tinvwl-to-right button:first-child,
921
- .tinv-wishlist tfoot .tinvwl-to-right .button:first-child {
922
- margin-top: 0 !important;
923
- }
924
-
925
- .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
926
- margin-top: 20px;
927
- }
928
-
929
- /*.tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
930
- margin-top: 10px;
931
- }*/
932
- }
933
-
934
-
935
- /* Table Navigation */
936
-
937
- .tinv-wishlist .social-buttons + .clear + .navigation-button,
938
- .tinv-wishlist .tinvwl-estimate-wrap + .clear + .navigation-button {
939
- margin-top: 16px;
940
- }
941
-
942
- .tinv-wishlist .navigation-button > li {
943
- float: left;
944
- }
945
-
946
- .tinv-wishlist .navigation-button > li + li {
947
- /*margin-left: 10px;*/
948
- }
949
-
950
- .tinv-wishlist .navigation-button {
951
- margin-top: -10px;
952
- }
953
-
954
- .tinv-wishlist .navigation-button > li > a,
955
- .tinv-wishlist .navigation-button > li > .tinv-create-list > a {
956
- margin-right: 30px;
957
- margin-top: 10px;
958
- display: inline-block;
959
- }
960
-
961
- .tinv-wishlist .navigation-button > li > a.button,
962
- .tinv-wishlist .navigation-button > li > .tinv-create-list > a.button {
963
- margin-right: 10px;
964
- }
965
-
966
- .tinv-wishlist .navigation-button > li:last-child > a,
967
- .tinv-wishlist .navigation-button > li:last-child > .tinv-create-list > a {
968
- margin-right: 0;
969
- }
970
-
971
- @media only screen and (max-width: 1024px) {
972
- .tinv-wishlist .social-buttons + .clear + .navigation-button {
973
- margin-top: 30px;
974
- }
975
- }
976
-
977
-
978
- /* Social Buttons */
979
-
980
- .tinv-wishlist .social-buttons {
981
- float: right;
982
- }
983
-
984
- .tinv-wishlist form + .social-buttons {
985
- }
986
-
987
- .tinv-wishlist .social-buttons > span,
988
- .tinv-wishlist .social-buttons > ul {
989
- display: inline-block;
990
- vertical-align: middle;
991
- }
992
-
993
- .tinv-wishlist .social-buttons > span {
994
- margin-right: 27px;
995
- }
996
-
997
- .tinv-wishlist .social-buttons li {
998
- float: left;
999
- }
1000
-
1001
- .tinv-wishlist .social-buttons li {
1002
- margin-right: 5px;
1003
- }
1004
-
1005
- .tinv-wishlist .social-buttons li:last-child {
1006
- margin-right: 0;
1007
- }
1008
-
1009
- .tinv-wishlist .social-buttons li a {
1010
- /*padding: 0px 10px;*/
1011
- display: block;
1012
- width: 41px;
1013
- height: 41px;
1014
- -webkit-border-radius: 50%;
1015
- -moz-border-radius: 50%;
1016
- border-radius: 50%;
1017
- text-indent: -9999px;
1018
- text-align: center;
1019
- box-shadow: none;
1020
- border-bottom: 0;
1021
- background-image: url(../img/social.png);
1022
- background-repeat: no-repeat;
1023
- background-position: center;
1024
- }
1025
- .tinv-wishlist .social-buttons li a.white{
1026
- background-image: url(../img/social_white.png);
1027
- }
1028
- .tinv-wishlist .social-buttons li a.dark{
1029
- background-image: url(../img/social.png);
1030
- }
1031
-
1032
- .tinv-wishlist .social-buttons li a:hover {
1033
- }
1034
-
1035
- .tinv-wishlist .social-buttons li .social-facebook {
1036
- background-position: 16px center;
1037
- }
1038
-
1039
- .tinv-wishlist .social-buttons li .social-twitter {
1040
- background-position: -28px center;
1041
- }
1042
-
1043
- .tinv-wishlist .social-buttons li .social-pinterest {
1044
- background-position: -73px center;
1045
- }
1046
-
1047
- .tinv-wishlist .social-buttons li .social-google {
1048
- background-position: -119px center;
1049
- }
1050
-
1051
- .tinv-wishlist .social-buttons li .social-email {
1052
- background-position: -164px center;
1053
- }
1054
-
1055
- @media only screen and (max-width: 1024px) {
1056
- .tinv-wishlist .social-buttons {
1057
- float: none;
1058
- width: auto;
1059
- text-align: left;
1060
- margin-top: 20px;
1061
- }
1062
- }
1063
-
1064
- .tinv-wishlist .navigation-button .tinv-create-list > a.tinvwl-no-icon > i,
1065
- .tinv-wishlist .navigation-button li > a.tinvwl-no-icon > i {
1066
- display: none;
1067
- }
1068
-
1069
- @media only screen and (max-width: 640px) {
1070
- .tinv-wishlist .social-buttons {
1071
- text-align: center;
1072
- }
1073
-
1074
- .tinv-wishlist .navigation-button > li {
1075
- width: 20%;
1076
- text-align: center;
1077
- }
1078
-
1079
- .tinv-wishlist .navigation-button.tinvwl-btns-count-1 > li {
1080
- width: 100%;
1081
- }
1082
-
1083
- .tinv-wishlist .navigation-button.tinvwl-btns-count-2 > li {
1084
- width: 50%;
1085
- }
1086
-
1087
- .tinv-wishlist .navigation-button.tinvwl-btns-count-3 > li {
1088
- width: 33%;
1089
- }
1090
-
1091
- .tinv-wishlist .navigation-button.tinvwl-btns-count-4 > li {
1092
- width: 25%;
1093
- }
1094
-
1095
- .tinv-wishlist .navigation-button > li + li {
1096
- width: 20%;
1097
- }
1098
-
1099
- .tinv-wishlist .navigation-button.tinvwl-btns-count-1 > li + li {
1100
- width: 100%;
1101
- }
1102
-
1103
- .tinv-wishlist .navigation-button.tinvwl-btns-count-2 > li + li {
1104
- width: 50%;
1105
- }
1106
-
1107
- .tinv-wishlist .navigation-button.tinvwl-btns-count-3 > li + li {
1108
- width: 33%;
1109
- }
1110
-
1111
- .tinv-wishlist .navigation-button.tinvwl-btns-count-4 > li + li {
1112
- width: 25%;
1113
- }
1114
-
1115
- .tinv-wishlist .navigation-button > li > a,
1116
- .tinv-wishlist .navigation-button > li > .tinv-create-list > a {
1117
- width: calc(100% - 10px);
1118
- margin-right: 0;
1119
- }
1120
-
1121
- .tinv-wishlist .navigation-button .tinv-create-list > a .tinvwl-txt,
1122
- .tinv-wishlist .navigation-button li > a .tinvwl-txt {
1123
- display: none;
1124
- }
1125
-
1126
- .tinv-wishlist .navigation-button .tinv-create-list > a > i,
1127
- .tinv-wishlist .navigation-button li > a > i {
1128
- display: inline-block !important;
1129
- margin-right: 0;
1130
- }
1131
-
1132
- .tinv-wishlist .social-buttons > span {
1133
- display: block;
1134
- margin-top: 0;
1135
- margin-right: 0;
1136
- margin-bottom: 5px;
1137
- }
1138
- }
1139
-
1140
-
1141
- /* Navigation */
1142
-
1143
- .tinv-wishlist .tinv-lists-nav {
1144
- margin-bottom: 35px;
1145
- }
1146
- .tinv-wishlist table + .tinv-lists-nav {
1147
- margin-top: 35px;
1148
- }
1149
-
1150
- .tinv-wishlist .tinv-prev,
1151
- .tinv-wishlist .tinv-next {
1152
- display: inline-block;
1153
- }
1154
-
1155
- .tinv-wishlist .tinv-prev {
1156
- float: left;
1157
- }
1158
-
1159
- .tinv-wishlist .tinv-next {
1160
- float: right;
1161
- }
1162
-
1163
- .tinv-wishlist .tinv-prev i {
1164
- margin-left: 0;
1165
- margin-right: 18px;
1166
- }
1167
-
1168
- .tinv-wishlist .tinv-next i {
1169
- margin-left: 18px;
1170
- margin-right: 0;
1171
- }
1172
-
1173
-
1174
- /* Login */
1175
-
1176
- .tinv-wishlist .tinv-login {
1177
- margin-bottom: 30px;
1178
- }
1179
-
1180
- .tinv-wishlist .tinv-login i.login_key {
1181
- display: inline-block;
1182
- vertical-align: text-bottom;
1183
- margin-right: 16px;
1184
- }
1185
-
1186
- .tinv-wishlist .tinv-login .login {
1187
- display: none;
1188
- border: none;
1189
- padding: 0;
1190
- margin: 24px 0 0;
1191
- }
1192
-
1193
- .tinv-wishlist .tinv-login h2 {
1194
- display: none;
1195
- }
1196
-
1197
- .tinv-wishlist .tinv-login .lost_password {
1198
- margin-bottom: 0;
1199
- }
1200
-
1201
- .tinv-wishlist .tinv-login form .form-row {
1202
- padding: 0;
1203
- margin: 0;
1204
- }
1205
-
1206
- .tinv-wishlist .tinv-login form .form-row + .input-group-btn {
1207
- padding-left: 9px;
1208
- }
1209
-
1210
- .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1211
- .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1212
- width: 50%;
1213
- }
1214
-
1215
- .tinv-wishlist.woocommerce .tinv-login form .form-row-first {
1216
- padding-right: 4px;
1217
- }
1218
-
1219
- .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1220
- padding-left: 4px;
1221
- }
1222
-
1223
- .tinv-wishlist .tinv-login form .tinv-rememberme,
1224
- .tinv-wishlist .tinv-login form .lost_password {
1225
- float: left;
1226
- margin-top: 16px;
1227
- }
1228
-
1229
- .tinv-wishlist .tinv-login .tinv-rememberme + .lost_password {
1230
- margin-left: 26px;
1231
- }
1232
-
1233
- .tinv-wishlist .tinv-login .tinvwl-icon {
1234
- position: absolute;
1235
- top: 50%;
1236
- left: 14px;
1237
- display: none;
1238
- width: 12px;
1239
- height: 14px;
1240
- margin-top: -7px;
1241
- background-repeat: no-repeat;
1242
- background-position: center;
1243
- }
1244
-
1245
- .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1246
- height: 17px;
1247
- margin-top: -8.5px;
1248
- background-image: url(../img/login_name.png);
1249
- }
1250
-
1251
- .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1252
- left: 17px;
1253
- height: 14px;
1254
- margin-top: -7px;
1255
- background-image: url(../img/login_pass.png);
1256
- }
1257
-
1258
- @media only screen and (max-width: 1024px) {
1259
- .tinv-wishlist .tinv-login form input[name="login"] {
1260
- min-width: auto;
1261
- }
1262
- }
1263
-
1264
- @media only screen and (max-width: 667px) {
1265
- .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1266
- .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1267
- float: none;
1268
- width: 100%;
1269
- }
1270
-
1271
- .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1272
- .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1273
- padding: 0;
1274
- }
1275
-
1276
- .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1277
- margin-top: 10px;
1278
- }
1279
-
1280
- .tinv-wishlist.woocommerce .tinv-login form .input-group-btn {
1281
- display: block;
1282
- padding: 0;
1283
- width: auto;
1284
- margin-top: 10px;
1285
- }
1286
- }
1287
-
1288
-
1289
- /* Modal */
1290
-
1291
- .tinv-overlay {
1292
- position: fixed;
1293
- top: 0;
1294
- left: 0;
1295
- width: 100%;
1296
- height: 100%;
1297
- visibility: hidden;
1298
- opacity: 0;
1299
-
1300
- -webkit-transition: opacity .3s ease, visibility .3s ease;
1301
- -moz-transition: opacity .3s ease, visibility .3s ease;
1302
- -o-transition: opacity .3s ease, visibility .3s ease;
1303
- transition: opacity .3s ease, visibility .3s ease;
1304
-
1305
- background: #191919;
1306
- }
1307
-
1308
- .tinv-modal.tinv-modal-open .tinv-overlay {
1309
- visibility: visible;
1310
- opacity: .5;
1311
- }
1312
-
1313
- .admin-bar .tinv-wishlist .tinv-modal {
1314
- padding-top: 32px !important;
1315
- }
1316
-
1317
- .tinv-wishlist .tinv-modal .tinv-modal-inner {
1318
- position: relative;
1319
- margin: 0 auto;
1320
- background-color: #ffffff;
1321
- }
1322
-
1323
- .tinv-wishlist .tinv-modal {
1324
- overflow-y: auto;
1325
- overflow-x: hidden;
1326
- top: 0;
1327
- left: 0;
1328
- width: 0;
1329
- height: 0;
1330
- z-index: 9999;
1331
- position: fixed;
1332
- outline: none !important;
1333
- -webkit-backface-visibility: hidden;
1334
- visibility: hidden;
1335
- opacity: 0;
1336
- text-align: left;
1337
-
1338
- -webkit-transition: opacity .3s ease, visibility .3s ease;
1339
- -moz-transition: opacity .3s ease, visibility .3s ease;
1340
- -o-transition: opacity .3s ease, visibility .3s ease;
1341
- transition: opacity .3s ease, visibility .3s ease;
1342
- }
1343
-
1344
- .tinv-wishlist .tinv-modal.tinv-modal-open {
1345
- visibility: visible;
1346
- opacity: 1;
1347
- width: 100%;
1348
- height: 100%;
1349
- }
1350
-
1351
- .tinv-wishlist .tinv-modal .tinv-close-modal {
1352
- display: inline-block;
1353
- position: absolute;
1354
- top: 17px;
1355
- right: 14px;
1356
- width: 26px;
1357
- height: 26px;
1358
- line-height: 26px;
1359
- font-size: 12px;
1360
- text-align: center;
1361
- -webkit-border-radius: 50%;
1362
- -moz-border-radius: 50%;
1363
- border-radius: 50%;
1364
- box-shadow: none;
1365
- border-bottom: 0;
1366
- box-shadow: none !important;
1367
- background-color: #ebe9eb;
1368
- }
1369
-
1370
- .tinv-wishlist .tinv-modal .tinv-close-modal:hover {
1371
- }
1372
-
1373
- @media screen and (max-width: 782px) {
1374
- .admin-bar .tinv-wishlist .tinv-modal {
1375
- padding-top: 46px !important;
1376
- }
1377
- }
1378
-
1379
- @media screen and (max-width: 600px) {
1380
- .admin-bar .tinv-wishlist .tinv-modal {
1381
- padding-top: 0 !important;
1382
- }
1383
-
1384
- .tinv-wishlist .tinv-modal .tinv-close-modal {
1385
- position: static;
1386
- display: block;
1387
- margin: 0 auto 20px;
1388
- }
1389
- }
1390
-
1391
-
1392
- /* Move */
1393
-
1394
- .tinv-wishlist .tinv-modal .tinv-modal-inner {
1395
- max-width: 360px;
1396
- padding: 40px;
1397
- }
1398
-
1399
- .tinv-wishlist .tinv-modal .tinv-modal-inner {
1400
- /*padding-top: 35px;*/
1401
- }
1402
-
1403
- .tinv-wishlist .tinv-modal img, .tinv-wishlist .tinv-modal .icon_big_times, .tinv-wishlist .tinv-modal .icon_big_heart_check, .tinv-wishlist .tinv-modal .icon_big_heart_next, .tinv-wishlist .tinv-modal .icon_big_heart_plus, .tinv-wishlist .tinv-modal .icon_big_heart_subscribe
1404
- {
1405
- display: block;
1406
- margin: 0 auto;
1407
- margin-bottom: 25px;
1408
- opacity: 1 !important;
1409
- }
1410
-
1411
- .tinv-wishlist .tinv-modal ul {
1412
- overflow: visible;
1413
- list-style: disc;
1414
- margin: 10px 0 0 20px;
1415
- }
1416
-
1417
- .tinv-wishlist .tinv-modal li {
1418
- list-style: disc !important;
1419
- }
1420
-
1421
- .tinv-wishlist.tinv-create-list form ul,
1422
- .tinv-wishlist .tinv-create-list .tinv-modal ul {
1423
- list-style: none !important;
1424
- margin: 25px 0 0;
1425
- }
1426
-
1427
- .tinv-wishlist.tinv-create-list form li,
1428
- .tinv-wishlist .tinv-create-list .tinv-modal li {
1429
- list-style: none !important;
1430
- }
1431
-
1432
- .tinv-wishlist.tinv-create-list form,
1433
- .tinv-wishlist .tinv-create-list .tinv-modal form {
1434
- /*background: none;
1435
- padding: 0;*/
1436
- }
1437
-
1438
- .tinv-wishlist .tinv-modal .already-in {
1439
- margin-bottom: 35px;
1440
- }
1441
-
1442
- .tinv-wishlist .tinv-modal .delete-notification {
1443
- margin-bottom: 25px;
1444
- }
1445
-
1446
- .tinv-wishlist .tinv-modal .already-in ul {
1447
- overflow: visible;
1448
- margin: 12px 0 27px 17px;
1449
- }
1450
-
1451
- /*.tinv-wishlist .tinv-modal .already-in ul li + li {
1452
- margin-top: 10px;
1453
- }*/
1454
-
1455
- .tinv-wishlist .tinv-modal select {
1456
- width: 100%;
1457
- }
1458
-
1459
- .tinv-wishlist .tinv-modal select + input,
1460
- .tinv-wishlist .tinv-modal select + button,
1461
- .tinv-wishlist .tinv-modal label + button,
1462
- .tinv-wishlist .tinv-modal label + input,
1463
- .tinv-wishlist .tinv-modal input + button,
1464
- .tinv-wishlist .tinv-modal button + button,
1465
- .tinv-wishlist .tinv-modal button + .button,
1466
- .woocommerce .tinv-wishlist .tinv-modal button + button.button {
1467
- margin-top: 12px;
1468
- width: 100%;
1469
- }
1470
-
1471
- .tinv-wishlist .tinv-modal .already-in + label {
1472
- display: block;
1473
- margin-top: 6px;
1474
- }
1475
-
1476
- .tinv-wishlist .tinv-modal label select {
1477
- margin-top: 8px;
1478
- }
1479
-
1480
- .tinv-wishlist .tinv-modal .delete-notification + button {
1481
- width: 100%;
1482
- }
1483
-
1484
- /*.tinv-wishlist .tinv-modal .button {
1485
- font-weight: normal;
1486
- padding: 11px 19px;
1487
- }
1488
-
1489
- .tinv-wishlist .tinv-modal button i,
1490
- .tinv-wishlist .tinv-modal .button i {
1491
- font-size: 12px;
1492
- }*/
1493
-
1494
-
1495
- /* Added to Wishlist */
1496
-
1497
- .tinv-wishlist .tinvwl_added_to_wishlist,
1498
- .tinv-wishlist .tinvwl_created_wishlist {
1499
- text-align: center;
1500
- }
1501
-
1502
- .tinv-wishlist .tinvwl_added_to_wishlist .tinv-txt,
1503
- .tinv-wishlist .tinvwl_created_wishlist .tinv-txt {
1504
- margin-bottom: 25px;
1505
- }
1506
-
1507
- .woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button,
1508
- .tinv-wishlist .tinvwl_created_wishlist button {
1509
- margin-top: 0;
1510
- }
1511
-
1512
- /*.tinv-wishlist .tinvwl_added_to_wishlist .tinvwl_button_view,
1513
- .tinv-wishlist .tinvwl_created_wishlist .tinvwl_button_view {
1514
- padding: 11px 11px;
1515
- }*/
1516
-
1517
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group {
1518
- margin-top: 20px;
1519
- }
1520
-
1521
-
1522
- /* Follow Wishlist */
1523
-
1524
- .tinvwl-subscribe-wrap {
1525
- float: left;
1526
- }
1527
-
1528
- .tinv-wishlist .tinv-modal.tinvwl-subscribe img {
1529
- margin-bottom: 30px;
1530
- }
1531
-
1532
- .tinv-wishlist .tinvwl-subscribe .tinvwl-txt {
1533
- margin-bottom: 18px;
1534
- }
1535
-
1536
- .tinv-wishlist .tinvwl-subscribe ul {
1537
- list-style: none;
1538
- margin: 0;
1539
- }
1540
-
1541
- .tinv-wishlist .tinvwl-subscribe li {
1542
- list-style: none !important;
1543
- }
1544
-
1545
- .tinv-wishlist .tinvwl-subscribe li + li {
1546
- margin-top: 8px;
1547
- }
1548
-
1549
- .tinv-wishlist .tinvwl-subscribe li input[type="checkbox"] {
1550
- margin-right: 11px;
1551
- }
1552
-
1553
- /*.tinv-wishlist .tinvwl-subscribe .tinvwl-buttons-group button i {
1554
- font-size: 14px;
1555
- }*//*todo*/
1556
-
1557
- .tinv-wishlist .tinvwl-buttons-group button {
1558
- width: 100%;
1559
- }
1560
-
1561
- .tinv-wishlist .tinvwl-buttons-group button + button {
1562
- margin-top: 7px;
1563
- }
1564
-
1565
- .tinv-wishlist .tinvwl-buttons-group + button {
1566
- width: 100%;
1567
- margin-top: 7px;
1568
- }
1569
-
1570
- .tinv-wishlist .tinvwl-subscribe-wrap + .clear + .navigation-button {
1571
- margin-top: 26px;
1572
- }
1573
-
1574
-
1575
- /* Estimate */
1576
-
1577
- .tinvwl-estimate-wrap {
1578
- float: left;
1579
- }
1580
-
1581
- /*.woocommerce.tinv-wishlist .tinvwl-estimate-wrap .button.tinv-modal-btn {
1582
- padding: 11.5px 15px;
1583
- }*/
1584
-
1585
- .tinv-wishlist .estimate-dialogbox .tinv-modal-inner {
1586
- max-width: 778px;
1587
- padding: 35px 30px 30px;
1588
- text-align: center;
1589
- }
1590
-
1591
- .tinv-wishlist .tinv-modal h2 {
1592
- text-align: center;
1593
- margin: 0 0 35px;
1594
- }
1595
-
1596
- .tinv-wishlist .estimate-dialogbox textarea {
1597
- height: 200px;
1598
- margin-bottom: 30px;
1599
- }
1600
-
1601
- /*.woocommerce.tinv-wishlist .estimate-dialogbox button {
1602
- padding: 15px 47px;
1603
- }*/
1604
-
1605
- @media only screen and (max-width: 1024px) {
1606
- .tinvwl-estimate-wrap,
1607
- .tinvwl-subscribe-wrap {
1608
- float: none;
1609
- width: auto;
1610
- }
1611
-
1612
- .tinv-wishlist .tinvwl-subscribe-wrap + .clear + .navigation-button {
1613
- margin-top: 30px;
1614
- }
1615
- }
1616
-
1617
- @media only screen and (max-width: 640px) {
1618
- .tinvwl-estimate-wrap,
1619
- .tinvwl-subscribe-wrap,
1620
- .social-buttons,
1621
- .navigation-button,
1622
- .tinv-lists-nav {
1623
- margin-left: 12px;
1624
- margin-right: 12px;
1625
- }
1626
-
1627
- .tinvwl-estimate-wrap .tinv-modal-btn,
1628
- .tinvwl-subscribe-wrap .tinv-modal-btn {
1629
- width: 100%;
1630
- }
1631
-
1632
- .tinvwl-estimate-wrap + .social-buttons {
1633
- margin-top: 10px;
1634
- }
1635
- }
1636
-
1637
- @media screen and (max-width: 600px) {
1638
- .tinv-wishlist .estimate-dialogbox .tinv-modal-inner {
1639
- padding-top: 25px;
1640
- }
1641
- }
1642
-
1643
-
1644
- /* Create Wishlist Modal */
1645
-
1646
- .tinv-wishlist .tinv-create-list .tinv-modal-inner {
1647
- max-width: 778px;
1648
- padding: 30px;
1649
- }
1650
-
1651
-
1652
- /* Modal Errors */
1653
-
1654
- .tinv-wishlist .input-group.tinvwl-has-error .form-control,
1655
- .tinv-wishlist .tinvwl-has-error:not(.input-group) {
1656
- border: 2px solid #FF0000;
1657
- }
1658
-
1659
- .tinv-wishlist .tinvwl-has-error + .tinvwl-error {
1660
- padding: 5px 0 0 5px;
1661
- color: #FF0000;
1662
- }
1663
-
1664
-
1665
- /* Search Widget */
1666
-
1667
- .tinvwl-search-submit:before {
1668
- -moz-osx-font-smoothing: grayscale;
1669
- -webkit-font-smoothing: antialiased;
1670
- display: inline-block;
1671
- font-family: "Genericons";
1672
- font-size: 16px;
1673
- font-style: normal;
1674
- font-variant: normal;
1675
- font-weight: normal;
1676
- line-height: .8125;
1677
- speak: none;
1678
- text-align: center;
1679
- text-decoration: inherit;
1680
- text-transform: none;
1681
- vertical-align: middle;
1682
- }
1683
-
1684
- .widget .tinvwl-search-submit:before {
1685
- content: "\f400";
1686
- position: relative;
1687
- /*width: 35px;*/
1688
- /*line-height: 35px;*/
1689
- padding: 0;
1690
- }
1691
-
1692
- .widget button.tinvwl-search-submit {
1693
- /*border-radius: 0 2px 2px 0;*/
1694
- overflow: hidden;
1695
- /*width: 35px;*/
1696
- }
1697
-
1698
- @media screen and (max-width: 909px) {
1699
- .widget .tinvwl-search-submit:before {
1700
- /*font-size: 24px;*/
1701
- /*width: 40px;*/
1702
- /*line-height: 42px;*/
1703
- }
1704
-
1705
- .widget button.tinvwl-search-submit {
1706
- /*width: 42px;*/
1707
- }
1708
- }
1709
-
1710
-
1711
- /* Tooltip */
1712
-
1713
- .tinvwl-tooltip {
1714
- display: none;
1715
- }
1716
-
1717
-
1718
- /* Bootstrap */
1719
-
1720
- .input-group {
1721
- position: relative;
1722
- display: table;
1723
- /*width: 100%;*/
1724
- border-collapse: separate;
1725
- }
1726
-
1727
- .input-group .form-control {
1728
- position: relative;
1729
- z-index: 1;
1730
- float: left;
1731
- height: 38px;
1732
- width: 100%;
1733
- margin-bottom: 0;
1734
- }
1735
-
1736
- .input-group .form-control + .input-group-btn {
1737
- padding-left: 15px;
1738
- }
1739
-
1740
- .tinv-wishlist .tinvwl-to-left .input-group .form-control + .input-group-btn {
1741
- padding-left: 10px;
1742
- }
1743
-
1744
- .tinv-wishlist .tinv-search-form .input-group .form-control + .input-group-btn {
1745
- padding-left: 9px;
1746
- }
1747
-
1748
- .tinv-wishlist.widget_wishlist_search .input-group .form-control + .input-group-btn {
1749
- padding-left: 0;
1750
- }
1751
-
1752
- .input-group-addon,
1753
- .input-group-btn,
1754
- .input-group .form-control {
1755
- display: table-cell;
1756
- }
1757
-
1758
- .input-group-addon,
1759
- .input-group-btn {
1760
- width: 1%;
1761
- white-space: nowrap;
1762
- vertical-align: middle;
1763
- }
1764
-
1765
- @media only screen and (max-width: 640px) {
1766
- .input-group {
1767
- width: 100%;
1768
- }
1769
- }
1770
-
1771
- @media only screen and (max-width: 667px) {
1772
- .input-group:not(.tinvwl-no-full) {
1773
- display: block;
1774
- }
1775
-
1776
- .input-group:not(.tinvwl-no-full) .form-control {
1777
- float: none;
1778
- }
1779
-
1780
- .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn,
1781
- .tinv-wishlist .tinv-search-form .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn {
1782
- padding-top: 10px;
1783
- padding-left: 0;
1784
- }
1785
-
1786
- .input-group:not(.tinvwl-no-full) .input-group-addon,
1787
- .input-group:not(.tinvwl-no-full) .input-group-btn,
1788
- .input-group:not(.tinvwl-no-full) .form-control {
1789
- display: block;
1790
- }
1791
-
1792
- .input-group:not(.tinvwl-no-full) .input-group-addon,
1793
- .input-group:not(.tinvwl-no-full) .input-group-btn,
1794
- .input-group:not(.tinvwl-no-full) .input-group-addon > input,
1795
- .input-group:not(.tinvwl-no-full) .input-group-addon > button,
1796
- .input-group:not(.tinvwl-no-full) .input-group-btn > input,
1797
- .input-group:not(.tinvwl-no-full) .input-group-btn > button {
1798
- width: 100%;
1799
- }
1800
- }
1801
-
1802
-
1803
- /* Misc */
1804
-
1805
- .tinv-table {
1806
- display: table;
1807
- width: 100%;
1808
- height: 100%;
1809
- }
1810
-
1811
- .tinv-cell {
1812
- display: table-cell;
1813
- vertical-align: middle;
1814
- }
1815
-
1816
- .tinv-wishlist .clear {
1817
- visibility: visible;
1818
- width: auto;
1819
- height: auto;
1820
- }
1821
-
1822
- .clear:before,
1823
- .clear:after {
1824
- content: "";
1825
- display: table;
1826
- }
1827
-
1828
- .clear:after {
1829
- clear: both;
1830
- }
1831
- /******************IMAGES**********************/
1832
-
1833
-
1834
- .icon_big_times{
1835
- background: url(../img/icon_big_times.png) no-repeat center;
1836
- display: inline-block;
1837
- background-size: 46px 46px;
1838
- width: 46px;
1839
- height: 46px;
1840
- }
1841
-
1842
- .icon_big_heart_check{
1843
- background: url(../img/icon_big_heart_check.png) no-repeat center;
1844
- display: inline-block;
1845
- background-size: 48px 42px;
1846
- width: 48px;
1847
- height: 42px;
1848
- }
1849
-
1850
- .icon_big_heart_next{
1851
- background: url(../img/icon_big_heart_next.png) no-repeat center;
1852
- display: inline-block;
1853
- background-size: 89px 42px;
1854
- width: 89px;
1855
- height: 42px;
1856
- }
1857
-
1858
- .icon_big_heart_plus{
1859
- background: url(../img/icon_big_heart_plus.png) no-repeat center;
1860
- display: inline-block;
1861
- background-size: 48px 42px;
1862
- width: 48px;
1863
- height: 42px;
1864
- }
1865
-
1866
-
1867
- .icon_big_heart_subscribe{
1868
- background: url(../img/icon_big_heart_subscribe.png) no-repeat center;
1869
- display: inline-block;
1870
- background-size: 48px 42px;
1871
- width: 48px;
1872
- height: 42px;
1873
- }
1874
-
1875
-
1876
-
1877
- .login_key{
1878
- background: url(../img/login_key.png) no-repeat center;
1879
- display: inline-block;
1880
- background-size: 20px 20px;
1881
- width: 20px;
1882
- height: 20px;
1883
- }
1884
- /**************** RETINA ***************/
1885
-
1886
- .tinv-wishlist .social-buttons li a{
1887
- background-size: 195px 18px;
1888
- }
1889
- .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1890
- background-size: 11px 17px;
1891
- }
1892
- .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1893
- background-size: 12px 14px;
1894
- }
1895
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
1896
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
1897
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1898
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1899
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
1900
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
1901
- background-size: 30px 50px;
1902
- }
1903
- .tinv-wishlist .product-remove button {
1904
- background-size: 11px 11px;
1905
- }
1906
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
1907
- background-size: 11px 11px;
1908
- }
1909
-
1910
- @media only screen and (-webkit-min-device-pixel-ratio: 1.5), not all, not all, not all {
1911
- .tinv-wishlist .social-buttons li a{
1912
- background-image: url(../img/social@2x.png);
1913
- }
1914
- .tinv-wishlist .social-buttons li a.white{
1915
- background-image: url(../img/social_white@2x.png);
1916
- }
1917
- .tinv-wishlist .social-buttons li a.dark{
1918
- background-image: url(../img/social@2x.png);
1919
- }
1920
-
1921
- .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1922
- background-image: url(../img/login_name@2x.png);
1923
- }
1924
- .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1925
- background-image: url(../img/login_pass@2x.png);
1926
- }
1927
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
1928
- .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
1929
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1930
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1931
- .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
1932
- .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
1933
- background-image: url(../img/add_to_wishlist@2x.png);
1934
- }
1935
- .tinv-wishlist .product-remove button {
1936
- background-image: url(../img/icon_delete@2x.png);
1937
- }
1938
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
1939
- background-image: url(../img/icon_delete@2x.png);
1940
- }
1941
- .icon_big_times{
1942
- background-image: url(../img/icon_big_times@2x.png);
1943
- }
1944
-
1945
- .icon_big_heart_check{
1946
- background-image: url(../img/icon_big_heart_check@2x.png);
1947
- }
1948
-
1949
- .icon_big_heart_next{
1950
- background-image: url(../img/icon_big_heart_next@2x.png);
1951
- }
1952
-
1953
- .icon_big_heart_plus{
1954
- background-image: url(../img/icon_big_heart_plus@2x.png);
1955
- }
1956
-
1957
- .icon_big_heart_subscribe{
1958
- background-image: url(../img/icon_big_heart_subscribe@2x.png);
1959
- }
1960
- .login_key{
1961
- background-image: url(../img/login_key@2x.png);
1962
- }
1963
-
1964
- }
1965
-
1966
- .disabled-add-wishlist {
1967
- color: #FFFFF;
1968
- cursor: not-allowed;
1969
- }
1970
-
1971
- .empty-name-wishlist {
1972
- border-color: #FF0000 !important;
1973
- }
1
+ /*
2
+ To change this license header, choose License Headers in Project Properties.
3
+ To change this template file, choose Tools | Templates
4
+ and open the template in the editor.
5
+ */
6
+ /*
7
+ Created on : 21.01.2016, 13:29:15
8
+ Author : kurtis.core
9
+ */
10
+
11
+ .tinv-wishlist,
12
+ .tinv-wishlist button,
13
+ .tinv-wishlist input,
14
+ .tinv-wishlist select,
15
+ .tinv-wishlist textarea {
16
+ }
17
+
18
+ .tinv-wishlist *,
19
+ .tinvwl-wishlist *:before,
20
+ .tinvwl-wishlist *:after {
21
+ -webkit-box-sizing: border-box;
22
+ -moz-box-sizing: border-box;
23
+ box-sizing: border-box;
24
+ }
25
+
26
+ .tinv-wishlist select {
27
+ /*padding: 8.5px 10px;*/
28
+ width: 140px;
29
+ }
30
+
31
+ .tinv-wishlist p:last-child {
32
+ margin-bottom: 0;
33
+ }
34
+
35
+ .tinv-wishlist ul {
36
+ list-style: none;
37
+ margin: 0;
38
+ padding: 0;
39
+ }
40
+
41
+ .tinv-wishlist table,
42
+ .tinv-wishlist form {
43
+ margin-bottom: 0;
44
+ }
45
+
46
+ .tinv-wishlist a {
47
+ /*box-shadow: none !important;*/
48
+ }
49
+
50
+ .tinv-wishlist button,
51
+ .tinv-wishlist input[type="button"],
52
+ .tinv-wishlist input[type="reset"],
53
+ .tinv-wishlist input[type="submit"] {
54
+ /*text-align: center;
55
+ font-weight: normal;
56
+ letter-spacing: 0;
57
+ line-height: 1;
58
+ text-transform: none;
59
+ padding: 11.5px 19px;*/
60
+ }
61
+
62
+ .tinv-wishlist .button,
63
+ .tinv-wishlist button,
64
+ .tinv-wishlist input[type=button],
65
+ .tinv-wishlist input[type=reset],
66
+ .tinv-wishlist input[type=submit] {
67
+ /*box-shadow: none;*/
68
+ }
69
+
70
+ .tinv-wishlist input[type="text"],
71
+ .tinv-wishlist input[type="email"],
72
+ .tinv-wishlist input[type="url"],
73
+ .tinv-wishlist input[type="password"],
74
+ .tinv-wishlist input[type="search"],
75
+ .tinv-wishlist input[type="tel"],
76
+ .tinv-wishlist input[type="number"],
77
+ .tinv-wishlist textarea {
78
+ /*padding: 9px 15px;*/
79
+ }
80
+
81
+ .woocommerce.tinv-wishlist #respond input#submit,
82
+ .woocommerce.tinv-wishlist a.button,
83
+ .woocommerce.tinv-wishlist button.button,
84
+ .woocommerce.tinv-wishlist input.button {
85
+ /*text-align: center;
86
+ font-weight: normal;
87
+ letter-spacing: 0;
88
+ line-height: 1;
89
+ text-transform: none;
90
+ padding: 11.5px 17px;*/
91
+ }
92
+
93
+ .woocommerce.tinv-wishlist #respond input#submit.alt,
94
+ .woocommerce.tinv-wishlist a.button.alt,
95
+ .woocommerce.tinv-wishlist button.button.alt,
96
+ .woocommerce.tinv-wishlist input.button.alt {
97
+ text-align: center;
98
+ /*padding: 11.5px 20px;*/
99
+ }
100
+
101
+ .woocommerce.tinv-wishlist .tinvwl-my-wishlists {
102
+ /*padding-left: 17px;
103
+ padding-right: 17px;*/
104
+ }
105
+
106
+ .woocommerce.tinv-wishlist .tinvwl-continue-shop {
107
+ /*padding-left: 17px;
108
+ padding-right: 17px;*/
109
+ }
110
+
111
+ .tinv-wishlist button i,
112
+ .tinv-wishlist input[type="button"] i,
113
+ .tinv-wishlist input[type="reset"] i,
114
+ .tinv-wishlist input[type="submit"] i,
115
+ .tinv-wishlist .button i {
116
+ /*font-size: 14px;*/
117
+ margin-right: 14px;
118
+ }
119
+
120
+ .tinv-wishlist .navigation-button a i {
121
+ margin-right: 14px;
122
+ /*vertical-align: middle;*/
123
+ }
124
+
125
+ .tinv-wishlist a.tinvwl-my-wishlists i {
126
+ margin-right: 17px;
127
+ }
128
+
129
+ .tinv-wishlist .tinvwl-estimate-wrap a i {
130
+ margin-right: 18px;
131
+ }
132
+
133
+ .tinv-wishlist a.tinv-close-modal i {
134
+ margin-right: 0;
135
+ }
136
+
137
+ .tinv-wishlist a i.fa-chevron-left,
138
+ .tinv-wishlist a i.fa-chevron-right {
139
+ /*font-size: 10px;*/
140
+ }
141
+
142
+ .tinv-wishlist .button i.fa-chevron-left,
143
+ .tinv-wishlist .button i.fa-chevron-right {
144
+ /*vertical-align: middle;*/
145
+ }
146
+
147
+ .tinv-wishlist .tinvwl-estimate-wrap a i.fa-envelope-o {
148
+ /*font-size: 12px;*/
149
+ }
150
+
151
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
152
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
153
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
154
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
155
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
156
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
157
+ content: '';
158
+ display: inline-block;
159
+ margin-right: 10px;
160
+ background-image: url(../img/add_to_wishlist.png);
161
+ background-repeat: repeat;
162
+ }
163
+
164
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
165
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt {
166
+ position: relative;
167
+ width: 36px;
168
+ height: 36px;
169
+ vertical-align: bottom;
170
+ }
171
+
172
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before,
173
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before {
174
+ position: absolute;
175
+ top: 50%;
176
+ left: 50%;
177
+ margin-right: 0 !important;
178
+ }
179
+
180
+ .tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
181
+ .tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt {
182
+ padding-left: 1em;
183
+ vertical-align: bottom;
184
+ }
185
+
186
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-black:before {
187
+ background-position: 0 0;
188
+ width: 13px;
189
+ height: 11px;
190
+ }
191
+
192
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before {
193
+ margin-top: -5px;
194
+ margin-left: -6px;
195
+ }
196
+
197
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-white:before {
198
+ background-position: 0px 13px;
199
+ width: 13px;
200
+ height: 12px;
201
+ }
202
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-black:before {
203
+ background-position: 0 -12px;
204
+ width: 13px;
205
+ height: 12px;
206
+ }
207
+
208
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.no-txt:before {
209
+ margin-top: -6px;
210
+ margin-left: -6px;
211
+ }
212
+
213
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-black:before {
214
+ background-position: 15px 0;
215
+ width: 14px;
216
+ height: 12px;
217
+ }
218
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-white:before {
219
+ background-position: 15px 25px;
220
+ width: 14px;
221
+ height: 12px;
222
+ }
223
+
224
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before {
225
+ margin-top: -5px;
226
+ margin-left: -7px;
227
+ }
228
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-white:before{
229
+ background-position: 0 -25px;
230
+ width: 13px;
231
+ height: 11px;
232
+ }
233
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-black:before {
234
+ background-position: 15px -11px;
235
+ width: 15px;
236
+ height: 14px;
237
+ }
238
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-white:before {
239
+ background-position: 15px 14px;
240
+ width: 15px;
241
+ height: 14px;
242
+ }
243
+
244
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.no-txt:before {
245
+ margin-top: -7px;
246
+ margin-left: -7px;
247
+ }
248
+
249
+ .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button {
250
+ margin-bottom: 15px;
251
+ }
252
+
253
+ .woocommerce ul.products li.product .add_to_cart_button.button {
254
+ /* float: left;*/
255
+ }
256
+
257
+ .tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
258
+ float: left;
259
+ margin-right: 10px;
260
+ margin-bottom: 0;
261
+ }
262
+
263
+ .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button {
264
+ margin-top: 15px;
265
+ }
266
+
267
+ .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
268
+ margin-left: 10px;
269
+ }
270
+
271
+ .single-product .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt {
272
+ margin-top: 0;
273
+ }
274
+
275
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt {
276
+ padding: 10px 11px;
277
+ line-height: 1;
278
+ }
279
+
280
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom img {
281
+ display: inline-block !important;
282
+ vertical-align: baseline;
283
+ width: auto !important;
284
+ max-width: 16px;
285
+ max-height: 16px;
286
+ margin-bottom: 0;
287
+ margin: 0 6px 0 0 !important;
288
+ }
289
+
290
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img {
291
+ margin-right: 0 !important;
292
+ }
293
+
294
+ .single-product div.product form.cart .button.tinvwl_add_to_wishlist_button,
295
+ div.product form.cart .tinvwl_add_to_wishlist_button {
296
+ float: none;
297
+ }
298
+
299
+ ul.products li.product .tinvwl_add_to_wishlist_button {
300
+ margin-top: 1em;
301
+ }
302
+
303
+ .tinvwl_add_to_wishlist_button {
304
+ display: inline-block;
305
+ }
306
+
307
+ .tinvwl_add_to_wishlist_button.button {
308
+ }
309
+
310
+ .tinv-wishlist.woocommerce .stock.in-stock:before {
311
+ content: none;
312
+ }
313
+
314
+ .tinv-wraper.tinv-wishlist {
315
+ font-size: 100%;
316
+ }
317
+
318
+ /* Create List */
319
+
320
+ .tinv-create-list form {
321
+ /*padding: 30px 30px 39px;*/
322
+ }
323
+
324
+ .tinv-create-list li input[type="radio"] {
325
+ margin-right: 10px;
326
+ }
327
+
328
+ .tinv-create-list li + li {
329
+ margin-top: 15px;
330
+ }
331
+
332
+ .tinv-create-list .input-group + ul {
333
+ margin-top: 25px;
334
+ }
335
+
336
+
337
+ /* Search */
338
+
339
+ .tinv-search-list {
340
+ margin-bottom: 36px;
341
+ }
342
+
343
+
344
+ /* Header */
345
+
346
+ .tinv-wishlist .tinv-header {
347
+ margin-bottom: 30px;
348
+ }
349
+
350
+
351
+ /* Manage List */
352
+
353
+ .tinv-wishlist table {
354
+ position: relative;
355
+ table-layout: auto;
356
+ margin-bottom: 30px;
357
+ z-index: 2;
358
+ }
359
+
360
+ .tinv-wishlist table.tinvwl-table-manage-list {
361
+ margin-bottom: 27px;
362
+ }
363
+
364
+ .tinv-wishlist table input[type="checkbox"] {
365
+ margin-right: 0;
366
+ }
367
+
368
+ .tinv-wishlist table th {
369
+ /*padding: 22px 12px;*/
370
+ vertical-align: middle;
371
+ }
372
+
373
+ /*.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public th {
374
+ padding: 22px 15px;
375
+ }
376
+
377
+ .tinv-wishlist table.tinvwl-table-manage-list th {
378
+ padding: 19px 12px;
379
+ }*/
380
+
381
+ .tinv-wishlist table td {
382
+ /*padding: 27px 12px;*/
383
+ vertical-align: middle;
384
+ }
385
+
386
+ /*.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public td {
387
+ padding: 36px 15px;
388
+ }
389
+
390
+ .tinv-wishlist table.tinvwl-table-manage-list td {
391
+ padding: 26px 12px;
392
+ }*/
393
+
394
+ .tinv-wishlist .tinvwl-table-manage-list .product-cb {
395
+ /*padding-left: 10px;
396
+ padding-right: 10px;*/
397
+ width: 35px;
398
+ text-align: center;
399
+ }
400
+
401
+ .tinv-wishlist .tinvwl-table-manage-list .product-remove {
402
+ /*padding-left: 10px;
403
+ padding-right: 10px;*/
404
+ width: 46px;
405
+ text-align: center;
406
+ }
407
+
408
+ .tinv-wishlist .product-remove button {
409
+ display: block;
410
+ margin: 0 auto;
411
+ width: 27px;
412
+ height: 27px;
413
+ text-indent: -9999px;
414
+ -webkit-border-radius: 100%;
415
+ -moz-border-radius: 100%;
416
+ border-radius: 100%;
417
+ padding: 0;
418
+ box-shadow: none;
419
+ border-bottom: 0;
420
+ border: none;
421
+ background-image: url(../img/icon_delete.png);
422
+ background-position: center;
423
+ background-repeat: no-repeat;
424
+ background-color: #f7f7f7;
425
+ }
426
+
427
+ .tinv-wishlist .product-thumbnail {
428
+ min-width: 100px;
429
+ width: 100px;
430
+ }
431
+
432
+ .tinv-wishlist .product-thumbnail .wp-post-image {
433
+ margin-bottom: 0;
434
+ }
435
+
436
+ /*.tinv-wishlist td.product-name {
437
+ line-height: 20px;
438
+ }
439
+
440
+ .tinv-wishlist td.product-name a {
441
+ line-height: 1.14285714;
442
+ }*/
443
+
444
+ .tinv-wishlist td.product-name a + .variation {
445
+ margin-top: 2px;
446
+ }
447
+
448
+ /*.tinv-wishlist td.product-price {
449
+ line-height: 24px;
450
+ }*/
451
+
452
+ /*.tinv-wishlist .tinvwl-table-manage-list td.product-stock {
453
+ padding-left: 9px;
454
+ padding-right: 9px;
455
+ }*/
456
+
457
+ .tinv-wishlist .product-stock i {
458
+ /*font-size: 12px;*/
459
+ margin-right: 15px;
460
+ }
461
+
462
+ .tinv-wishlist .product-stock p {
463
+ display: table;
464
+ }
465
+
466
+ .tinv-wishlist .product-stock span {
467
+ display: table-cell;
468
+ vertical-align: middle;
469
+ }
470
+
471
+ /*.tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
472
+ padding-left: 9px;
473
+ padding-right: 9px;
474
+ }*/
475
+
476
+ .tinv-wishlist.woocommerce .product-quantity {
477
+ width: 80px;
478
+ text-align: center;
479
+ }
480
+
481
+ .tinv-wishlist.woocommerce table .quantity .qty {
482
+ max-width: 100%;
483
+ width: 62px;
484
+ /*padding: 10px 12px;*/
485
+ text-align: left;
486
+ }
487
+
488
+ .tinv-wishlist .product-action {
489
+ width: 135px;
490
+ text-align: center;
491
+ }
492
+
493
+ .tinv-wishlist table.tinvwl-table-manage-list .product-action {
494
+ /*padding-left: 11px;
495
+ padding-right: 11px;*/
496
+ }
497
+
498
+ .tinv-wishlist .product-action .button {
499
+ width: 100%;
500
+ }
501
+
502
+ .tinv-wishlist .product-action > .button > i {
503
+ display: none;
504
+ }
505
+
506
+ .tinv-wishlist .product-action .tinvwl_move_product_button {
507
+ margin-top: 5px;
508
+ }
509
+
510
+ .tinv-wishlist table thead th .tinvwl-mobile,
511
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
512
+ display: none;
513
+ }
514
+
515
+ .tinv-wishlist .tinvwl-table-manage-list .product-action > button[name="tinvwl-remove"] > i {
516
+ /*font-size: 12px;*/
517
+ margin-right: 0;
518
+ }
519
+
520
+ .tinv-wishlist .tinvwl-table-manage-list .product-action > .tinvwl_move_product_button > i {
521
+ /*font-size: 12px;*/
522
+ }
523
+
524
+ @media only screen and (max-width: 1024px) {
525
+ .tinv-wishlist .tinvwl-table-manage-lists:not(.tinvwl-public) {
526
+ margin-top: 0px;
527
+ }
528
+
529
+ .tinv-wishlist .tinvwl-table-manage-list .product-remove {
530
+ display: none;
531
+ }
532
+
533
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
534
+ display: inline-block;
535
+ margin-top: 5px;
536
+ }
537
+
538
+ .tinv-wishlist .product-action {
539
+ width: 60px;
540
+ }
541
+ }
542
+
543
+ @media only screen and (max-width: 1024px) and (min-width: 641px) {
544
+ .tinv-wishlist .tinvwl-table-manage-list td.product-stock p {
545
+ display: block;
546
+ text-align: center;
547
+ }
548
+
549
+ .tinv-wishlist .product-stock span {
550
+ display: block;
551
+ }
552
+
553
+ .tinv-wishlist .tinvwl-table-manage-list td.product-stock i {
554
+ margin-right: 0;
555
+ }
556
+
557
+ .tinv-wishlist .tinvwl-table-manage-list td.product-stock .tinvwl-txt {
558
+ display: none;
559
+ }
560
+
561
+ .tinv-wishlist .product-thumbnail {
562
+ max-width: 76px;
563
+ width: 76px;
564
+ }
565
+
566
+ /*.tinv-wishlist table.tinvwl-table-manage-list td.product-thumbnail {
567
+ padding-left: 10px;
568
+ padding-right: 10px;
569
+ }*/
570
+
571
+ /*.tinv-wishlist .product-action .button {
572
+ padding: 11.5px 12px !important;
573
+ }*/
574
+
575
+ .tinv-wishlist .product-action .button > i {
576
+ display: inline-block;
577
+ margin-right: 0;
578
+ }
579
+
580
+ .tinv-wishlist .product-action .button .tinvwl-txt {
581
+ display: none;
582
+ }
583
+ }
584
+
585
+ @media only screen and (max-width: 640px) {
586
+ /*.tinv-wishlist table.tinvwl-table-manage-list th {
587
+ padding-top: 26px;
588
+ padding-bottom: 26px;
589
+ }*/
590
+
591
+ .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name),
592
+ .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,
593
+ .tinv-wishlist table.tinvwl-table-manage-lists thead th:not(.wishlist-name),
594
+ .tinv-wishlist thead th .tinvwl-full {
595
+ display: none;
596
+ }
597
+
598
+ .tinv-wishlist table.tinvwl-table-manage-list thead th.product-name,
599
+ .tinv-wishlist table.tinvwl-table-manage-lists thead th.wishlist-name {
600
+ display: block;
601
+ width: 100%;
602
+ text-align: center;
603
+ }
604
+
605
+ .tinv-wishlist table thead th .tinvwl-mobile {
606
+ display: block;
607
+ }
608
+
609
+ .tinv-wishlist table.tinvwl-table-manage-list tbody td,
610
+ .tinv-wishlist table.tinvwl-table-manage-lists tbody td,
611
+ .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td {
612
+ display: block;
613
+ width: 100% !important;
614
+ /*padding: 0 12px 12px;*/
615
+ text-align: center;
616
+ }
617
+
618
+ .tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child),
619
+ .tinv-wishlist table.tinvwl-table-manage-lists tbody td:not(:last-child),
620
+ .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td:not(:last-child) {
621
+ border-bottom: 0;
622
+ }
623
+
624
+ /*.tinv-wishlist table.tinvwl-table-manage-list tbody td:first-child,
625
+ .tinv-wishlist table.tinvwl-table-manage-lists tbody td:first-child {
626
+ padding-top: 20px;
627
+ }
628
+
629
+ .tinv-wishlist table.tinvwl-table-manage-list td,
630
+ .tinv-wishlist table.tinvwl-table-manage-lists td,
631
+ .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public td {
632
+ padding: 12px;
633
+ }
634
+
635
+ .tinv-wishlist .tinvwl-table-manage-list td.product-cb,
636
+ .tinv-wishlist .tinvwl-table-manage-lists td.wishlist-cb {
637
+ padding-bottom: 20px;
638
+ }
639
+
640
+ .tinv-wishlist .tinvwl-table-manage-list td.product-thumbnail {
641
+ padding-top: 20px;
642
+ padding-bottom: 14px;
643
+ }
644
+
645
+ .tinv-wishlist .tinvwl-table-manage-list td.product-cb + td.product-remove + td.product-thumbnail {
646
+ padding-top: 0;
647
+ }
648
+
649
+ .tinv-wishlist .tinvwl-table-manage-list td.product-name {
650
+ padding-bottom: 6px;
651
+ }
652
+
653
+ .tinv-wishlist .tinvwl-table-manage-list td.product-price {
654
+ padding-bottom: 23px;
655
+ }
656
+
657
+ .tinv-wishlist .tinvwl-table-manage-list td.product-date {
658
+ padding-bottom: 16px;
659
+ }
660
+
661
+ .tinv-wishlist .tinvwl-table-manage-list td.product-stock {
662
+ padding-bottom: 24px;
663
+ }
664
+
665
+ .tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
666
+ padding: 0 12px 10px;
667
+ }*/
668
+
669
+ .tinv-wishlist .product-thumbnail img,
670
+ .tinv-wishlist .product-stock p {
671
+ margin: 0 auto;
672
+ }
673
+
674
+ .tinv-wishlist .product-thumbnail img {
675
+ max-width: 80px;
676
+ }
677
+
678
+ .tinv-wishlist.woocommerce table .quantity .qty {
679
+ text-align: center;
680
+ width: 100%;
681
+ }
682
+
683
+ .tinv-wishlist .product-action .tinvwl_move_product_button {
684
+ margin-top: 10px;
685
+ }
686
+
687
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
688
+ margin-top: 10px;
689
+ text-indent: -9999px;
690
+ background-image: url(../img/icon_delete.png);
691
+ background-position: center;
692
+ background-repeat: no-repeat;
693
+ }
694
+
695
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] > i {
696
+ display: inline-block;
697
+ }
698
+
699
+ .tinv-wishlist table.tinvwl-table-manage-list tfoot td {
700
+ display: block;
701
+ width: 100%;
702
+ }
703
+
704
+ .tinv-wishlist table.tinvwl-table-manage-lists .wishlist-action button[value="manage_remove"] {
705
+ width: 100%;
706
+ }
707
+
708
+ .tinv-wishlist table.tinvwl-table-manage-lists .wishlist-name .tinvwl-rename-button {
709
+ float: none;
710
+ }
711
+ }
712
+
713
+
714
+ /* Manage Lists */
715
+
716
+ .tinv-wishlist .wishlist-cb {
717
+ /*padding-left: 10px;
718
+ padding-right: 10px;*/
719
+ width: 33px;
720
+ text-align: center;
721
+ }
722
+
723
+ .tinv-wishlist .wishlist-name .tinvwl-rename-input input {
724
+ width: 100%;
725
+ }
726
+
727
+ .tinv-wishlist .wishlist-name .tinvwl-rename-button {
728
+ float: right;
729
+ }
730
+
731
+ .tinv-wishlist .wishlist-name .tinvwl-rename-button > i {
732
+ margin-right: 10px;
733
+ }
734
+
735
+ .tinv-wishlist table:not(.tinvwl-public) .wishlist-date,
736
+ .tinv-wishlist .wishlist-privacy {
737
+ width: 18%;
738
+ }
739
+
740
+ /*.tinv-wishlist .wishlist-privacy {
741
+ padding-left: 15px;
742
+ padding-right: 15px;
743
+ }*/
744
+
745
+ .tinv-wishlist .wishlist-privacy select {
746
+ width: 100%;
747
+ }
748
+
749
+ .tinv-wishlist .wishlist-name {
750
+ width: 45%;
751
+ }
752
+
753
+ .tinv-wishlist .wishlist-action {
754
+ /*padding-left: 10px;
755
+ padding-right: 10px;*/
756
+ width: 120px;
757
+ text-align: center;
758
+ }
759
+
760
+ /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
761
+ background-image: url(../img/icon_delete.png);
762
+ background-repeat: no-repeat;
763
+ background-position: 14px 12px;
764
+ padding-left: 39px;
765
+ padding-right: 17px;
766
+ }*/
767
+
768
+ .tinv-wishlist .wishlist-action button[value="manage_remove"] > i {
769
+ display: none;
770
+ /*font-size: 12px;*/
771
+ margin-right: 0;
772
+ }
773
+
774
+ /*.tinv-wishlist tfoot .tinvwl-to-left,*/
775
+ .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list {
776
+ /*float: left;*/
777
+ display: inline-block;
778
+ vertical-align: middle;
779
+ }
780
+
781
+ .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list > a.button {
782
+ margin-right: 0;
783
+ }
784
+
785
+ /*.tinv-wishlist tfoot .tinvwl-to-right {
786
+ float: right;
787
+ }*/
788
+
789
+ .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
790
+ margin-top: 0;
791
+ }
792
+
793
+ .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
794
+ margin-top: -10px;
795
+ }
796
+
797
+ .tinv-wishlist tfoot .tinvwl-to-left:not(:empty) {
798
+ float: left;
799
+ width: 35%;
800
+ margin-right: 2%;
801
+ }
802
+
803
+ .tinv-wishlist tfoot .tinvwl-to-right {
804
+ float: left;
805
+ width: 63%;
806
+ text-align: right;
807
+ }
808
+
809
+ .tinv-wishlist tfoot .tinvwl-to-right > * {
810
+ margin: 10px 0 0;
811
+ vertical-align: middle;
812
+ }
813
+
814
+ .tinv-wishlist tfoot .tinvwl-to-right > * + * {
815
+ margin-left: 10px;
816
+ }
817
+
818
+ .tinv-wishlist tfoot .tinvwl-to-left:empty + .tinvwl-to-right {
819
+ width: 100%;
820
+ }
821
+
822
+ .tinv-wishlist button[value="product_apply"]/*,
823
+ .tinv-wishlist button + button[value="product_selected"],
824
+ .tinv-wishlist button + button[value="product_all"]*/ {
825
+ /*margin-left: 10px;*/
826
+ }
827
+
828
+ .tinv-wishlist button[value="manage_apply"]/*,
829
+ .tinv-wishlist button[value="manage_save"]*/ {
830
+ /*margin-left: 10px;*/
831
+ }
832
+
833
+ @media only screen and (max-width: 1024px) {
834
+ .tinv-wishlist .wishlist-name .tinvwl-rename-button span {
835
+ display: none;
836
+ }
837
+
838
+ .tinv-wishlist .wishlist-name .tinvwl-rename-button > i {
839
+ margin-right: 0;
840
+ }
841
+
842
+ /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
843
+ padding-left: 17px;
844
+ }*/
845
+
846
+ .tinv-wishlist .wishlist-action {
847
+ width: 60px;
848
+ }
849
+
850
+ .tinv-wishlist tfoot .tinvwl-to-left:not(:empty),
851
+ .tinv-wishlist tfoot .tinvwl-to-right {
852
+ float: none;
853
+ width: auto;
854
+ }
855
+
856
+ .tinv-wishlist tfoot .tinvwl-to-left:not(:empty) {
857
+ margin-right: 0;
858
+ }
859
+
860
+ .tinv-wishlist tfoot .tinvwl-to-right {
861
+ text-align: left;
862
+ }
863
+ }
864
+
865
+ @media only screen and (max-width: 1024px) and (min-width: 641px) {
866
+ /*.tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
867
+ margin-top: 10px;
868
+ }*/
869
+
870
+ /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
871
+ background-image: none;
872
+ padding: 11.5px 12px !important;
873
+ }*/
874
+
875
+ .tinv-wishlist .wishlist-action button[value="manage_remove"] span {
876
+ display: none;
877
+ }
878
+
879
+ .tinv-wishlist .wishlist-action button[value="manage_remove"] > i {
880
+ display: inline-block;
881
+ }
882
+
883
+ .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
884
+ margin-top: 0;
885
+ }
886
+ }
887
+
888
+ @media only screen and (max-width: 640px) {
889
+ /*.tinv-wishlist .wishlist-action button[value="manage_remove"] {
890
+ text-indent: -9999px;
891
+ background-position: center;
892
+ }*/
893
+
894
+ .tinv-wishlist button[value="manage_apply"] .tinvwl-mobile,
895
+ .tinv-wishlist button[value="product_apply"] .tinvwl-mobile {
896
+ display: none;
897
+ }
898
+
899
+ .tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list {
900
+ display: block;
901
+ }
902
+
903
+ .tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right button,
904
+ .tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right .button,
905
+ .tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right button,
906
+ .tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right .button {
907
+ width: 100%;
908
+ margin: 10px 0 0;
909
+ }
910
+
911
+ .tinv-wishlist tfoot .tinvwl-to-right > * {
912
+ margin: 10px 0 0;
913
+ }
914
+
915
+ /*.tinv-wishlist .tinvwl-table-manage-list tfoot select,
916
+ .tinv-wishlist .tinvwl-table-manage-lists tfoot select {
917
+ width: calc(100% - 127px);
918
+ }*/
919
+
920
+ .tinv-wishlist tfoot .tinvwl-to-right button:first-child,
921
+ .tinv-wishlist tfoot .tinvwl-to-right .button:first-child {
922
+ margin-top: 0 !important;
923
+ }
924
+
925
+ .tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
926
+ margin-top: 20px;
927
+ }
928
+
929
+ /*.tinv-wishlist tfoot .tinvwl-to-left + .tinvwl-to-right {
930
+ margin-top: 10px;
931
+ }*/
932
+ }
933
+
934
+
935
+ /* Table Navigation */
936
+
937
+ .tinv-wishlist .social-buttons + .clear + .navigation-button,
938
+ .tinv-wishlist .tinvwl-estimate-wrap + .clear + .navigation-button {
939
+ margin-top: 16px;
940
+ }
941
+
942
+ .tinv-wishlist .navigation-button > li {
943
+ float: left;
944
+ }
945
+
946
+ .tinv-wishlist .navigation-button > li + li {
947
+ /*margin-left: 10px;*/
948
+ }
949
+
950
+ .tinv-wishlist .navigation-button {
951
+ margin-top: -10px;
952
+ }
953
+
954
+ .tinv-wishlist .navigation-button > li > a,
955
+ .tinv-wishlist .navigation-button > li > .tinv-create-list > a {
956
+ margin-right: 30px;
957
+ margin-top: 10px;
958
+ display: inline-block;
959
+ }
960
+
961
+ .tinv-wishlist .navigation-button > li > a.button,
962
+ .tinv-wishlist .navigation-button > li > .tinv-create-list > a.button {
963
+ margin-right: 10px;
964
+ }
965
+
966
+ .tinv-wishlist .navigation-button > li:last-child > a,
967
+ .tinv-wishlist .navigation-button > li:last-child > .tinv-create-list > a {
968
+ margin-right: 0;
969
+ }
970
+
971
+ @media only screen and (max-width: 1024px) {
972
+ .tinv-wishlist .social-buttons + .clear + .navigation-button {
973
+ margin-top: 30px;
974
+ }
975
+ }
976
+
977
+
978
+ /* Social Buttons */
979
+
980
+ .tinv-wishlist .social-buttons {
981
+ float: right;
982
+ }
983
+
984
+ .tinv-wishlist form + .social-buttons {
985
+ }
986
+
987
+ .tinv-wishlist .social-buttons > span,
988
+ .tinv-wishlist .social-buttons > ul {
989
+ display: inline-block;
990
+ vertical-align: middle;
991
+ }
992
+
993
+ .tinv-wishlist .social-buttons > span {
994
+ margin-right: 27px;
995
+ }
996
+
997
+ .tinv-wishlist .social-buttons li {
998
+ float: left;
999
+ }
1000
+
1001
+ .tinv-wishlist .social-buttons li {
1002
+ margin-right: 5px;
1003
+ }
1004
+
1005
+ .tinv-wishlist .social-buttons li:last-child {
1006
+ margin-right: 0;
1007
+ }
1008
+
1009
+ .tinv-wishlist .social-buttons li a {
1010
+ /*padding: 0px 10px;*/
1011
+ display: block;
1012
+ width: 41px;
1013
+ height: 41px;
1014
+ -webkit-border-radius: 50%;
1015
+ -moz-border-radius: 50%;
1016
+ border-radius: 50%;
1017
+ text-indent: -9999px;
1018
+ text-align: center;
1019
+ box-shadow: none;
1020
+ border-bottom: 0;
1021
+ background-image: url(../img/social.png);
1022
+ background-repeat: no-repeat;
1023
+ background-position: center;
1024
+ }
1025
+ .tinv-wishlist .social-buttons li a.white{
1026
+ background-image: url(../img/social_white.png);
1027
+ }
1028
+ .tinv-wishlist .social-buttons li a.dark{
1029
+ background-image: url(../img/social.png);
1030
+ }
1031
+
1032
+ .tinv-wishlist .social-buttons li a:hover {
1033
+ }
1034
+
1035
+ .tinv-wishlist .social-buttons li .social-facebook {
1036
+ background-position: 16px center;
1037
+ }
1038
+
1039
+ .tinv-wishlist .social-buttons li .social-twitter {
1040
+ background-position: -28px center;
1041
+ }
1042
+
1043
+ .tinv-wishlist .social-buttons li .social-pinterest {
1044
+ background-position: -73px center;
1045
+ }
1046
+
1047
+ .tinv-wishlist .social-buttons li .social-google {
1048
+ background-position: -119px center;
1049
+ }
1050
+
1051
+ .tinv-wishlist .social-buttons li .social-email {
1052
+ background-position: -164px center;
1053
+ }
1054
+
1055
+ @media only screen and (max-width: 1024px) {
1056
+ .tinv-wishlist .social-buttons {
1057
+ float: none;
1058
+ width: auto;
1059
+ text-align: left;
1060
+ margin-top: 20px;
1061
+ }
1062
+ }
1063
+
1064
+ .tinv-wishlist .navigation-button .tinv-create-list > a.tinvwl-no-icon > i,
1065
+ .tinv-wishlist .navigation-button li > a.tinvwl-no-icon > i {
1066
+ display: none;
1067
+ }
1068
+
1069
+ @media only screen and (max-width: 640px) {
1070
+ .tinv-wishlist .social-buttons {
1071
+ text-align: center;
1072
+ }
1073
+
1074
+ .tinv-wishlist .navigation-button > li {
1075
+ width: 20%;
1076
+ text-align: center;
1077
+ }
1078
+
1079
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-1 > li {
1080
+ width: 100%;
1081
+ }
1082
+
1083
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-2 > li {
1084
+ width: 50%;
1085
+ }
1086
+
1087
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-3 > li {
1088
+ width: 33%;
1089
+ }
1090
+
1091
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-4 > li {
1092
+ width: 25%;
1093
+ }
1094
+
1095
+ .tinv-wishlist .navigation-button > li + li {
1096
+ width: 20%;
1097
+ }
1098
+
1099
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-1 > li + li {
1100
+ width: 100%;
1101
+ }
1102
+
1103
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-2 > li + li {
1104
+ width: 50%;
1105
+ }
1106
+
1107
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-3 > li + li {
1108
+ width: 33%;
1109
+ }
1110
+
1111
+ .tinv-wishlist .navigation-button.tinvwl-btns-count-4 > li + li {
1112
+ width: 25%;
1113
+ }
1114
+
1115
+ .tinv-wishlist .navigation-button > li > a,
1116
+ .tinv-wishlist .navigation-button > li > .tinv-create-list > a {
1117
+ width: calc(100% - 10px);
1118
+ margin-right: 0;
1119
+ }
1120
+
1121
+ .tinv-wishlist .navigation-button .tinv-create-list > a .tinvwl-txt,
1122
+ .tinv-wishlist .navigation-button li > a .tinvwl-txt {
1123
+ display: none;
1124
+ }
1125
+
1126
+ .tinv-wishlist .navigation-button .tinv-create-list > a > i,
1127
+ .tinv-wishlist .navigation-button li > a > i {
1128
+ display: inline-block !important;
1129
+ margin-right: 0;
1130
+ }
1131
+
1132
+ .tinv-wishlist .social-buttons > span {
1133
+ display: block;
1134
+ margin-top: 0;
1135
+ margin-right: 0;
1136
+ margin-bottom: 5px;
1137
+ }
1138
+ }
1139
+
1140
+
1141
+ /* Navigation */
1142
+
1143
+ .tinv-wishlist .tinv-lists-nav {
1144
+ margin-bottom: 35px;
1145
+ }
1146
+ .tinv-wishlist table + .tinv-lists-nav {
1147
+ margin-top: 35px;
1148
+ }
1149
+
1150
+ .tinv-wishlist .tinv-prev,
1151
+ .tinv-wishlist .tinv-next {
1152
+ display: inline-block;
1153
+ }
1154
+
1155
+ .tinv-wishlist .tinv-prev {
1156
+ float: left;
1157
+ }
1158
+
1159
+ .tinv-wishlist .tinv-next {
1160
+ float: right;
1161
+ }
1162
+
1163
+ .tinv-wishlist .tinv-prev i {
1164
+ margin-left: 0;
1165
+ margin-right: 18px;
1166
+ }
1167
+
1168
+ .tinv-wishlist .tinv-next i {
1169
+ margin-left: 18px;
1170
+ margin-right: 0;
1171
+ }
1172
+
1173
+
1174
+ /* Login */
1175
+
1176
+ .tinv-wishlist .tinv-login {
1177
+ margin-bottom: 30px;
1178
+ }
1179
+
1180
+ .tinv-wishlist .tinv-login i.login_key {
1181
+ display: inline-block;
1182
+ vertical-align: text-bottom;
1183
+ margin-right: 16px;
1184
+ }
1185
+
1186
+ .tinv-wishlist .tinv-login .login {
1187
+ display: none;
1188
+ border: none;
1189
+ padding: 0;
1190
+ margin: 24px 0 0;
1191
+ }
1192
+
1193
+ .tinv-wishlist .tinv-login h2 {
1194
+ display: none;
1195
+ }
1196
+
1197
+ .tinv-wishlist .tinv-login .lost_password {
1198
+ margin-bottom: 0;
1199
+ }
1200
+
1201
+ .tinv-wishlist .tinv-login form .form-row {
1202
+ padding: 0;
1203
+ margin: 0;
1204
+ }
1205
+
1206
+ .tinv-wishlist .tinv-login form .form-row + .input-group-btn {
1207
+ padding-left: 9px;
1208
+ }
1209
+
1210
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1211
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1212
+ width: 50%;
1213
+ }
1214
+
1215
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-first {
1216
+ padding-right: 4px;
1217
+ }
1218
+
1219
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1220
+ padding-left: 4px;
1221
+ }
1222
+
1223
+ .tinv-wishlist .tinv-login form .tinv-rememberme,
1224
+ .tinv-wishlist .tinv-login form .lost_password {
1225
+ float: left;
1226
+ margin-top: 16px;
1227
+ }
1228
+
1229
+ .tinv-wishlist .tinv-login .tinv-rememberme + .lost_password {
1230
+ margin-left: 26px;
1231
+ }
1232
+
1233
+ .tinv-wishlist .tinv-login .tinvwl-icon {
1234
+ position: absolute;
1235
+ top: 50%;
1236
+ left: 14px;
1237
+ display: none;
1238
+ width: 12px;
1239
+ height: 14px;
1240
+ margin-top: -7px;
1241
+ background-repeat: no-repeat;
1242
+ background-position: center;
1243
+ }
1244
+
1245
+ .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1246
+ height: 17px;
1247
+ margin-top: -8.5px;
1248
+ background-image: url(../img/login_name.png);
1249
+ }
1250
+
1251
+ .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1252
+ left: 17px;
1253
+ height: 14px;
1254
+ margin-top: -7px;
1255
+ background-image: url(../img/login_pass.png);
1256
+ }
1257
+
1258
+ @media only screen and (max-width: 1024px) {
1259
+ .tinv-wishlist .tinv-login form input[name="login"] {
1260
+ min-width: auto;
1261
+ }
1262
+ }
1263
+
1264
+ @media only screen and (max-width: 667px) {
1265
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1266
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1267
+ float: none;
1268
+ width: 100%;
1269
+ }
1270
+
1271
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-first,
1272
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1273
+ padding: 0;
1274
+ }
1275
+
1276
+ .tinv-wishlist.woocommerce .tinv-login form .form-row-last {
1277
+ margin-top: 10px;
1278
+ }
1279
+
1280
+ .tinv-wishlist.woocommerce .tinv-login form .input-group-btn {
1281
+ display: block;
1282
+ padding: 0;
1283
+ width: auto;
1284
+ margin-top: 10px;
1285
+ }
1286
+ }
1287
+
1288
+
1289
+ /* Modal */
1290
+
1291
+ .tinv-overlay {
1292
+ position: fixed;
1293
+ top: 0;
1294
+ left: 0;
1295
+ width: 100%;
1296
+ height: 100%;
1297
+ visibility: hidden;
1298
+ opacity: 0;
1299
+
1300
+ -webkit-transition: opacity .3s ease, visibility .3s ease;
1301
+ -moz-transition: opacity .3s ease, visibility .3s ease;
1302
+ -o-transition: opacity .3s ease, visibility .3s ease;
1303
+ transition: opacity .3s ease, visibility .3s ease;
1304
+
1305
+ background: #191919;
1306
+ }
1307
+
1308
+ .tinv-modal.tinv-modal-open .tinv-overlay {
1309
+ visibility: visible;
1310
+ opacity: .5;
1311
+ }
1312
+
1313
+ .admin-bar .tinv-wishlist .tinv-modal {
1314
+ padding-top: 32px !important;
1315
+ }
1316
+
1317
+ .tinv-wishlist .tinv-modal .tinv-modal-inner {
1318
+ position: relative;
1319
+ margin: 0 auto;
1320
+ background-color: #ffffff;
1321
+ }
1322
+
1323
+ .tinv-wishlist .tinv-modal {
1324
+ overflow-y: auto;
1325
+ overflow-x: hidden;
1326
+ top: 0;
1327
+ left: 0;
1328
+ width: 0;
1329
+ height: 0;
1330
+ z-index: 9999;
1331
+ position: fixed;
1332
+ outline: none !important;
1333
+ -webkit-backface-visibility: hidden;
1334
+ visibility: hidden;
1335
+ opacity: 0;
1336
+ text-align: left;
1337
+
1338
+ -webkit-transition: opacity .3s ease, visibility .3s ease;
1339
+ -moz-transition: opacity .3s ease, visibility .3s ease;
1340
+ -o-transition: opacity .3s ease, visibility .3s ease;
1341
+ transition: opacity .3s ease, visibility .3s ease;
1342
+ }
1343
+
1344
+ .tinv-wishlist .tinv-modal.tinv-modal-open {
1345
+ visibility: visible;
1346
+ opacity: 1;
1347
+ width: 100%;
1348
+ height: 100%;
1349
+ }
1350
+
1351
+ .tinv-wishlist .tinv-modal .tinv-close-modal {
1352
+ display: inline-block;
1353
+ position: absolute;
1354
+ top: 17px;
1355
+ right: 14px;
1356
+ width: 26px;
1357
+ height: 26px;
1358
+ line-height: 26px;
1359
+ font-size: 12px;
1360
+ text-align: center;
1361
+ -webkit-border-radius: 50%;
1362
+ -moz-border-radius: 50%;
1363
+ border-radius: 50%;
1364
+ box-shadow: none;
1365
+ border-bottom: 0;
1366
+ box-shadow: none !important;
1367
+ background-color: #ebe9eb;
1368
+ }
1369
+
1370
+ .tinv-wishlist .tinv-modal .tinv-close-modal:hover {
1371
+ }
1372
+
1373
+ @media screen and (max-width: 782px) {
1374
+ .admin-bar .tinv-wishlist .tinv-modal {
1375
+ padding-top: 46px !important;
1376
+ }
1377
+ }
1378
+
1379
+ @media screen and (max-width: 600px) {
1380
+ .admin-bar .tinv-wishlist .tinv-modal {
1381
+ padding-top: 0 !important;
1382
+ }
1383
+
1384
+ .tinv-wishlist .tinv-modal .tinv-close-modal {
1385
+ position: static;
1386
+ display: block;
1387
+ margin: 0 auto 20px;
1388
+ }
1389
+ }
1390
+
1391
+
1392
+ /* Move */
1393
+
1394
+ .tinv-wishlist .tinv-modal .tinv-modal-inner {
1395
+ max-width: 360px;
1396
+ padding: 40px;
1397
+ }
1398
+
1399
+ .tinv-wishlist .tinv-modal .tinv-modal-inner {
1400
+ /*padding-top: 35px;*/
1401
+ }
1402
+
1403
+ .tinv-wishlist .tinv-modal img, .tinv-wishlist .tinv-modal .icon_big_times, .tinv-wishlist .tinv-modal .icon_big_heart_check, .tinv-wishlist .tinv-modal .icon_big_heart_next, .tinv-wishlist .tinv-modal .icon_big_heart_plus, .tinv-wishlist .tinv-modal .icon_big_heart_subscribe
1404
+ {
1405
+ display: block;
1406
+ margin: 0 auto;
1407
+ margin-bottom: 25px;
1408
+ opacity: 1 !important;
1409
+ }
1410
+
1411
+ .tinv-wishlist .tinv-modal ul {
1412
+ overflow: visible;
1413
+ list-style: disc;
1414
+ margin: 10px 0 0 20px;
1415
+ }
1416
+
1417
+ .tinv-wishlist .tinv-modal li {
1418
+ list-style: disc !important;
1419
+ }
1420
+
1421
+ .tinv-wishlist.tinv-create-list form ul,
1422
+ .tinv-wishlist .tinv-create-list .tinv-modal ul {
1423
+ list-style: none !important;
1424
+ margin: 25px 0 0;
1425
+ }
1426
+
1427
+ .tinv-wishlist.tinv-create-list form li,
1428
+ .tinv-wishlist .tinv-create-list .tinv-modal li {
1429
+ list-style: none !important;
1430
+ }
1431
+
1432
+ .tinv-wishlist.tinv-create-list form,
1433
+ .tinv-wishlist .tinv-create-list .tinv-modal form {
1434
+ /*background: none;
1435
+ padding: 0;*/
1436
+ }
1437
+
1438
+ .tinv-wishlist .tinv-modal .already-in {
1439
+ margin-bottom: 35px;
1440
+ }
1441
+
1442
+ .tinv-wishlist .tinv-modal .delete-notification {
1443
+ margin-bottom: 25px;
1444
+ }
1445
+
1446
+ .tinv-wishlist .tinv-modal .already-in ul {
1447
+ overflow: visible;
1448
+ margin: 12px 0 27px 17px;
1449
+ }
1450
+
1451
+ /*.tinv-wishlist .tinv-modal .already-in ul li + li {
1452
+ margin-top: 10px;
1453
+ }*/
1454
+
1455
+ .tinv-wishlist .tinv-modal select {
1456
+ width: 100%;
1457
+ }
1458
+
1459
+ .tinv-wishlist .tinv-modal select + input,
1460
+ .tinv-wishlist .tinv-modal select + button,
1461
+ .tinv-wishlist .tinv-modal label + button,
1462
+ .tinv-wishlist .tinv-modal label + input,
1463
+ .tinv-wishlist .tinv-modal input + button,
1464
+ .tinv-wishlist .tinv-modal button + button,
1465
+ .tinv-wishlist .tinv-modal button + .button,
1466
+ .woocommerce .tinv-wishlist .tinv-modal button + button.button {
1467
+ margin-top: 12px;
1468
+ width: 100%;
1469
+ }
1470
+
1471
+ .tinv-wishlist .tinv-modal .already-in + label {
1472
+ display: block;
1473
+ margin-top: 6px;
1474
+ }
1475
+
1476
+ .tinv-wishlist .tinv-modal label select {
1477
+ margin-top: 8px;
1478
+ }
1479
+
1480
+ .tinv-wishlist .tinv-modal .delete-notification + button {
1481
+ width: 100%;
1482
+ }
1483
+
1484
+ /*.tinv-wishlist .tinv-modal .button {
1485
+ font-weight: normal;
1486
+ padding: 11px 19px;
1487
+ }
1488
+
1489
+ .tinv-wishlist .tinv-modal button i,
1490
+ .tinv-wishlist .tinv-modal .button i {
1491
+ font-size: 12px;
1492
+ }*/
1493
+
1494
+
1495
+ /* Added to Wishlist */
1496
+
1497
+ .tinv-wishlist .tinvwl_added_to_wishlist,
1498
+ .tinv-wishlist .tinvwl_created_wishlist {
1499
+ text-align: center;
1500
+ }
1501
+
1502
+ .tinv-wishlist .tinvwl_added_to_wishlist .tinv-txt,
1503
+ .tinv-wishlist .tinvwl_created_wishlist .tinv-txt {
1504
+ margin-bottom: 25px;
1505
+ }
1506
+
1507
+ .woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button,
1508
+ .tinv-wishlist .tinvwl_created_wishlist button {
1509
+ margin-top: 0;
1510
+ }
1511
+
1512
+ /*.tinv-wishlist .tinvwl_added_to_wishlist .tinvwl_button_view,
1513
+ .tinv-wishlist .tinvwl_created_wishlist .tinvwl_button_view {
1514
+ padding: 11px 11px;
1515
+ }*/
1516
+
1517
+ .tinv-wishlist .tinv-modal .tinvwl-buttons-group {
1518
+ margin-top: 20px;
1519
+ }
1520
+
1521
+
1522
+ /* Follow Wishlist */
1523
+
1524
+ .tinvwl-subscribe-wrap {
1525
+ float: left;
1526
+ }
1527
+
1528
+ .tinv-wishlist .tinv-modal.tinvwl-subscribe img {
1529
+ margin-bottom: 30px;
1530
+ }
1531
+
1532
+ .tinv-wishlist .tinvwl-subscribe .tinvwl-txt {
1533
+ margin-bottom: 18px;
1534
+ }
1535
+
1536
+ .tinv-wishlist .tinvwl-subscribe ul {
1537
+ list-style: none;
1538
+ margin: 0;
1539
+ }
1540
+
1541
+ .tinv-wishlist .tinvwl-subscribe li {
1542
+ list-style: none !important;
1543
+ }
1544
+
1545
+ .tinv-wishlist .tinvwl-subscribe li + li {
1546
+ margin-top: 8px;
1547
+ }
1548
+
1549
+ .tinv-wishlist .tinvwl-subscribe li input[type="checkbox"] {
1550
+ margin-right: 11px;
1551
+ }
1552
+
1553
+ /*.tinv-wishlist .tinvwl-subscribe .tinvwl-buttons-group button i {
1554
+ font-size: 14px;
1555
+ }*//*todo*/
1556
+
1557
+ .tinv-wishlist .tinvwl-buttons-group button {
1558
+ width: 100%;
1559
+ }
1560
+
1561
+ .tinv-wishlist .tinvwl-buttons-group button + button {
1562
+ margin-top: 7px;
1563
+ }
1564
+
1565
+ .tinv-wishlist .tinvwl-buttons-group + button {
1566
+ width: 100%;
1567
+ margin-top: 7px;
1568
+ }
1569
+
1570
+ .tinv-wishlist .tinvwl-subscribe-wrap + .clear + .navigation-button {
1571
+ margin-top: 26px;
1572
+ }
1573
+
1574
+
1575
+ /* Estimate */
1576
+
1577
+ .tinvwl-estimate-wrap {
1578
+ float: left;
1579
+ }
1580
+
1581
+ /*.woocommerce.tinv-wishlist .tinvwl-estimate-wrap .button.tinv-modal-btn {
1582
+ padding: 11.5px 15px;
1583
+ }*/
1584
+
1585
+ .tinv-wishlist .estimate-dialogbox .tinv-modal-inner {
1586
+ max-width: 778px;
1587
+ padding: 35px 30px 30px;
1588
+ text-align: center;
1589
+ }
1590
+
1591
+ .tinv-wishlist .tinv-modal h2 {
1592
+ text-align: center;
1593
+ margin: 0 0 35px;
1594
+ }
1595
+
1596
+ .tinv-wishlist .estimate-dialogbox textarea {
1597
+ height: 200px;
1598
+ margin-bottom: 30px;
1599
+ }
1600
+
1601
+ /*.woocommerce.tinv-wishlist .estimate-dialogbox button {
1602
+ padding: 15px 47px;
1603
+ }*/
1604
+
1605
+ @media only screen and (max-width: 1024px) {
1606
+ .tinvwl-estimate-wrap,
1607
+ .tinvwl-subscribe-wrap {
1608
+ float: none;
1609
+ width: auto;
1610
+ }
1611
+
1612
+ .tinv-wishlist .tinvwl-subscribe-wrap + .clear + .navigation-button {
1613
+ margin-top: 30px;
1614
+ }
1615
+ }
1616
+
1617
+ @media only screen and (max-width: 640px) {
1618
+ .tinvwl-estimate-wrap,
1619
+ .tinvwl-subscribe-wrap,
1620
+ .social-buttons,
1621
+ .navigation-button,
1622
+ .tinv-lists-nav {
1623
+ margin-left: 12px;
1624
+ margin-right: 12px;
1625
+ }
1626
+
1627
+ .tinvwl-estimate-wrap .tinv-modal-btn,
1628
+ .tinvwl-subscribe-wrap .tinv-modal-btn {
1629
+ width: 100%;
1630
+ }
1631
+
1632
+ .tinvwl-estimate-wrap + .social-buttons {
1633
+ margin-top: 10px;
1634
+ }
1635
+ }
1636
+
1637
+ @media screen and (max-width: 600px) {
1638
+ .tinv-wishlist .estimate-dialogbox .tinv-modal-inner {
1639
+ padding-top: 25px;
1640
+ }
1641
+ }
1642
+
1643
+
1644
+ /* Create Wishlist Modal */
1645
+
1646
+ .tinv-wishlist .tinv-create-list .tinv-modal-inner {
1647
+ max-width: 778px;
1648
+ padding: 30px;
1649
+ }
1650
+
1651
+
1652
+ /* Modal Errors */
1653
+
1654
+ .tinv-wishlist .input-group.tinvwl-has-error .form-control,
1655
+ .tinv-wishlist .tinvwl-has-error:not(.input-group) {
1656
+ border: 2px solid #FF0000;
1657
+ }
1658
+
1659
+ .tinv-wishlist .tinvwl-has-error + .tinvwl-error {
1660
+ padding: 5px 0 0 5px;
1661
+ color: #FF0000;
1662
+ }
1663
+
1664
+
1665
+ /* Search Widget */
1666
+
1667
+ .tinvwl-search-submit:before {
1668
+ -moz-osx-font-smoothing: grayscale;
1669
+ -webkit-font-smoothing: antialiased;
1670
+ display: inline-block;
1671
+ font-family: "Genericons";
1672
+ font-size: 16px;
1673
+ font-style: normal;
1674
+ font-variant: normal;
1675
+ font-weight: normal;
1676
+ line-height: .8125;
1677
+ speak: none;
1678
+ text-align: center;
1679
+ text-decoration: inherit;
1680
+ text-transform: none;
1681
+ vertical-align: middle;
1682
+ }
1683
+
1684
+ .widget .tinvwl-search-submit:before {
1685
+ content: "\f400";
1686
+ position: relative;
1687
+ /*width: 35px;*/
1688
+ /*line-height: 35px;*/
1689
+ padding: 0;
1690
+ }
1691
+
1692
+ .widget button.tinvwl-search-submit {
1693
+ /*border-radius: 0 2px 2px 0;*/
1694
+ overflow: hidden;
1695
+ /*width: 35px;*/
1696
+ }
1697
+
1698
+ @media screen and (max-width: 909px) {
1699
+ .widget .tinvwl-search-submit:before {
1700
+ /*font-size: 24px;*/
1701
+ /*width: 40px;*/
1702
+ /*line-height: 42px;*/
1703
+ }
1704
+
1705
+ .widget button.tinvwl-search-submit {
1706
+ /*width: 42px;*/
1707
+ }
1708
+ }
1709
+
1710
+
1711
+ /* Tooltip */
1712
+
1713
+ .tinvwl-tooltip {
1714
+ display: none;
1715
+ }
1716
+
1717
+
1718
+ /* Bootstrap */
1719
+
1720
+ .input-group {
1721
+ position: relative;
1722
+ display: table;
1723
+ /*width: 100%;*/
1724
+ border-collapse: separate;
1725
+ }
1726
+
1727
+ .input-group .form-control {
1728
+ position: relative;
1729
+ z-index: 1;
1730
+ float: left;
1731
+ height: 38px;
1732
+ width: 100%;
1733
+ margin-bottom: 0;
1734
+ }
1735
+
1736
+ .input-group .form-control + .input-group-btn {
1737
+ padding-left: 15px;
1738
+ }
1739
+
1740
+ .tinv-wishlist .tinvwl-to-left .input-group .form-control + .input-group-btn {
1741
+ padding-left: 10px;
1742
+ }
1743
+
1744
+ .tinv-wishlist .tinv-search-form .input-group .form-control + .input-group-btn {
1745
+ padding-left: 9px;
1746
+ }
1747
+
1748
+ .tinv-wishlist.widget_wishlist_search .input-group .form-control + .input-group-btn {
1749
+ padding-left: 0;
1750
+ }
1751
+
1752
+ .input-group-addon,
1753
+ .input-group-btn,
1754
+ .input-group .form-control {
1755
+ display: table-cell;
1756
+ }
1757
+
1758
+ .input-group-addon,
1759
+ .input-group-btn {
1760
+ width: 1%;
1761
+ white-space: nowrap;
1762
+ vertical-align: top;
1763
+ }
1764
+
1765
+ @media only screen and (max-width: 640px) {
1766
+ .input-group {
1767
+ width: 100%;
1768
+ }
1769
+ }
1770
+
1771
+ @media only screen and (max-width: 667px) {
1772
+ .input-group:not(.tinvwl-no-full) {
1773
+ display: block;
1774
+ }
1775
+
1776
+ .input-group:not(.tinvwl-no-full) .form-control {
1777
+ float: none;
1778
+ }
1779
+
1780
+ .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn,
1781
+ .tinv-wishlist .tinv-search-form .input-group:not(.tinvwl-no-full) .form-control + .input-group-btn {
1782
+ padding-top: 10px;
1783
+ padding-left: 0;
1784
+ }
1785
+
1786
+ .input-group:not(.tinvwl-no-full) .input-group-addon,
1787
+ .input-group:not(.tinvwl-no-full) .input-group-btn,
1788
+ .input-group:not(.tinvwl-no-full) .form-control {
1789
+ display: block;
1790
+ }
1791
+
1792
+ .input-group:not(.tinvwl-no-full) .input-group-addon,
1793
+ .input-group:not(.tinvwl-no-full) .input-group-btn,
1794
+ .input-group:not(.tinvwl-no-full) .input-group-addon > input,
1795
+ .input-group:not(.tinvwl-no-full) .input-group-addon > button,
1796
+ .input-group:not(.tinvwl-no-full) .input-group-btn > input,
1797
+ .input-group:not(.tinvwl-no-full) .input-group-btn > button {
1798
+ width: 100%;
1799
+ }
1800
+ }
1801
+
1802
+
1803
+ /* Misc */
1804
+
1805
+ .tinv-table {
1806
+ display: table;
1807
+ width: 100%;
1808
+ height: 100%;
1809
+ }
1810
+
1811
+ .tinv-cell {
1812
+ display: table-cell;
1813
+ vertical-align: middle;
1814
+ }
1815
+
1816
+ .tinv-wishlist .clear {
1817
+ visibility: visible;
1818
+ width: auto;
1819
+ height: auto;
1820
+ }
1821
+
1822
+ .clear:before,
1823
+ .clear:after {
1824
+ content: "";
1825
+ display: table;
1826
+ }
1827
+
1828
+ .clear:after {
1829
+ clear: both;
1830
+ }
1831
+ /******************IMAGES**********************/
1832
+
1833
+
1834
+ .icon_big_times{
1835
+ background: url(../img/icon_big_times.png) no-repeat center;
1836
+ display: inline-block;
1837
+ background-size: 46px 46px;
1838
+ width: 46px;
1839
+ height: 46px;
1840
+ }
1841
+
1842
+ .icon_big_heart_check{
1843
+ background: url(../img/icon_big_heart_check.png) no-repeat center;
1844
+ display: inline-block;
1845
+ background-size: 48px 42px;
1846
+ width: 48px;
1847
+ height: 42px;
1848
+ }
1849
+
1850
+ .icon_big_heart_next{
1851
+ background: url(../img/icon_big_heart_next.png) no-repeat center;
1852
+ display: inline-block;
1853
+ background-size: 89px 42px;
1854
+ width: 89px;
1855
+ height: 42px;
1856
+ }
1857
+
1858
+ .icon_big_heart_plus{
1859
+ background: url(../img/icon_big_heart_plus.png) no-repeat center;
1860
+ display: inline-block;
1861
+ background-size: 48px 42px;
1862
+ width: 48px;
1863
+ height: 42px;
1864
+ }
1865
+
1866
+
1867
+ .icon_big_heart_subscribe{
1868
+ background: url(../img/icon_big_heart_subscribe.png) no-repeat center;
1869
+ display: inline-block;
1870
+ background-size: 48px 42px;
1871
+ width: 48px;
1872
+ height: 42px;
1873
+ }
1874
+
1875
+
1876
+
1877
+ .login_key{
1878
+ background: url(../img/login_key.png) no-repeat center;
1879
+ display: inline-block;
1880
+ background-size: 20px 20px;
1881
+ width: 20px;
1882
+ height: 20px;
1883
+ }
1884
+ /**************** RETINA ***************/
1885
+
1886
+ .tinv-wishlist .social-buttons li a{
1887
+ background-size: 195px 18px;
1888
+ }
1889
+ .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1890
+ background-size: 11px 17px;
1891
+ }
1892
+ .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1893
+ background-size: 12px 14px;
1894
+ }
1895
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
1896
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
1897
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1898
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1899
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
1900
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
1901
+ background-size: 30px 50px;
1902
+ }
1903
+ .tinv-wishlist .product-remove button {
1904
+ background-size: 11px 11px;
1905
+ }
1906
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
1907
+ background-size: 11px 11px;
1908
+ }
1909
+
1910
+ @media only screen and (-webkit-min-device-pixel-ratio: 1.5), not all, not all, not all {
1911
+ .tinv-wishlist .social-buttons li a{
1912
+ background-image: url(../img/social@2x.png);
1913
+ }
1914
+ .tinv-wishlist .social-buttons li a.white{
1915
+ background-image: url(../img/social_white@2x.png);
1916
+ }
1917
+ .tinv-wishlist .social-buttons li a.dark{
1918
+ background-image: url(../img/social@2x.png);
1919
+ }
1920
+
1921
+ .tinv-wishlist .tinv-login input[name="username"] + .tinvwl-icon {
1922
+ background-image: url(../img/login_name@2x.png);
1923
+ }
1924
+ .tinv-wishlist .tinv-login input[name="password"] + .tinvwl-icon {
1925
+ background-image: url(../img/login_pass@2x.png);
1926
+ }
1927
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
1928
+ .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,
1929
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1930
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,
1931
+ .woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,
1932
+ .woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before {
1933
+ background-image: url(../img/add_to_wishlist@2x.png);
1934
+ }
1935
+ .tinv-wishlist .product-remove button {
1936
+ background-image: url(../img/icon_delete@2x.png);
1937
+ }
1938
+ .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] {
1939
+ background-image: url(../img/icon_delete@2x.png);
1940
+ }
1941
+ .icon_big_times{
1942
+ background-image: url(../img/icon_big_times@2x.png);
1943
+ }
1944
+
1945
+ .icon_big_heart_check{
1946
+ background-image: url(../img/icon_big_heart_check@2x.png);
1947
+ }
1948
+
1949
+ .icon_big_heart_next{
1950
+ background-image: url(../img/icon_big_heart_next@2x.png);
1951
+ }
1952
+
1953
+ .icon_big_heart_plus{
1954
+ background-image: url(../img/icon_big_heart_plus@2x.png);
1955
+ }
1956
+
1957
+ .icon_big_heart_subscribe{
1958
+ background-image: url(../img/icon_big_heart_subscribe@2x.png);
1959
+ }
1960
+ .login_key{
1961
+ background-image: url(../img/login_key@2x.png);
1962
+ }
1963
+
1964
+ }
1965
+
1966
+ .disabled-add-wishlist {
1967
+ color: #FFFFF;
1968
+ cursor: not-allowed;
1969
+ }
1970
+
1971
+ .empty-name-wishlist {
1972
+ border-color: #FF0000 !important;
1973
+ }
asset/css/public.min.css CHANGED
@@ -1 +1 @@
1
-
1
+ .tinv-wishlist form,.tinv-wishlist p:last-child,.tinv-wishlist table{margin-bottom:0}.tinv-wishlist *,.tinvwl-wishlist :after,.tinvwl-wishlist :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.tinv-wishlist select{width:140px}.tinv-wishlist ul{list-style:none;margin:0;padding:0}.woocommerce.tinv-wishlist #respond input#submit.alt,.woocommerce.tinv-wishlist a.button.alt,.woocommerce.tinv-wishlist button.button.alt,.woocommerce.tinv-wishlist input.button.alt{text-align:center}.tinv-wishlist .button i,.tinv-wishlist .navigation-button a i,.tinv-wishlist button i,.tinv-wishlist input[type=button] i,.tinv-wishlist input[type=reset] i,.tinv-wishlist input[type=submit] i{margin-right:14px}.tinv-wishlist a.tinvwl-my-wishlists i{margin-right:17px}.tinv-wishlist .tinvwl-estimate-wrap a i{margin-right:18px}.tinv-wishlist a.tinv-close-modal i{margin-right:0}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before{content:'';display:inline-block;margin-right:10px;background-image:url(../img/add_to_wishlist.png);background-repeat:repeat}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt{position:relative;width:36px;height:36px;vertical-align:bottom}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before{position:absolute;top:50%;left:50%;margin-right:0!important}.tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,.tinv-wishlist .button.tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt{padding-left:1em;vertical-align:bottom}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-black:before{background-position:0 0;width:13px;height:11px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt:before{margin-top:-5px;margin-left:-6px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-white:before{background-position:0 13px;width:13px;height:12px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.icon-black:before{background-position:0 -12px;width:13px;height:12px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.tinvwl-product-in-list.no-txt:before{margin-top:-6px;margin-left:-6px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-black:before{background-position:15px 0;width:14px;height:12px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.icon-white:before{background-position:15px 25px;width:14px;height:12px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt:before{margin-top:-5px;margin-left:-7px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.icon-white:before{background-position:0 -25px;width:13px;height:11px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-black:before{background-position:15px -11px;width:15px;height:14px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.icon-white:before{background-position:15px 14px;width:15px;height:14px}.tinv-wishlist .product-remove button,.tinv-wishlist .social-buttons li a{text-indent:-9999px;box-shadow:none;background-position:center;background-repeat:no-repeat}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.tinvwl-product-in-list.no-txt:before{margin-top:-7px;margin-left:-7px}.tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button{margin-bottom:15px}.tinv-wishlist.tinvwl-before-add-to-cart .tinvwl_add_to_wishlist_button.no-txt{float:left;margin-right:10px;margin-bottom:0}.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button{margin-top:15px}.tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt{margin-left:10px}.single-product .tinv-wishlist.tinvwl-after-add-to-cart .tinvwl_add_to_wishlist_button.no-txt{margin-top:0}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt{padding:10px 11px;line-height:1}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom img{display:inline-block!important;vertical-align:baseline;width:auto!important;max-width:16px;max-height:16px;margin:0 6px 0 0!important}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-custom.no-txt img{margin-right:0!important}.single-product div.product form.cart .button.tinvwl_add_to_wishlist_button,div.product form.cart .tinvwl_add_to_wishlist_button{float:none}ul.products li.product .tinvwl_add_to_wishlist_button{margin-top:1em}.tinvwl_add_to_wishlist_button{display:inline-block}.tinv-wishlist.woocommerce .stock.in-stock:before{content:none}.tinv-wraper.tinv-wishlist{font-size:100%}.tinv-create-list li input[type=radio]{margin-right:10px}.tinv-create-list li+li{margin-top:15px}.tinv-create-list .input-group+ul{margin-top:25px}.tinv-search-list{margin-bottom:36px}.tinv-wishlist .tinv-header{margin-bottom:30px}.tinv-wishlist table{position:relative;table-layout:auto;margin-bottom:30px;z-index:2}.tinv-wishlist table.tinvwl-table-manage-list{margin-bottom:27px}.tinv-wishlist table input[type=checkbox]{margin-right:0}.tinv-wishlist table td,.tinv-wishlist table th{vertical-align:middle}.tinv-wishlist .tinvwl-table-manage-list .product-cb{width:35px;text-align:center}.tinv-wishlist .tinvwl-table-manage-list .product-remove{width:46px;text-align:center}.tinv-wishlist .product-remove button{display:block;margin:0 auto;width:27px;height:27px;-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%;padding:0;border:none;background-image:url(../img/icon_delete.png);background-color:#f7f7f7}.tinv-wishlist .product-thumbnail{min-width:100px;width:100px}.tinv-wishlist .product-thumbnail .wp-post-image{margin-bottom:0}.tinv-wishlist td.product-name a+.variation{margin-top:2px}.tinv-wishlist .product-stock i{margin-right:15px}.tinv-wishlist .product-stock p{display:table}.tinv-wishlist .product-stock span{display:table-cell;vertical-align:middle}.tinv-wishlist .product-action>.button>i,.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove],.tinv-wishlist table thead th .tinvwl-mobile{display:none}.tinv-wishlist.woocommerce .product-quantity{width:80px;text-align:center}.tinv-wishlist.woocommerce table .quantity .qty{max-width:100%;width:62px;text-align:left}.tinv-wishlist .product-action{width:135px;text-align:center}.tinv-wishlist .product-action .button{width:100%}.tinv-wishlist .product-action .tinvwl_move_product_button{margin-top:5px}.tinv-wishlist .tinvwl-table-manage-list .product-action>button[name=tinvwl-remove]>i{margin-right:0}@media only screen and (max-width:1024px){.tinv-wishlist .tinvwl-table-manage-lists:not(.tinvwl-public){margin-top:0}.tinv-wishlist .tinvwl-table-manage-list .product-remove{display:none}.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]{display:inline-block;margin-top:5px}.tinv-wishlist .product-action{width:60px}}@media only screen and (max-width:1024px) and (min-width:641px){.tinv-wishlist .tinvwl-table-manage-list td.product-stock p{display:block;text-align:center}.tinv-wishlist .product-stock span{display:block}.tinv-wishlist .tinvwl-table-manage-list td.product-stock i{margin-right:0}.tinv-wishlist .tinvwl-table-manage-list td.product-stock .tinvwl-txt{display:none}.tinv-wishlist .product-thumbnail{max-width:76px;width:76px}.tinv-wishlist .product-action .button>i{display:inline-block;margin-right:0}.tinv-wishlist .product-action .button .tinvwl-txt{display:none}}@media only screen and (max-width:640px){.tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove,.tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name),.tinv-wishlist table.tinvwl-table-manage-lists thead th:not(.wishlist-name),.tinv-wishlist thead th .tinvwl-full{display:none}.tinv-wishlist table.tinvwl-table-manage-list thead th.product-name,.tinv-wishlist table.tinvwl-table-manage-lists thead th.wishlist-name{display:block;width:100%;text-align:center}.tinv-wishlist table thead th .tinvwl-mobile{display:block}.tinv-wishlist table.tinvwl-table-manage-list tbody td,.tinv-wishlist table.tinvwl-table-manage-lists tbody td,.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td{display:block;width:100%!important;text-align:center}.tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child),.tinv-wishlist table.tinvwl-table-manage-lists tbody td:not(:last-child),.tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td:not(:last-child){border-bottom:0}.tinv-wishlist .product-stock p,.tinv-wishlist .product-thumbnail img{margin:0 auto}.tinv-wishlist .product-thumbnail img{max-width:80px}.tinv-wishlist.woocommerce table .quantity .qty{text-align:center;width:100%}.tinv-wishlist .product-action .tinvwl_move_product_button{margin-top:10px}.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]{margin-top:10px;text-indent:-9999px;background-image:url(../img/icon_delete.png);background-position:center;background-repeat:no-repeat}.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]>i{display:inline-block}.tinv-wishlist table.tinvwl-table-manage-list tfoot td{display:block;width:100%}.tinv-wishlist table.tinvwl-table-manage-lists .wishlist-action button[value=manage_remove]{width:100%}.tinv-wishlist table.tinvwl-table-manage-lists .wishlist-name .tinvwl-rename-button{float:none}}.tinv-wishlist .wishlist-cb{width:33px;text-align:center}.tinv-wishlist .wishlist-name .tinvwl-rename-input input{width:100%}.tinv-wishlist .wishlist-name .tinvwl-rename-button{float:right}.tinv-wishlist .wishlist-name .tinvwl-rename-button>i{margin-right:10px}.tinv-wishlist .wishlist-privacy,.tinv-wishlist table:not(.tinvwl-public) .wishlist-date{width:18%}.tinv-wishlist .wishlist-privacy select{width:100%}.tinv-wishlist .wishlist-name{width:45%}.tinv-wishlist .wishlist-action{width:120px;text-align:center}.tinv-wishlist .wishlist-action button[value=manage_remove]>i{display:none;margin-right:0}.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list{display:inline-block;vertical-align:middle}.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list>a.button{margin-right:0}.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:-10px}.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){float:left;width:35%;margin-right:2%}.tinv-wishlist tfoot .tinvwl-to-right{float:left;width:63%;text-align:right}.tinv-wishlist tfoot .tinvwl-to-right>*{margin:10px 0 0;vertical-align:middle}.tinv-wishlist tfoot .tinvwl-to-right>*+*{margin-left:10px}.tinv-wishlist tfoot .tinvwl-to-left:empty+.tinvwl-to-right{width:100%}@media only screen and (max-width:1024px){.tinv-wishlist .wishlist-name .tinvwl-rename-button>i,.tinv-wishlist tfoot .tinvwl-to-left:not(:empty){margin-right:0}.tinv-wishlist .wishlist-name .tinvwl-rename-button span{display:none}.tinv-wishlist .wishlist-action{width:60px}.tinv-wishlist tfoot .tinvwl-to-left:not(:empty),.tinv-wishlist tfoot .tinvwl-to-right{float:none;width:auto}.tinv-wishlist tfoot .tinvwl-to-right{text-align:left}}@media only screen and (max-width:1024px) and (min-width:641px){.tinv-wishlist .wishlist-action button[value=manage_remove] span{display:none}.tinv-wishlist .wishlist-action button[value=manage_remove]>i{display:inline-block}.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:0}}@media only screen and (max-width:640px){.tinv-wishlist button[value=product_apply] .tinvwl-mobile,.tinv-wishlist button[value=manage_apply] .tinvwl-mobile{display:none}.tinv-wishlist tfoot .tinvwl-to-right .tinv-create-list{display:block}.tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right .button,.tinv-wishlist .tinvwl-table-manage-list tfoot .tinvwl-to-right button,.tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right .button,.tinv-wishlist .tinvwl-table-manage-lists tfoot .tinvwl-to-right button{width:100%;margin:10px 0 0}.tinv-wishlist tfoot .tinvwl-to-right>*{margin:10px 0 0}.tinv-wishlist tfoot .tinvwl-to-right .button:first-child,.tinv-wishlist tfoot .tinvwl-to-right button:first-child{margin-top:0!important}.tinv-wishlist tfoot .tinvwl-to-left+.tinvwl-to-right{margin-top:20px}}.tinv-wishlist .social-buttons+.clear+.navigation-button,.tinv-wishlist .tinvwl-estimate-wrap+.clear+.navigation-button{margin-top:16px}.tinv-wishlist .navigation-button>li{float:left}.tinv-wishlist .navigation-button{margin-top:-10px}.tinv-wishlist .navigation-button>li>.tinv-create-list>a,.tinv-wishlist .navigation-button>li>a{margin-right:30px;margin-top:10px;display:inline-block}.tinv-wishlist .navigation-button>li>.tinv-create-list>a.button,.tinv-wishlist .navigation-button>li>a.button{margin-right:10px}.tinv-wishlist .navigation-button>li:last-child>.tinv-create-list>a,.tinv-wishlist .navigation-button>li:last-child>a{margin-right:0}.tinv-wishlist .social-buttons{float:right}.tinv-wishlist .social-buttons>span,.tinv-wishlist .social-buttons>ul{display:inline-block;vertical-align:middle}.tinv-wishlist .social-buttons>span{margin-right:27px}.tinv-wishlist .social-buttons li{float:left;margin-right:5px}.tinv-wishlist .social-buttons li:last-child{margin-right:0}.tinv-wishlist .social-buttons li a{display:block;width:41px;height:41px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;text-align:center;border-bottom:0;background-image:url(../img/social.png)}.tinv-wishlist .social-buttons li a.white{background-image:url(../img/social_white.png)}.tinv-wishlist .social-buttons li a.dark{background-image:url(../img/social.png)}.tinv-wishlist .social-buttons li .social-facebook{background-position:16px center}.tinv-wishlist .social-buttons li .social-twitter{background-position:-28px center}.tinv-wishlist .social-buttons li .social-pinterest{background-position:-73px center}.tinv-wishlist .social-buttons li .social-google{background-position:-119px center}.tinv-wishlist .social-buttons li .social-email{background-position:-164px center}@media only screen and (max-width:1024px){.tinv-wishlist .social-buttons+.clear+.navigation-button{margin-top:30px}.tinv-wishlist .social-buttons{float:none;width:auto;text-align:left;margin-top:20px}.tinv-wishlist .tinv-login form input[name=login]{min-width:auto}}.tinv-wishlist .navigation-button .tinv-create-list>a.tinvwl-no-icon>i,.tinv-wishlist .navigation-button li>a.tinvwl-no-icon>i{display:none}@media only screen and (max-width:640px){.tinv-wishlist .social-buttons{text-align:center}.tinv-wishlist .navigation-button>li{width:20%;text-align:center}.tinv-wishlist .navigation-button.tinvwl-btns-count-1>li{width:100%}.tinv-wishlist .navigation-button.tinvwl-btns-count-2>li{width:50%}.tinv-wishlist .navigation-button.tinvwl-btns-count-3>li{width:33%}.tinv-wishlist .navigation-button.tinvwl-btns-count-4>li{width:25%}.tinv-wishlist .navigation-button>li+li{width:20%}.tinv-wishlist .navigation-button.tinvwl-btns-count-1>li+li{width:100%}.tinv-wishlist .navigation-button.tinvwl-btns-count-2>li+li{width:50%}.tinv-wishlist .navigation-button.tinvwl-btns-count-3>li+li{width:33%}.tinv-wishlist .navigation-button.tinvwl-btns-count-4>li+li{width:25%}.tinv-wishlist .navigation-button>li>.tinv-create-list>a,.tinv-wishlist .navigation-button>li>a{width:calc(100% - 10px);margin-right:0}.tinv-wishlist .navigation-button .tinv-create-list>a .tinvwl-txt,.tinv-wishlist .navigation-button li>a .tinvwl-txt{display:none}.tinv-wishlist .navigation-button .tinv-create-list>a>i,.tinv-wishlist .navigation-button li>a>i{display:inline-block!important;margin-right:0}.tinv-wishlist .social-buttons>span{display:block;margin-top:0;margin-right:0;margin-bottom:5px}}.tinv-wishlist .tinv-lists-nav{margin-bottom:35px}.tinv-wishlist table+.tinv-lists-nav{margin-top:35px}.tinv-wishlist .tinv-next,.tinv-wishlist .tinv-prev{display:inline-block}.tinv-wishlist .tinv-prev{float:left}.tinv-wishlist .tinv-next{float:right}.tinv-wishlist .tinv-prev i{margin-left:0;margin-right:18px}.tinv-wishlist .tinv-next i{margin-left:18px;margin-right:0}.tinv-wishlist .tinv-login{margin-bottom:30px}.tinv-wishlist .tinv-login i.login_key{display:inline-block;vertical-align:text-bottom;margin-right:16px}.tinv-wishlist .tinv-login .login{display:none;border:none;padding:0;margin:24px 0 0}.tinv-wishlist .tinv-login h2{display:none}.tinv-wishlist .tinv-login .lost_password{margin-bottom:0}.tinv-wishlist .tinv-login form .form-row{padding:0;margin:0}.tinv-wishlist .tinv-login form .form-row+.input-group-btn{padding-left:9px}.tinv-wishlist.woocommerce .tinv-login form .form-row-first,.tinv-wishlist.woocommerce .tinv-login form .form-row-last{width:50%}.tinv-wishlist.woocommerce .tinv-login form .form-row-first{padding-right:4px}.tinv-wishlist.woocommerce .tinv-login form .form-row-last{padding-left:4px}.tinv-wishlist .tinv-login form .lost_password,.tinv-wishlist .tinv-login form .tinv-rememberme{float:left;margin-top:16px}.tinv-wishlist .tinv-login .tinv-rememberme+.lost_password{margin-left:26px}.tinv-wishlist .tinv-login .tinvwl-icon{position:absolute;top:50%;left:14px;display:none;width:12px;height:14px;margin-top:-7px;background-repeat:no-repeat;background-position:center}.tinv-wishlist .tinv-login input[name=username]+.tinvwl-icon{height:17px;margin-top:-8.5px;background-image:url(../img/login_name.png)}.tinv-wishlist .tinv-login input[name=password]+.tinvwl-icon{left:17px;height:14px;margin-top:-7px;background-image:url(../img/login_pass.png)}@media only screen and (max-width:667px){.tinv-wishlist.woocommerce .tinv-login form .form-row-first,.tinv-wishlist.woocommerce .tinv-login form .form-row-last{float:none;width:100%;padding:0}.tinv-wishlist.woocommerce .tinv-login form .form-row-last{margin-top:10px}.tinv-wishlist.woocommerce .tinv-login form .input-group-btn{display:block;padding:0;width:auto;margin-top:10px}}.tinvwl-estimate-wrap,.tinvwl-subscribe-wrap{float:left}.tinv-overlay{position:fixed;top:0;left:0;width:100%;height:100%;visibility:hidden;opacity:0;-webkit-transition:opacity .3s ease,visibility .3s ease;-moz-transition:opacity .3s ease,visibility .3s ease;-o-transition:opacity .3s ease,visibility .3s ease;transition:opacity .3s ease,visibility .3s ease;background:#191919}.tinv-modal.tinv-modal-open .tinv-overlay{visibility:visible;opacity:.5}.admin-bar .tinv-wishlist .tinv-modal{padding-top:32px!important}.tinv-wishlist .tinv-modal .tinv-modal-inner{position:relative;margin:0 auto;background-color:#fff}.tinv-wishlist .tinv-modal{overflow-y:auto;overflow-x:hidden;top:0;left:0;width:0;height:0;z-index:9999;position:fixed;outline:0!important;-webkit-backface-visibility:hidden;visibility:hidden;opacity:0;text-align:left;-webkit-transition:opacity .3s ease,visibility .3s ease;-moz-transition:opacity .3s ease,visibility .3s ease;-o-transition:opacity .3s ease,visibility .3s ease;transition:opacity .3s ease,visibility .3s ease}.tinv-wishlist .tinv-modal.tinv-modal-open{visibility:visible;opacity:1;width:100%;height:100%}.tinv-wishlist .tinv-modal .tinv-close-modal{display:inline-block;position:absolute;top:17px;right:14px;width:26px;height:26px;line-height:26px;font-size:12px;text-align:center;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;border-bottom:0;box-shadow:none!important;background-color:#ebe9eb}@media screen and (max-width:782px){.admin-bar .tinv-wishlist .tinv-modal{padding-top:46px!important}}@media screen and (max-width:600px){.admin-bar .tinv-wishlist .tinv-modal{padding-top:0!important}.tinv-wishlist .tinv-modal .tinv-close-modal{position:static;display:block;margin:0 auto 20px}}.tinv-wishlist .tinv-modal .tinv-modal-inner{max-width:360px;padding:40px}.tinv-wishlist .tinv-modal .icon_big_heart_check,.tinv-wishlist .tinv-modal .icon_big_heart_next,.tinv-wishlist .tinv-modal .icon_big_heart_plus,.tinv-wishlist .tinv-modal .icon_big_heart_subscribe,.tinv-wishlist .tinv-modal .icon_big_times,.tinv-wishlist .tinv-modal img{display:block;margin:0 auto 25px;opacity:1!important}.tinv-wishlist .tinv-modal ul{overflow:visible;list-style:disc;margin:10px 0 0 20px}.tinv-wishlist .tinv-modal li{list-style:disc!important}.tinv-wishlist .tinv-create-list .tinv-modal ul,.tinv-wishlist.tinv-create-list form ul{list-style:none!important;margin:25px 0 0}.tinv-wishlist .tinv-create-list .tinv-modal li,.tinv-wishlist.tinv-create-list form li{list-style:none!important}.tinv-wishlist .tinv-modal .already-in{margin-bottom:35px}.tinv-wishlist .tinv-modal .delete-notification{margin-bottom:25px}.tinv-wishlist .tinv-modal .already-in ul{overflow:visible;margin:12px 0 27px 17px}.tinv-wishlist .tinv-modal select{width:100%}.tinv-wishlist .tinv-modal button+.button,.tinv-wishlist .tinv-modal button+button,.tinv-wishlist .tinv-modal input+button,.tinv-wishlist .tinv-modal label+button,.tinv-wishlist .tinv-modal label+input,.tinv-wishlist .tinv-modal select+button,.tinv-wishlist .tinv-modal select+input,.woocommerce .tinv-wishlist .tinv-modal button+button.button{margin-top:12px;width:100%}.tinv-wishlist .tinv-modal .already-in+label{display:block;margin-top:6px}.tinv-wishlist .tinv-modal label select{margin-top:8px}.tinv-wishlist .tinv-modal .delete-notification+button{width:100%}.tinv-wishlist .tinvwl_added_to_wishlist,.tinv-wishlist .tinvwl_created_wishlist{text-align:center}.tinv-wishlist .tinvwl_added_to_wishlist .tinv-txt,.tinv-wishlist .tinvwl_created_wishlist .tinv-txt{margin-bottom:25px}.tinv-wishlist .tinvwl_created_wishlist button,.woocommerce .tinv-wishlist .tinvwl_added_to_wishlist.tinv-modal button.button{margin-top:0}.tinv-wishlist .tinv-modal .tinvwl-buttons-group{margin-top:20px}.tinv-wishlist .tinv-modal.tinvwl-subscribe img{margin-bottom:30px}.tinv-wishlist .tinvwl-subscribe .tinvwl-txt{margin-bottom:18px}.tinv-wishlist .tinvwl-subscribe ul{list-style:none;margin:0}.tinv-wishlist .tinvwl-subscribe li{list-style:none!important}.tinv-wishlist .tinvwl-subscribe li+li{margin-top:8px}.tinv-wishlist .tinvwl-subscribe li input[type=checkbox]{margin-right:11px}.tinv-wishlist .tinvwl-buttons-group button{width:100%}.tinv-wishlist .tinvwl-buttons-group button+button{margin-top:7px}.tinv-wishlist .tinvwl-buttons-group+button{width:100%;margin-top:7px}.tinv-wishlist .tinvwl-subscribe-wrap+.clear+.navigation-button{margin-top:26px}.tinv-wishlist .estimate-dialogbox .tinv-modal-inner{max-width:778px;padding:35px 30px 30px;text-align:center}.tinv-wishlist .tinv-modal h2{text-align:center;margin:0 0 35px}.tinv-wishlist .estimate-dialogbox textarea{height:200px;margin-bottom:30px}@media only screen and (max-width:1024px){.tinvwl-estimate-wrap,.tinvwl-subscribe-wrap{float:none;width:auto}.tinv-wishlist .tinvwl-subscribe-wrap+.clear+.navigation-button{margin-top:30px}}@media only screen and (max-width:640px){.navigation-button,.social-buttons,.tinv-lists-nav,.tinvwl-estimate-wrap,.tinvwl-subscribe-wrap{margin-left:12px;margin-right:12px}.tinvwl-estimate-wrap .tinv-modal-btn,.tinvwl-subscribe-wrap .tinv-modal-btn{width:100%}.tinvwl-estimate-wrap+.social-buttons{margin-top:10px}}@media screen and (max-width:600px){.tinv-wishlist .estimate-dialogbox .tinv-modal-inner{padding-top:25px}}.tinv-wishlist .tinv-create-list .tinv-modal-inner{max-width:778px;padding:30px}.tinv-wishlist .input-group.tinvwl-has-error .form-control,.tinv-wishlist .tinvwl-has-error:not(.input-group){border:2px solid red}.tinv-wishlist .tinvwl-has-error+.tinvwl-error{padding:5px 0 0 5px;color:red}.tinvwl-search-submit:before{-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;display:inline-block;font-family:Genericons;font-size:16px;font-style:normal;font-variant:normal;font-weight:400;line-height:.8125;speak:none;text-align:center;text-decoration:inherit;text-transform:none;vertical-align:middle}.widget .tinvwl-search-submit:before{content:"\f400";position:relative;padding:0}.widget button.tinvwl-search-submit{overflow:hidden}.tinvwl-tooltip{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group .form-control{position:relative;z-index:1;float:left;height:38px;width:100%;margin-bottom:0}.input-group .form-control+.input-group-btn{padding-left:15px}.tinv-wishlist .tinvwl-to-left .input-group .form-control+.input-group-btn{padding-left:10px}.tinv-wishlist .tinv-search-form .input-group .form-control+.input-group-btn{padding-left:9px}.tinv-wishlist.widget_wishlist_search .input-group .form-control+.input-group-btn{padding-left:0}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:top}@media only screen and (max-width:640px){.input-group{width:100%}}@media only screen and (max-width:667px){.input-group:not(.tinvwl-no-full),.input-group:not(.tinvwl-no-full) .form-control,.input-group:not(.tinvwl-no-full) .input-group-addon,.input-group:not(.tinvwl-no-full) .input-group-btn{display:block}.input-group:not(.tinvwl-no-full) .form-control{float:none}.input-group:not(.tinvwl-no-full) .form-control+.input-group-btn,.tinv-wishlist .tinv-search-form .input-group:not(.tinvwl-no-full) .form-control+.input-group-btn{padding-top:10px;padding-left:0}.input-group:not(.tinvwl-no-full) .input-group-addon,.input-group:not(.tinvwl-no-full) .input-group-addon>button,.input-group:not(.tinvwl-no-full) .input-group-addon>input,.input-group:not(.tinvwl-no-full) .input-group-btn,.input-group:not(.tinvwl-no-full) .input-group-btn>button,.input-group:not(.tinvwl-no-full) .input-group-btn>input{width:100%}}.tinv-table{display:table;width:100%;height:100%}.tinv-cell{display:table-cell;vertical-align:middle}.tinv-wishlist .clear{visibility:visible;width:auto;height:auto}.clear:after,.clear:before{content:"";display:table}.clear:after{clear:both}.icon_big_times{background:url(../img/icon_big_times.png) center no-repeat;display:inline-block;background-size:46px 46px;width:46px;height:46px}.icon_big_heart_check,.icon_big_heart_next,.icon_big_heart_plus,.icon_big_heart_subscribe{height:42px;display:inline-block}.icon_big_heart_check{background:url(../img/icon_big_heart_check.png) center no-repeat;background-size:48px 42px;width:48px}.icon_big_heart_next{background:url(../img/icon_big_heart_next.png) center no-repeat;background-size:89px 42px;width:89px}.icon_big_heart_plus{background:url(../img/icon_big_heart_plus.png) center no-repeat;background-size:48px 42px;width:48px}.icon_big_heart_subscribe{background:url(../img/icon_big_heart_subscribe.png) center no-repeat;background-size:48px 42px;width:48px}.login_key{background:url(../img/login_key.png) center no-repeat;display:inline-block;background-size:20px 20px;width:20px;height:20px}.tinv-wishlist .social-buttons li a{background-size:195px 18px}.tinv-wishlist .tinv-login input[name=username]+.tinvwl-icon{background-size:11px 17px}.tinv-wishlist .tinv-login input[name=password]+.tinvwl-icon{background-size:12px 14px}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before{background-size:30px 50px}.tinv-wishlist .product-remove button,.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]{background-size:11px 11px}@media only screen and (-webkit-min-device-pixel-ratio:1.5),not all,not all,not all{.tinv-wishlist .social-buttons li a{background-image:url(../img/social@2x.png)}.tinv-wishlist .social-buttons li a.white{background-image:url(../img/social_white@2x.png)}.tinv-wishlist .social-buttons li a.dark{background-image:url(../img/social@2x.png)}.tinv-wishlist .tinv-login input[name=username]+.tinvwl-icon{background-image:url(../img/login_name@2x.png)}.tinv-wishlist .tinv-login input[name=password]+.tinvwl-icon{background-image:url(../img/login_pass@2x.png)}.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before,.tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart-plus.tinvwl_add_to_wishlist_button:before,.woocommerce-page ul.products li.product a.button.tinvwl-icon-heart.tinvwl_add_to_wishlist_button:before{background-image:url(../img/add_to_wishlist@2x.png)}.tinv-wishlist .product-remove button,.tinv-wishlist .tinvwl-table-manage-list .product-action button[name=tinvwl-remove]{background-image:url(../img/icon_delete@2x.png)}.icon_big_times{background-image:url(../img/icon_big_times@2x.png)}.icon_big_heart_check{background-image:url(../img/icon_big_heart_check@2x.png)}.icon_big_heart_next{background-image:url(../img/icon_big_heart_next@2x.png)}.icon_big_heart_plus{background-image:url(../img/icon_big_heart_plus@2x.png)}.icon_big_heart_subscribe{background-image:url(../img/icon_big_heart_subscribe@2x.png)}.login_key{background-image:url(../img/login_key@2x.png)}}.disabled-add-wishlist{color:#FFFFF;cursor:not-allowed}.empty-name-wishlist{border-color:red!important}
asset/css/theme.css CHANGED
@@ -1,924 +1,924 @@
1
- .tinv-wishlist,
2
- .tinv-wishlist button,
3
- .tinv-wishlist input,
4
- .tinv-wishlist select,
5
- .tinv-wishlist textarea,
6
- .tinv-wishlist button,
7
- .tinv-wishlist input[type="button"],
8
- .tinv-wishlist input[type="reset"],
9
- .tinv-wishlist input[type="submit"] {
10
- font-family: Georgia, serif;
11
- font-size: 14px;
12
- font-weight: normal;
13
- text-transform: none;
14
- line-height: 1.75;
15
- }
16
-
17
- .tinv-wishlist .woocommerce form .form-row input.input-text {
18
- line-height: 1;
19
- padding-top: 9.5px;
20
- padding-bottom: 9.5px;
21
- }
22
-
23
- .tinv-wishlist label {
24
- font-weight: normal;
25
- }
26
-
27
- .tinv-wishlist ::-webkit-input-placeholder {
28
- color: #1a1a1a;
29
- font-family: Georgia, serif;
30
- }
31
-
32
- .tinv-wishlist :-moz-placeholder {
33
- color: #1a1a1a;
34
- font-family: Georgia, serif;
35
- }
36
-
37
- .tinv-wishlist ::-moz-placeholder {
38
- color: #1a1a1a;
39
- font-family: Georgia, serif;
40
- opacity: 1;
41
- }
42
-
43
- .tinv-wishlist :-ms-input-placeholder {
44
- color: #1a1a1a;
45
- font-family: Georgia, serif;
46
- }
47
-
48
- .tinv-wishlist select {
49
- -webkit-appearance: none;
50
- -moz-appearance: none;
51
- appearance: none;
52
- padding: 7px 10px;
53
- background-image: url(../img/select_caret_t.png);
54
- background-repeat: no-repeat;
55
- background-position: 96% center;
56
- background-position: calc(100% - 15px) center;
57
- }
58
-
59
- .tinv-wishlist button,
60
- .tinv-wishlist input[type="button"],
61
- .tinv-wishlist input[type="reset"],
62
- .tinv-wishlist input[type="submit"] {
63
- text-align: center;
64
- font-weight: normal;
65
- letter-spacing: 0;
66
- line-height: 1;
67
- text-transform: none;
68
- padding: 11.5px 19px;
69
- }
70
-
71
- .tinv-wishlist .button,
72
- .tinv-wishlist button,
73
- .tinv-wishlist input[type=button],
74
- .tinv-wishlist input[type=reset],
75
- .tinv-wishlist input[type=submit] {
76
- -webkit-box-shadow: none;
77
- box-shadow: none;
78
- text-transform: none;
79
- border: none;
80
- -webkit-transition: none;
81
- -moz-transition: none;
82
- -o-transition: none;
83
- transition: none;
84
- }
85
-
86
- .tinv-wishlist input[type="text"],
87
- .tinv-wishlist input[type="email"],
88
- .tinv-wishlist input[type="url"],
89
- .tinv-wishlist input[type="password"],
90
- .tinv-wishlist input[type="search"],
91
- .tinv-wishlist input[type="tel"],
92
- .tinv-wishlist input[type="number"],
93
- .tinv-wishlist textarea,
94
- .tinv-wishlist .product-quantity input[type="text"].qty {
95
- padding: 6px 15px;
96
- }
97
-
98
- .woocommerce.tinv-wishlist #respond input#submit,
99
- .woocommerce.tinv-wishlist a.button,
100
- .woocommerce.tinv-wishlist button.button,
101
- .woocommerce.tinv-wishlist input.button {
102
- text-align: center;
103
- font-weight: normal;
104
- letter-spacing: 0;
105
- line-height: 1;
106
- text-transform: none;
107
- padding: 11.5px 17px;
108
- -webkit-transition: none;
109
- -moz-transition: none;
110
- -o-transition: none;
111
- transition: none;
112
- }
113
-
114
- .woocommerce.tinv-wishlist #respond input#submit.alt,
115
- .woocommerce.tinv-wishlist a.button.alt,
116
- .woocommerce.tinv-wishlist button.button.alt,
117
- .woocommerce.tinv-wishlist input.button.alt {
118
- padding: 11.5px 20px;
119
- }
120
-
121
- .woocommerce.tinv-wishlist .tinvwl-my-wishlists {
122
- padding-left: 17px;
123
- padding-right: 17px;
124
- }
125
-
126
- .woocommerce.tinv-wishlist .tinvwl-continue-shop {
127
- padding-left: 17px;
128
- padding-right: 17px;
129
- }
130
-
131
- .tinv-wishlist a i.fa-chevron-left,
132
- .tinv-wishlist a i.fa-chevron-right {
133
- font-size: 10px;
134
- }
135
-
136
- .tinv-wishlist .tinvwl-estimate-wrap a i.fa-envelope-o {
137
- font-size: 14px;
138
- }
139
-
140
- .tinv-wishlist.widget input[type="search"] {
141
- line-height: 1.14;
142
- padding: 9px;
143
- }
144
-
145
- @media screen and (max-width: 909px) {
146
- .tinv-wishlist.widget input[type="search"] {
147
- padding: 9px;
148
- }
149
- }
150
-
151
-
152
- /* Manage List */
153
-
154
- .tinv-wishlist table th {
155
- padding: 22px 12px;
156
- }
157
-
158
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public th {
159
- padding: 22px 15px;
160
- }
161
-
162
- .tinv-wishlist table.tinvwl-table-manage-list th {
163
- padding: 19px 12px;
164
- }
165
-
166
- .tinv-wishlist table td {
167
- padding: 27px 12px;
168
- }
169
-
170
- .tinv-wishlist table .entry-date {
171
- background: none;
172
- padding: 0;
173
- margin: 0;
174
- color: inherit;
175
- }
176
-
177
- .tinv-wishlist table.tinvwl-table-manage-list td {
178
- padding: 26px 12px;
179
- }
180
-
181
- .tinv-wishlist .tinvwl-table-manage-list .product-cb {
182
- padding-left: 10px;
183
- padding-right: 10px;
184
- }
185
-
186
- .tinv-wishlist .tinvwl-table-manage-list .product-remove {
187
- padding-left: 10px;
188
- padding-right: 10px;
189
- }
190
-
191
- .tinv-wishlist td.product-name {
192
- line-height: 20px;
193
- }
194
-
195
- .tinv-wishlist td.product-name a {
196
- line-height: 1.14285714;
197
- }
198
-
199
- .tinv-wishlist td.product-price {
200
- line-height: 24px;
201
- }
202
-
203
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock {
204
- padding-left: 9px;
205
- padding-right: 9px;
206
- }
207
-
208
- .tinv-wishlist .product-stock i {
209
- font-size: 12px;
210
- }
211
-
212
- .tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
213
- padding-left: 9px;
214
- padding-right: 9px;
215
- }
216
-
217
- .tinv-wishlist.woocommerce table .quantity .qty {
218
- padding: 8px 12px;
219
- }
220
-
221
- .tinv-wishlist table.tinvwl-table-manage-list .product-action {
222
- padding-left: 11px;
223
- padding-right: 11px;
224
- }
225
-
226
- .tinv-wishlist .tinvwl-table-manage-list .product-action button[name="tinvwl-remove"] i {
227
- font-size: 12px;
228
- }
229
-
230
- .tinv-wishlist .tinvwl-table-manage-list .product-action .tinvwl_move_product_button i {
231
- font-size: 12px;
232
- }
233
-
234
- @media only screen and (max-width: 1024px) and (min-width: 641px) {
235
- .tinv-wishlist table.tinvwl-table-manage-list td.product-thumbnail {
236
- padding-left: 10px;
237
- padding-right: 10px;
238
- }
239
-
240
- .tinv-wishlist .product-action .button {
241
- padding: 11.5px 12px !important;
242
- }
243
- }
244
-
245
-
246
- @media only screen and (max-width: 640px) {
247
- .tinv-wishlist table.tinvwl-table-manage-list th {
248
- padding-top: 26px;
249
- padding-bottom: 26px;
250
- }
251
-
252
- .tinv-wishlist table.tinvwl-table-manage-list tbody td,
253
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td,
254
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td {
255
- display: block;
256
- width: 100% !important;
257
- padding: 0 12px 12px;
258
- text-align: center;
259
- }
260
-
261
- .tinv-wishlist table.tinvwl-table-manage-list tbody td:not(:last-child),
262
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td:not(:last-child),
263
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public tbody td:not(:last-child) {
264
- border-bottom: 0;
265
- }
266
-
267
- .tinv-wishlist table.tinvwl-table-manage-list tbody td:first-child,
268
- .tinv-wishlist table.tinvwl-table-manage-lists tbody td:first-child {
269
- padding-top: 20px;
270
- }
271
-
272
- .tinv-wishlist table.tinvwl-table-manage-list td,
273
- .tinv-wishlist table.tinvwl-table-manage-lists td,
274
- .tinv-wishlist table.tinvwl-table-manage-lists.tinvwl-public td {
275
- padding: 12px;
276
- }
277
-
278
- .tinv-wishlist .tinvwl-table-manage-list td.product-cb,
279
- .tinv-wishlist .tinvwl-table-manage-lists td.wishlist-cb {
280
- padding-bottom: 20px;
281
- }
282
-
283
- .tinv-wishlist .tinvwl-table-manage-list td.product-thumbnail {
284
- padding-top: 20px;
285
- padding-bottom: 14px;
286
- }
287
-
288
- .tinv-wishlist .tinvwl-table-manage-list td.product-cb + td.product-remove + td.product-thumbnail {
289
- padding-top: 0;
290
- }
291
-
292
- .tinv-wishlist .tinvwl-table-manage-list td.product-name {
293
- padding-bottom: 6px;
294
- }
295
-
296
- .tinv-wishlist .tinvwl-table-manage-list td.product-price {
297
- padding-bottom: 23px;
298
- }
299
-
300
- .tinv-wishlist .tinvwl-table-manage-list td.product-date {
301
- padding-bottom: 16px;
302
- }
303
-
304
- .tinv-wishlist .tinvwl-table-manage-list td.product-stock {
305
- padding-bottom: 24px;
306
- }
307
-
308
- .tinv-wishlist .tinvwl-table-manage-list td.product-quantity {
309
- padding: 0 12px 10px;
310
- }
311
- }
312
-
313
-
314
- /* Manage Lists */
315
-
316
- .tinv-wishlist .wishlist-cb {
317
- padding-left: 10px;
318
- padding-right: 10px;
319
- }
320
-
321
- .tinv-wishlist .wishlist-name {
322
- min-width: 340px;
323
- }
324
-
325
- .tinv-wishlist .wishlist-privacy {
326
- padding-left: 15px;
327
- padding-right: 15px;
328
- }
329
-
330
- .tinv-wishlist table:not(.tinvwl-public) .wishlist-date,
331
- .tinv-wishlist .wishlist-privacy {
332
- min-width: 130px;
333
- }
334
-
335
- .tinv-wishlist .wishlist-action {
336
- padding-left: 10px;
337
- padding-right: 10px;
338
- }
339
-
340
- .tinv-wishlist .wishlist-action button[value="manage_remove"] {
341
- background-image: url(../img/icon_delete.png);
342
- background-repeat: no-repeat;
343
- background-position: 14px center;
344
- padding-left: 39px;
345
- padding-right: 17px;
346
- }
347
-
348
- .tinv-wishlist .wishlist-action button[value="manage_remove"] i {
349
- font-size: 12px;
350
- }
351
-
352
- @media only screen and (max-width: 1200px) {
353
- .tinv-wishlist .wishlist-name {
354
- min-width: 200px;
355
- }
356
- }
357
-
358
- @media only screen and (max-width: 1024px) {
359
- .tinv-wishlist .wishlist-action button[value="manage_remove"] {
360
- padding-left: 17px;
361
- }
362
- }
363
-
364
- @media only screen and (max-width: 1024px) and (min-width: 641px) {
365
- .tinv-wishlist tfoot .tinvwl-to-left select {
366
- width: 140px;
367
- }
368
-
369
- .tinv-wishlist .wishlist-action button[value="manage_remove"] {
370
- background-image: none;
371
- padding: 11.5px 12px !important;
372
- }
373
- }
374
-
375
- @media only screen and (max-width: 640px) {
376
- .tinv-wishlist .wishlist-action button[value="manage_remove"] {
377
- text-indent: -9999px;
378
- background-position: center;
379
- }
380
- }
381
-
382
-
383
- /* Login */
384
-
385
- .tinv-wishlist .tinv-login.tinv-wrapped-block {
386
- padding: 30px;
387
- }
388
-
389
- .tinv-wishlist .tinv-login form input[name="login"] {
390
- min-width: 219px;
391
- }
392
-
393
- .tinv-wishlist .tinv-login input[name="username"] {
394
- padding-left: 40px;
395
- }
396
-
397
- .tinv-wishlist .tinv-login input[name="password"] {
398
- padding-left: 36px;
399
- }
400
-
401
- .tinv-wishlist .tinv-login .form-row {
402
- position: relative;
403
- }
404
-
405
- .tinv-wishlist .tinv-login .tinvwl-icon {
406
- display: inline-block;
407
- }
408
-
409
-
410
- /* Move */
411
-
412
- .tinv-wishlist .tinv-modal .already-in ul li + li {
413
- /*margin-top: 10px;*/
414
- }
415
-
416
- .tinv-wishlist .tinv-modal .button {
417
- font-weight: normal;
418
- padding: 11px 19px;
419
- }
420
-
421
- .tinv-wishlist .tinv-modal button i,
422
- .tinv-wishlist .tinv-modal .button i {
423
- font-size: 14px;
424
- }
425
-
426
-
427
- /* Added to Wishlist */
428
-
429
- .tinv-wishlist .tinvwl_added_to_wishlist .tinvwl_button_view,
430
- .tinv-wishlist .tinvwl_created_wishlist .tinvwl_button_view {
431
- padding: 11px 11px;
432
- }
433
-
434
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group button {
435
- float: left !important;
436
- width: calc( 50% - 5px );
437
- white-space: normal;
438
- }
439
-
440
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group .tinvwl_button_close {
441
- width: calc( 45% - 5px );
442
- }
443
-
444
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group .tinvwl_button_close + .tinvwl_button_view {
445
- width: calc( 55% - 5px );
446
- }
447
-
448
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group button + button,
449
- .tinv-wishlist .tinv-modal .tinvwl-buttons-group button + a button {
450
- margin: 0 0 0 10px;
451
- }
452
-
453
-
454
- /* Follow Wishlist */
455
-
456
- .tinv-wishlist .tinvwl-subscribe .tinvwl-buttons-group button i {
457
- font-size: 14px;
458
- }
459
-
460
-
461
- /* Estimate */
462
-
463
- .woocommerce.tinv-wishlist .tinvwl-estimate-wrap .button.tinv-modal-btn {
464
- padding: 11.5px 15px;
465
- }
466
-
467
- .woocommerce.tinv-wishlist .estimate-dialogbox button {
468
- padding: 15px 47px;
469
- }
470
-
471
-
472
- /* text */
473
-
474
- .tinv-wishlist {
475
- color: #1a1a1a;
476
- }
477
-
478
- .tinv-wishlist .tinv-header h2 {
479
- font-family: Georgia, serif;
480
- text-transform: none;
481
- text-shadow: none;
482
- letter-spacing: 0;
483
- font-size: 40px;
484
- font-weight: 700;
485
- text-transform: none;
486
- margin-bottom: 40px;
487
- color: #00000