WooCommerce Wishlist Plugin - Version 1.14.3

Version Description

Release Date - 31 August 2019

  • Added compatibility for hook 'woocommerce_before_cart_item_quantity_zero' that deprecated from WooCommerce 3.7.0
  • Fixed 'Add All to Cart' button issue
  • Fixed PHP Error when 'wc_clear_notices' method is not available
  • Improved stylesheets loading for plugin settings
Download this release

Release Info

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

Code changes from version 1.14.2 to 1.14.3

admin/settings/general.class.php CHANGED
@@ -94,7 +94,7 @@ class TInvWL_Admin_Settings_General extends TInvWL_Admin_BaseSection {
94
  * @return array
95
  */
96
  function constructor_data() {
97
- $lists = get_pages( array( 'number' => 999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
98
  $page_list = array( '' => '' );
99
  $menus = $this->get_wp_menus();
100
  foreach ( $lists as $list ) {
94
  * @return array
95
  */
96
  function constructor_data() {
97
+ $lists = get_pages( array( 'number' => 9999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
98
  $page_list = array( '' => '' );
99
  $menus = $this->get_wp_menus();
100
  foreach ( $lists as $list ) {
admin/tinvwl.class.php CHANGED
@@ -170,9 +170,10 @@ class TInvWL_Admin_TInvWL extends TInvWL_Admin_Base {
170
  * Load style
171
  */
172
  function enqueue_styles() {
 
173
  wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
174
- wp_enqueue_style( $this->_name, TINVWL_URL . 'assets/css/admin.css', array(), $this->_version, 'all' );
175
- wp_enqueue_style( $this->_name . '-form', TINVWL_URL . 'assets/css/admin-form.css', array(), $this->_version, 'all' );
176
  }
177
 
178
  /**
170
  * Load style
171
  */
172
  function enqueue_styles() {
173
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
174
  wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
175
+ wp_enqueue_style( $this->_name, TINVWL_URL . 'assets/css/admin' . $suffix . '.css', array(), $this->_version, 'all' );
176
+ wp_enqueue_style( $this->_name . '-form', TINVWL_URL . 'assets/css/admin-form' . $suffix . '.css', array(), $this->_version, 'all' );
177
  }
178
 
179
  /**
assets/css/admin-form.css CHANGED
@@ -2,46 +2,41 @@
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
 
18
  .tiwlform-number-container input[type=text] {
19
- width: 50px;
20
- height: 36px;
21
- text-align: right;
22
- border-radius: 5px;
23
- line-height: 26px;
24
- margin: 0;
25
- }
26
 
27
  .tiwlform-number-container button {
28
- width: 20px;
29
- height: 38px;
30
- line-height: 38px;
31
- text-align: center;
32
- border-radius: 5px;
33
- margin: 0 2px;
34
- background-color: #f1eee8;
35
- border: 0;
36
- color: #000;
37
- padding: 0;
38
- cursor: pointer;
39
- }
40
 
41
  .tiwlform-number-container button:hover {
42
- background-color: #96b100;
43
- color: #FFF;
44
- }
45
 
46
  /*
47
  on off button
@@ -50,336 +45,303 @@ on off button
50
  display: none;
51
  }*/
52
  .tiwlform-onoff-container {
53
- cursor: pointer;
54
- position: relative;
55
- display: inline-block;
56
- height: 36px;
57
- width: 132px;
58
- margin: 0;
59
- border-radius: 3px;
60
- box-shadow: inset 1px 1px 6px 0 rgba(170, 157, 137, .16);
61
- transition: all .3s ease-in-out;
62
-
63
- border: 1px solid #eae6df;
64
- background: #f1eee8;
65
- }
66
 
67
  .tiwlform-onoff-container.disabled.checked {
68
- /*-webkit-box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);
69
  box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);*/
70
- border-color: rgba(0, 0, 0, 0.4);
71
- background-color: rgba(0, 0, 0, 0.4);
72
- }
73
 
74
  .tiwlform-onoff-container.disabled .tiwlform-onoff-button {
75
- color: rgba(0, 0, 0, 0.4) !important;
76
- }
77
 
78
  .tiwlform-onoff-container.checked {
79
- /*-webkit-box-shadow: inset 0 0 0 36px #96b100;
80
  box-shadow: inset 0 0 0 36px #96b100;*/
81
- background: #96b100;
82
- border-color: #96b100;
83
- }
84
 
85
  .tiwlform-onoff-container.checked .tiwlform-onoff-button {
86
- left: 4px;
87
- color: #96b100;
88
- }
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
- border-radius: 3px;
111
- box-shadow: 1px 1px 4px 0 rgba(2, 2, 2, .21);
112
- transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
113
-
114
- color: #6b625a;
115
- background: #fff;
116
- }
117
 
118
  .tiwlform-onoff-container .tiwlform-onoff-button:before {
119
- content: "\e91e";
120
- font-size: 11px;
121
- font-family: 'tinvwl-webfont';
122
- }
123
 
124
  .tiwlform-onoff-container.checked .tiwlform-onoff-button:before {
125
- content: "\e91e";
126
- font-family: 'tinvwl-webfont';
127
- }
128
 
129
  .tiwlform-onoff-container.disabled {
130
- background-color: rgba(0, 0, 0, 0.4);
131
- }
132
 
133
  /*
134
  input range
135
  */
136
  .tiwlform-range-container {
137
- padding-top: 25px;
138
- height: 50px;
139
- }
140
 
141
  .tiwlform-range-container .range {
142
- width: 100%;
143
- position: relative;
144
- }
145
 
146
  .tiwlform-range-container input[type=text] {
147
- display: none;
148
- }
149
 
150
  .tiwlform-range-container .line {
151
- margin: 0 5%;
152
- width: 90%;
153
- height: 4px;
154
- top: -14px;
155
- background-color: #ede8df;
156
- position: absolute;
157
-
158
- }
159
 
160
  .tiwlform-range-container .line .selector {
161
- position: absolute;
162
- z-index: 100;
163
- width: 15px;
164
- height: 15px;
165
- background: #fff;
166
- border: 5px solid #96b100;
167
- border-radius: 50%;
168
- top: -10px;
169
- right: -12.5px;
170
- cursor: pointer;
171
- }
172
 
173
  .tiwlform-range-container .line-selector {
174
- width: 0;
175
- background-color: #96b100;
176
- height: 6px;
177
- top: -15px;
178
- }
179
 
180
  .tiwlform-range-container .label {
181
- display: -ms-flexbox;
182
- display: -webkit-flex;
183
- display: flex;
184
- list-style: outside none none;
185
- padding: 0;
186
- }
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
 
204
  .tiwlform-range-container .label li.active {
205
- font-weight: 600;
206
- }
207
 
208
  .tiwlform-range-container .label li.preactive::before {
209
- background: #96b100;
210
- width: 25px;
211
- height: 25px;
212
- top: -25px;
213
- }
214
 
215
  .tiwlform-range-container .label li::before {
216
- position: absolute;
217
- top: -20px;
218
- right: 0;
219
- left: 0;
220
- content: "";
221
- margin: 0 auto;
222
- width: 15px;
223
- height: 15px;
224
- background: #ede8df;
225
- border-radius: 50%;
226
- }
227
 
228
  /*
229
  multi radio box
230
  */
231
  .tiwlform-multirbox input {
232
- display: none;
233
- }
234
 
235
  .tiwlform-multirbox {
236
- border-radius: 3px;
237
- border: 1px solid #eae6df;
238
- box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
239
- display: inline-block;
240
- margin: 2px;
241
- position: relative;
242
- }
243
 
244
  .tiwlform-multirbox label {
245
- display: inline-block;
246
- font-weight: normal;
247
- color: #948d84;
248
- margin: 0;
249
- line-height: 26px;
250
- vertical-align: middle;
251
- padding: 5px 10px;
252
- height: 26px;
253
- }
254
 
255
  .tiwlform-multirbox label.checked {
256
- box-shadow: inset 0 0 0 36px #96b100;
257
- color: #FFF;
258
- border-radius: 3px;
259
- }
260
 
261
  .tiwlform-multirbox label .dashicons {
262
- line-height: 26px;
263
- }
264
 
265
  .tinvwl-multicheckbox {
266
- border: 1px solid #dbdbdb;
267
- border-radius: 3px;
268
- box-shadow: 0 0 10px rgba(0, 0, 0, .1) inset;
269
- margin: 2px;
270
- }
271
 
272
  .tinvwl-multicheckbox ul {
273
- height: 208px;
274
- overflow: auto;
275
- margin: 0;
276
- padding: 0 12px;
277
- }
278
 
279
  .tinvwl-multicheckbox li {
280
- height: 30px;
281
- }
282
 
283
  .tinvwl-multicheckbox label {
284
- width: 100%;
285
- display: inline-block;
286
- font-weight: normal;
287
- }
288
 
289
  .tinvwl-multicheckbox input {
290
- margin-right: 13px;
291
- }
292
 
293
  .tinvwl-multicheckbox > .tinvwl-before {
294
- background-color: #fbfaf9;
295
- border-bottom: 1px solid #dbdbdb;
296
- padding: 7px;
297
- }
298
 
299
  .tinvwl-multicheckbox > .tinvwl-after {
300
- background-color: #fbfaf9;
301
- border-top: 1px solid #dbdbdb;
302
- padding: 7px;
303
- }
304
 
305
  .tinvwl-targeting-box {
306
- display: -ms-flexbox;
307
- display: -webkit-flex;
308
- display: flex;
309
- padding-top: 28px;
310
- }
311
 
312
  .tinvwl-targeting-box-action {
313
- display: none;
314
- }
315
 
316
  .tinvwl-targeting-box .selector {
317
- -moz-flex: 1 1 50%;
318
- -webkit-flex: 1 1 50%;
319
- -ms-flex: 1 1 50%;
320
- flex: 1 1 50%;
321
- padding-right: 20px;
322
- }
323
 
324
  .tinvwl-targeting-box .selector div + div {
325
- margin-top: 6px;
326
- }
327
 
328
  .tinvwl-targeting-box .zone {
329
- -moz-flex: 1 1 50%;
330
- -webkit-flex: 1 1 50%;
331
- -ms-flex: 1 1 50%;
332
- flex: 1 1 50%;
333
- background-color: #fbfaf9;
334
- border-radius: 3px;
335
- position: relative;
336
- margin: 2px;
337
- padding: 0;
338
- }
339
 
340
  .tinvwl-targeting-box .inner {
341
- margin: 0;
342
- padding: 20px;
343
- overflow: auto;
344
- border-radius: 3px;
345
- min-height: 42px;
346
- }
347
 
348
  .tinvwl-targeting-box .filter-field, .tinvwl-targeting-box .tinvwl-multicheckbox {
349
- width: 100%;
350
- }
351
 
352
  .tinvwl-targeting-box .zone > .tinvwl-after {
353
- background-color: #f4f2ee;
354
- border-top: 1px solid #fbfaf9;
355
- padding: 7px;
356
- margin: 0;
357
- position: absolute;
358
- border-radius: 0 0 3px 3px;
359
- bottom: 0;
360
- left: 0;
361
- right: 0;
362
- }
363
 
364
  .tinvwl-targeting-box .action-bth {
365
- background-color: #FFF;
366
- color: #000;
367
- border: 1px solid #dbdbdb;
368
- font-weight: normal;
369
- text-align: center;
370
- }
371
 
372
  .tinvwl-targeting-box .action-bth:hover {
373
- background-color: #96b100;
374
- color: #FFF;
375
- }
376
 
377
  .tinvwl-numberrange {
378
- width: 100%;
379
- }
380
 
381
  .tinvwl-numberrange .range {
382
- position: relative;
383
- width: 100%;
384
- height: 5px;
385
- }
 
 
 
 
 
 
2
  number input
3
  */
4
  .tiwlform-number-container {
5
+ display: inline-block;
6
+ margin: 2px;
7
+ position: relative;
8
+ vertical-align: middle; }
 
9
 
10
  .tiwlform-number-container input, .tiwlform-number-container button {
11
+ margin: 0;
12
+ font-weight: 800;
13
+ display: inline-block;
14
+ font-size: 14px; }
 
15
 
16
  .tiwlform-number-container input[type=text] {
17
+ width: 50px;
18
+ height: 36px;
19
+ text-align: right;
20
+ border-radius: 5px;
21
+ line-height: 26px;
22
+ margin: 0; }
 
23
 
24
  .tiwlform-number-container button {
25
+ width: 20px;
26
+ height: 38px;
27
+ line-height: 38px;
28
+ text-align: center;
29
+ border-radius: 5px;
30
+ margin: 0 2px;
31
+ background-color: #f1eee8;
32
+ border: 0;
33
+ color: #000;
34
+ padding: 0;
35
+ cursor: pointer; }
 
36
 
37
  .tiwlform-number-container button:hover {
38
+ background-color: #96b100;
39
+ color: #FFF; }
 
40
 
41
  /*
42
  on off button
45
  display: none;
46
  }*/
47
  .tiwlform-onoff-container {
48
+ cursor: pointer;
49
+ position: relative;
50
+ display: inline-block;
51
+ height: 36px;
52
+ width: 132px;
53
+ margin: 0;
54
+ border-radius: 3px;
55
+ -webkit-box-shadow: inset 1px 1px 6px 0 rgba(170, 157, 137, 0.16);
56
+ box-shadow: inset 1px 1px 6px 0 rgba(170, 157, 137, 0.16);
57
+ -webkit-transition: all .3s ease-in-out;
58
+ transition: all .3s ease-in-out;
59
+ border: 1px solid #eae6df;
60
+ background: #f1eee8; }
61
 
62
  .tiwlform-onoff-container.disabled.checked {
63
+ /*-webkit-box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);
64
  box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);*/
65
+ border-color: rgba(0, 0, 0, 0.4);
66
+ background-color: rgba(0, 0, 0, 0.4); }
 
67
 
68
  .tiwlform-onoff-container.disabled .tiwlform-onoff-button {
69
+ color: rgba(0, 0, 0, 0.4) !important; }
 
70
 
71
  .tiwlform-onoff-container.checked {
72
+ /*-webkit-box-shadow: inset 0 0 0 36px #96b100;
73
  box-shadow: inset 0 0 0 36px #96b100;*/
74
+ background: #96b100;
75
+ border-color: #96b100; }
 
76
 
77
  .tiwlform-onoff-container.checked .tiwlform-onoff-button {
78
+ left: 4px;
79
+ color: #96b100; }
 
80
 
81
  .tiwlform-onoff-container .tiwlform-onoff-button {
82
+ display: inline-block;
83
+ /*font-size: 21px;
84
  line-height: 21px;
85
  font-weight: 600;
86
  font-family: dashicons;*/
87
+ font: normal normal normal 14px/1 FontAwesome;
88
+ font-size: inherit;
89
+ text-rendering: auto;
90
+ -webkit-font-smoothing: antialiased;
91
+ -moz-osx-font-smoothing: grayscale;
92
+ position: absolute;
93
+ top: 3px;
94
+ left: 66px;
95
+ width: 59px;
96
+ height: 27px;
97
+ line-height: 18px;
98
+ padding: 4px;
99
+ text-align: center;
100
+ border-radius: 3px;
101
+ -webkit-box-shadow: 1px 1px 4px 0 rgba(2, 2, 2, 0.21);
102
+ box-shadow: 1px 1px 4px 0 rgba(2, 2, 2, 0.21);
103
+ -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
104
+ transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);
105
+ color: #6b625a;
106
+ background: #fff; }
 
107
 
108
  .tiwlform-onoff-container .tiwlform-onoff-button:before {
109
+ content: "\e905";
110
+ font-size: 20px;
111
+ font-family: 'tinvwl-webfont'; }
 
112
 
113
  .tiwlform-onoff-container.checked .tiwlform-onoff-button:before {
114
+ content: "\e91e";
115
+ font-size: 11px;
116
+ font-family: 'tinvwl-webfont'; }
117
 
118
  .tiwlform-onoff-container.disabled {
119
+ background-color: rgba(0, 0, 0, 0.4); }
 
120
 
121
  /*
122
  input range
123
  */
124
  .tiwlform-range-container {
125
+ padding-top: 25px;
126
+ height: 50px; }
 
127
 
128
  .tiwlform-range-container .range {
129
+ width: 100%;
130
+ position: relative; }
 
131
 
132
  .tiwlform-range-container input[type=text] {
133
+ display: none; }
 
134
 
135
  .tiwlform-range-container .line {
136
+ margin: 0 5%;
137
+ width: 90%;
138
+ height: 4px;
139
+ top: -14px;
140
+ background-color: #ede8df;
141
+ position: absolute; }
 
 
142
 
143
  .tiwlform-range-container .line .selector {
144
+ position: absolute;
145
+ z-index: 100;
146
+ width: 15px;
147
+ height: 15px;
148
+ background: #fff;
149
+ border: 5px solid #96b100;
150
+ border-radius: 50%;
151
+ top: -10px;
152
+ right: -12.5px;
153
+ cursor: pointer; }
 
154
 
155
  .tiwlform-range-container .line-selector {
156
+ width: 0;
157
+ background-color: #96b100;
158
+ height: 6px;
159
+ top: -15px; }
 
160
 
161
  .tiwlform-range-container .label {
162
+ display: -ms-flexbox;
163
+ display: -webkit-box;
164
+ display: flex;
165
+ list-style: outside none none;
166
+ padding: 0; }
 
167
 
168
  .tiwlform-range-container .label li {
169
+ -moz-flex: 1 1;
170
+ -ms-flex: 1 1;
171
+ -webkit-box-flex: 1;
172
+ flex: 1 1;
173
+ position: relative;
174
+ float: left;
175
+ text-align: center;
176
+ color: #000;
177
+ padding: 10px 0;
178
+ font-size: 14px;
179
+ line-height: 14px;
180
+ cursor: pointer;
181
+ margin: 0; }
 
182
 
183
  .tiwlform-range-container .label li.active {
184
+ font-weight: 600; }
 
185
 
186
  .tiwlform-range-container .label li.preactive::before {
187
+ background: #96b100;
188
+ width: 25px;
189
+ height: 25px;
190
+ top: -25px; }
 
191
 
192
  .tiwlform-range-container .label li::before {
193
+ position: absolute;
194
+ top: -20px;
195
+ right: 0;
196
+ left: 0;
197
+ content: "";
198
+ margin: 0 auto;
199
+ width: 15px;
200
+ height: 15px;
201
+ background: #ede8df;
202
+ border-radius: 50%; }
 
203
 
204
  /*
205
  multi radio box
206
  */
207
  .tiwlform-multirbox input {
208
+ display: none; }
 
209
 
210
  .tiwlform-multirbox {
211
+ border-radius: 3px;
212
+ border: 1px solid #eae6df;
213
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
214
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
215
+ display: inline-block;
216
+ margin: 2px;
217
+ position: relative; }
218
 
219
  .tiwlform-multirbox label {
220
+ display: inline-block;
221
+ font-weight: normal;
222
+ color: #948d84;
223
+ margin: 0;
224
+ line-height: 26px;
225
+ vertical-align: middle;
226
+ padding: 5px 10px;
227
+ height: 26px; }
 
228
 
229
  .tiwlform-multirbox label.checked {
230
+ -webkit-box-shadow: inset 0 0 0 36px #96b100;
231
+ box-shadow: inset 0 0 0 36px #96b100;
232
+ color: #FFF;
233
+ border-radius: 3px; }
234
 
235
  .tiwlform-multirbox label .dashicons {
236
+ line-height: 26px; }
 
237
 
238
  .tinvwl-multicheckbox {
239
+ border: 1px solid #dbdbdb;
240
+ border-radius: 3px;
241
+ -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
242
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;
243
+ margin: 2px; }
244
 
245
  .tinvwl-multicheckbox ul {
246
+ height: 208px;
247
+ overflow: auto;
248
+ margin: 0;
249
+ padding: 0 12px; }
 
250
 
251
  .tinvwl-multicheckbox li {
252
+ height: 30px; }
 
253
 
254
  .tinvwl-multicheckbox label {
255
+ width: 100%;
256
+ display: inline-block;
257
+ font-weight: normal; }
 
258
 
259
  .tinvwl-multicheckbox input {
260
+ margin-right: 13px; }
 
261
 
262
  .tinvwl-multicheckbox > .tinvwl-before {
263
+ background-color: #fbfaf9;
264
+ border-bottom: 1px solid #dbdbdb;
265
+ padding: 7px; }
 
266
 
267
  .tinvwl-multicheckbox > .tinvwl-after {
268
+ background-color: #fbfaf9;
269
+ border-top: 1px solid #dbdbdb;
270
+ padding: 7px; }
 
271
 
272
  .tinvwl-targeting-box {
273
+ display: -ms-flexbox;
274
+ display: -webkit-box;
275
+ display: flex;
276
+ padding-top: 28px; }
 
277
 
278
  .tinvwl-targeting-box-action {
279
+ display: none; }
 
280
 
281
  .tinvwl-targeting-box .selector {
282
+ -moz-flex: 1 1 50%;
283
+ -ms-flex: 1 1 50%;
284
+ -webkit-box-flex: 1;
285
+ flex: 1 1 50%;
286
+ padding-right: 20px; }
 
287
 
288
  .tinvwl-targeting-box .selector div + div {
289
+ margin-top: 6px; }
 
290
 
291
  .tinvwl-targeting-box .zone {
292
+ -moz-flex: 1 1 50%;
293
+ -ms-flex: 1 1 50%;
294
+ -webkit-box-flex: 1;
295
+ flex: 1 1 50%;
296
+ background-color: #fbfaf9;
297
+ border-radius: 3px;
298
+ position: relative;
299
+ margin: 2px;
300
+ padding: 0; }
 
301
 
302
  .tinvwl-targeting-box .inner {
303
+ margin: 0;
304
+ padding: 20px;
305
+ overflow: auto;
306
+ border-radius: 3px;
307
+ min-height: 42px; }
 
308
 
309
  .tinvwl-targeting-box .filter-field, .tinvwl-targeting-box .tinvwl-multicheckbox {
310
+ width: 100%; }
 
311
 
312
  .tinvwl-targeting-box .zone > .tinvwl-after {
313
+ background-color: #f4f2ee;
314
+ border-top: 1px solid #fbfaf9;
315
+ padding: 7px;
316
+ margin: 0;
317
+ position: absolute;
318
+ border-radius: 0 0 3px 3px;
319
+ bottom: 0;
320
+ left: 0;
321
+ right: 0; }
 
322
 
323
  .tinvwl-targeting-box .action-bth {
324
+ background-color: #FFF;
325
+ color: #000;
326
+ border: 1px solid #dbdbdb;
327
+ font-weight: normal;
328
+ text-align: center; }
 
329
 
330
  .tinvwl-targeting-box .action-bth:hover {
331
+ background-color: #96b100;
332
+ color: #FFF; }
 
333
 
334
  .tinvwl-numberrange {
335
+ width: 100%; }
 
336
 
337
  .tinvwl-numberrange .range {
338
+ position: relative;
339
+ width: 100%;
340
+ height: 5px; }
341
+
342
+ /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tZm9ybS5jc3MiLCJzb3VyY2VzIjpbImFkbWluLWZvcm0uY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztFQUVFO0FBQ0YsQUFBQSwwQkFBMEIsQ0FBQztFQUMxQixPQUFPLEVBQUUsWUFBWTtFQUNyQixNQUFNLEVBQUUsR0FBRztFQUNYLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLGNBQWMsRUFBRSxNQUFNLEdBQ3RCOztBQUVELEFBQUEsMEJBQTBCLENBQUMsS0FBSyxFQUFFLDBCQUEwQixDQUFDLE1BQU0sQ0FBQztFQUNuRSxNQUFNLEVBQUUsQ0FBQztFQUNULFdBQVcsRUFBRSxHQUFHO0VBQ2hCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLFNBQVMsRUFBRSxJQUFJLEdBQ2Y7O0FBRUQsQUFBQSwwQkFBMEIsQ0FBQyxLQUFLLENBQUEsQUFBQSxJQUFDLENBQUQsSUFBQyxBQUFBLEVBQVc7RUFDM0MsS0FBSyxFQUFFLElBQUk7RUFDWCxNQUFNLEVBQUUsSUFBSTtFQUNaLFVBQVUsRUFBRSxLQUFLO0VBQ2pCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLE1BQU0sRUFBRSxDQUFDLEdBQ1Q7O0FBRUQsQUFBQSwwQkFBMEIsQ0FBQyxNQUFNLENBQUM7RUFDakMsS0FBSyxFQUFFLElBQUk7RUFDWCxNQUFNLEVBQUUsSUFBSTtFQUNaLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLE1BQU0sRUFBRSxLQUFLO0VBQ2IsZ0JBQWdCLEVBQUUsT0FBTztFQUN6QixNQUFNLEVBQUUsQ0FBQztFQUNULEtBQUssRUFBRSxJQUFJO0VBQ1gsT0FBTyxFQUFFLENBQUM7RUFDVixNQUFNLEVBQUUsT0FBTyxHQUNmOztBQUVELEFBQUEsMEJBQTBCLENBQUMsTUFBTSxBQUFBLE1BQU0sQ0FBQztFQUN2QyxnQkFBZ0IsRUFBRSxPQUFPO0VBQ3pCLEtBQUssRUFBRSxJQUFJLEdB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 */
343
+ /*# sourceMappingURL=admin-form.css.map */
344
+
345
+ /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tZm9ybS5jc3MiLCJzb3VyY2VzIjpbImFkbWluLWZvcm0uY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztFQUVFO0FBQ0YsQUFBQSwwQkFBMEIsQ0FBQztFQUN6QixPQUFPLEVBQUUsWUFBWTtFQUNyQixNQUFNLEVBQUUsR0FBRztFQUNYLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLGNBQWMsRUFBRSxNQUFNLEdBQUc7O0FBRTNCLEFBQUEsMEJBQTBCLENBQUMsS0FBSyxFQUFFLDBCQUEwQixDQUFDLE1BQU0sQ0FBQztFQUNsRSxNQUFNLEVBQUUsQ0FBQztFQUNULFdBQVcsRUFBRSxHQUFHO0VBQ2hCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLFNBQVMsRUFBRSxJQUFJLEdBQUc7O0FBRXBCLEFBQUEsMEJBQTBCLENBQUMsS0FBSyxDQUFBLEFBQUEsSUFBQyxDQUFELElBQUMsQUFBQSxFQUFXO0VBQzFDLEtBQUssRUFBRSxJQUFJO0VBQ1gsTUFBTSxFQUFFLElBQUk7RUFDWixVQUFVLEVBQUUsS0FBSztFQUNqQixhQUFhLEVBQUUsR0FBRztFQUNsQixXQUFXLEVBQUUsSUFBSTtFQUNqQixNQUFNLEVBQUUsQ0FBQyxHQUFHOztBQUVkLEFBQUEsMEJBQTBCLENBQUMsTUFBTSxDQUFDO0VBQ2hDLEtBQUssRUFBRSxJQUFJO0VBQ1gsTUFBTSxFQUFFLElBQUk7RUFDWixXQUFXLEVBQUUsSUFBSTtFQUNqQixVQUFVLEVBQUUsTUFBTTtFQUNsQixhQUFhLEVBQUUsR0FBRztFQUNsQixNQUFNLEVBQUUsS0FBSztFQUNiLGdCQUFnQixFQUFFLE9BQU87RUFDekIsTUFBTSxFQUFFLENBQUM7RUFDVCxLQUFLLEVBQUUsSUFBSTtFQUNYLE9BQU8sRUFBRSxDQUFDO0VBQ1YsTUFBTSxFQUFFLE9BQU8sR0FBRzs7QUFFcEIsQUFBQSwwQkFBMEIsQ0FBQyxNQUFNLEFBQUEsTUFBTSxDQUFDO0VBQ3RDLGdCQUFnQixFQUFFLE9BQU87RUFDekIsS0FBSyxFQUFFLElBQUks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 */
346
+
347
+ /*# sourceMappingURL=admin-form.css.map */
assets/css/admin-form.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["admin-form.css"],"names":[],"mappings":"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","file":"admin-form.css","sourcesContent":["/*\nnumber input\n*/\n.tiwlform-number-container {\n display: inline-block;\n margin: 2px;\n position: relative;\n vertical-align: middle; }\n\n.tiwlform-number-container input, .tiwlform-number-container button {\n margin: 0;\n font-weight: 800;\n display: inline-block;\n font-size: 14px; }\n\n.tiwlform-number-container input[type=text] {\n width: 50px;\n height: 36px;\n text-align: right;\n border-radius: 5px;\n line-height: 26px;\n margin: 0; }\n\n.tiwlform-number-container button {\n width: 20px;\n height: 38px;\n line-height: 38px;\n text-align: center;\n border-radius: 5px;\n margin: 0 2px;\n background-color: #f1eee8;\n border: 0;\n color: #000;\n padding: 0;\n cursor: pointer; }\n\n.tiwlform-number-container button:hover {\n background-color: #96b100;\n color: #FFF; }\n\n/*\non off button\n*/\n/*.tiwlform-onoff-container input {\n display: none;\n}*/\n.tiwlform-onoff-container {\n cursor: pointer;\n position: relative;\n display: inline-block;\n height: 36px;\n width: 132px;\n margin: 0;\n border-radius: 3px;\n -webkit-box-shadow: inset 1px 1px 6px 0 rgba(170, 157, 137, 0.16);\n box-shadow: inset 1px 1px 6px 0 rgba(170, 157, 137, 0.16);\n -webkit-transition: all .3s ease-in-out;\n transition: all .3s ease-in-out;\n border: 1px solid #eae6df;\n background: #f1eee8; }\n\n.tiwlform-onoff-container.disabled.checked {\n /*-webkit-box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);\n box-shadow: inset 0 0 0 36px rgba(0,0,0,0.4);*/\n border-color: rgba(0, 0, 0, 0.4);\n background-color: rgba(0, 0, 0, 0.4); }\n\n.tiwlform-onoff-container.disabled .tiwlform-onoff-button {\n color: rgba(0, 0, 0, 0.4) !important; }\n\n.tiwlform-onoff-container.checked {\n /*-webkit-box-shadow: inset 0 0 0 36px #96b100;\n box-shadow: inset 0 0 0 36px #96b100;*/\n background: #96b100;\n border-color: #96b100; }\n\n.tiwlform-onoff-container.checked .tiwlform-onoff-button {\n left: 4px;\n color: #96b100; }\n\n.tiwlform-onoff-container .tiwlform-onoff-button {\n display: inline-block;\n /*font-size: 21px;\n line-height: 21px;\n font-weight: 600;\n font-family: dashicons;*/\n font: normal normal normal 14px/1 FontAwesome;\n font-size: inherit;\n text-rendering: auto;\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n position: absolute;\n top: 3px;\n left: 66px;\n width: 59px;\n height: 27px;\n line-height: 18px;\n padding: 4px;\n text-align: center;\n border-radius: 3px;\n -webkit-box-shadow: 1px 1px 4px 0 rgba(2, 2, 2, 0.21);\n box-shadow: 1px 1px 4px 0 rgba(2, 2, 2, 0.21);\n -webkit-transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);\n transition: all 350ms cubic-bezier(0, 0.89, 0.44, 1);\n color: #6b625a;\n background: #fff; }\n\n.tiwlform-onoff-container .tiwlform-onoff-button:before {\n content: \"\\e905\";\n font-size: 20px;\n font-family: 'tinvwl-webfont'; }\n\n.tiwlform-onoff-container.checked .tiwlform-onoff-button:before {\n content: \"\\e91e\";\n font-size: 11px;\n font-family: 'tinvwl-webfont'; }\n\n.tiwlform-onoff-container.disabled {\n background-color: rgba(0, 0, 0, 0.4); }\n\n/*\ninput range\n*/\n.tiwlform-range-container {\n padding-top: 25px;\n height: 50px; }\n\n.tiwlform-range-container .range {\n width: 100%;\n position: relative; }\n\n.tiwlform-range-container input[type=text] {\n display: none; }\n\n.tiwlform-range-container .line {\n margin: 0 5%;\n width: 90%;\n height: 4px;\n top: -14px;\n background-color: #ede8df;\n position: absolute; }\n\n.tiwlform-range-container .line .selector {\n position: absolute;\n z-index: 100;\n width: 15px;\n height: 15px;\n background: #fff;\n border: 5px solid #96b100;\n border-radius: 50%;\n top: -10px;\n right: -12.5px;\n cursor: pointer; }\n\n.tiwlform-range-container .line-selector {\n width: 0;\n background-color: #96b100;\n height: 6px;\n top: -15px; }\n\n.tiwlform-range-container .label {\n display: -ms-flexbox;\n display: -webkit-box;\n display: flex;\n list-style: outside none none;\n padding: 0; }\n\n.tiwlform-range-container .label li {\n -moz-flex: 1 1;\n -ms-flex: 1 1;\n -webkit-box-flex: 1;\n flex: 1 1;\n position: relative;\n float: left;\n text-align: center;\n color: #000;\n padding: 10px 0;\n font-size: 14px;\n line-height: 14px;\n cursor: pointer;\n margin: 0; }\n\n.tiwlform-range-container .label li.active {\n font-weight: 600; }\n\n.tiwlform-range-container .label li.preactive::before {\n background: #96b100;\n width: 25px;\n height: 25px;\n top: -25px; }\n\n.tiwlform-range-container .label li::before {\n position: absolute;\n top: -20px;\n right: 0;\n left: 0;\n content: \"\";\n margin: 0 auto;\n width: 15px;\n height: 15px;\n background: #ede8df;\n border-radius: 50%; }\n\n/*\nmulti radio box\n*/\n.tiwlform-multirbox input {\n display: none; }\n\n.tiwlform-multirbox {\n border-radius: 3px;\n border: 1px solid #eae6df;\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;\n display: inline-block;\n margin: 2px;\n position: relative; }\n\n.tiwlform-multirbox label {\n display: inline-block;\n font-weight: normal;\n color: #948d84;\n margin: 0;\n line-height: 26px;\n vertical-align: middle;\n padding: 5px 10px;\n height: 26px; }\n\n.tiwlform-multirbox label.checked {\n -webkit-box-shadow: inset 0 0 0 36px #96b100;\n box-shadow: inset 0 0 0 36px #96b100;\n color: #FFF;\n border-radius: 3px; }\n\n.tiwlform-multirbox label .dashicons {\n line-height: 26px; }\n\n.tinvwl-multicheckbox {\n border: 1px solid #dbdbdb;\n border-radius: 3px;\n -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;\n box-shadow: 0 0 10px rgba(0, 0, 0, 0.1) inset;\n margin: 2px; }\n\n.tinvwl-multicheckbox ul {\n height: 208px;\n overflow: auto;\n margin: 0;\n padding: 0 12px; }\n\n.tinvwl-multicheckbox li {\n height: 30px; }\n\n.tinvwl-multicheckbox label {\n width: 100%;\n display: inline-block;\n font-weight: normal; }\n\n.tinvwl-multicheckbox input {\n margin-right: 13px; }\n\n.tinvwl-multicheckbox > .tinvwl-before {\n background-color: #fbfaf9;\n border-bottom: 1px solid #dbdbdb;\n padding: 7px; }\n\n.tinvwl-multicheckbox > .tinvwl-after {\n background-color: #fbfaf9;\n border-top: 1px solid #dbdbdb;\n padding: 7px; }\n\n.tinvwl-targeting-box {\n display: -ms-flexbox;\n display: -webkit-box;\n display: flex;\n padding-top: 28px; }\n\n.tinvwl-targeting-box-action {\n display: none; }\n\n.tinvwl-targeting-box .selector {\n -moz-flex: 1 1 50%;\n -ms-flex: 1 1 50%;\n -webkit-box-flex: 1;\n flex: 1 1 50%;\n padding-right: 20px; }\n\n.tinvwl-targeting-box .selector div + div {\n margin-top: 6px; }\n\n.tinvwl-targeting-box .zone {\n -moz-flex: 1 1 50%;\n -ms-flex: 1 1 50%;\n -webkit-box-flex: 1;\n flex: 1 1 50%;\n background-color: #fbfaf9;\n border-radius: 3px;\n position: relative;\n margin: 2px;\n padding: 0; }\n\n.tinvwl-targeting-box .inner {\n margin: 0;\n padding: 20px;\n overflow: auto;\n border-radius: 3px;\n min-height: 42px; }\n\n.tinvwl-targeting-box .filter-field, .tinvwl-targeting-box .tinvwl-multicheckbox {\n width: 100%; }\n\n.tinvwl-targeting-box .zone > .tinvwl-after {\n background-color: #f4f2ee;\n border-top: 1px solid #fbfaf9;\n padding: 7px;\n margin: 0;\n position: absolute;\n border-radius: 0 0 3px 3px;\n bottom: 0;\n left: 0;\n right: 0; }\n\n.tinvwl-targeting-box .action-bth {\n background-color: #FFF;\n color: #000;\n border: 1px solid #dbdbdb;\n font-weight: normal;\n text-align: center; }\n\n.tinvwl-targeting-box .action-bth:hover {\n background-color: #96b100;\n color: #FFF; }\n\n.tinvwl-numberrange {\n width: 100%; }\n\n.tinvwl-numberrange .range {\n position: relative;\n width: 100%;\n height: 5px; }\n\n/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tZm9ybS5jc3MiLCJzb3VyY2VzIjpbImFkbWluLWZvcm0uY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBOztFQUVFO0FBQ0YsQUFBQSwwQkFBMEIsQ0FBQztFQUMxQixPQUFPLEVBQUUsWUFBWTtFQUNyQixNQUFNLEVBQUUsR0FBRztFQUNYLFFBQVEsRUFBRSxRQUFRO0VBQ2xCLGNBQWMsRUFBRSxNQUFNLEdBQ3RCOztBQUVELEFBQUEsMEJBQTBCLENBQUMsS0FBSyxFQUFFLDBCQUEwQixDQUFDLE1BQU0sQ0FBQztFQUNuRSxNQUFNLEVBQUUsQ0FBQztFQUNULFdBQVcsRUFBRSxHQUFHO0VBQ2hCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLFNBQVMsRUFBRSxJQUFJLEdBQ2Y7O0FBRUQsQUFBQSwwQkFBMEIsQ0FBQyxLQUFLLENBQUEsQUFBQSxJQUFDLENBQUQsSUFBQyxBQUFBLEVBQVc7RUFDM0MsS0FBSyxFQUFFLElBQUk7RUFDWCxNQUFNLEVBQUUsSUFBSTtFQUNaLFVBQVUsRUFBRSxLQUFLO0VBQ2pCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLE1BQU0sRUFBRSxDQUFDLEdBQ1Q7O0FBRUQsQUFBQSwwQkFBMEIsQ0FBQyxNQUFNLENBQUM7RUFDakMsS0FBSyxFQUFFLElBQUk7RUFDWCxNQUFNLEVBQUUsSUFBSTtFQUNaLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLE1BQU0sRUFBRSxLQUFLO0VBQ2IsZ0JBQWdCLEVBQUUsT0FBTztFQUN6QixNQUFNLEVBQUUsQ0FBQztFQUNULEtBQUssRUFBRSxJQUFJO0VBQ1gsT0FBTyxFQUFFLENBQUM7RUFDVixNQUFNLEVBQUUsT0FBTyxHQUNmOztBQUVELEFBQUEsMEJBQTBCLENBQUMsTUFBTSxBQUFBLE1BQU0sQ0FBQztFQUN2QyxnQkFBZ0IsRUFBRSxPQUFPO0VBQ3pCLEtBQUssRUFBRSxJQUFJLEdB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 */\n\n/*# sourceMappingURL=admin-form.css.map */\n"]}
assets/css/admin-form.min.css CHANGED
@@ -1,6 +1,54 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.9.16
2
- * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
- * Copyright (c) 2019;
4
- * Licensed GPLv2+ */
5
-
6
- .tiwlform-number-container{display:inline-block;margin:2px;position:relative;vertical-align:middle}.tiwlform-number-container button,.tiwlform-number-container input{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{cursor:pointer;position:relative;display:inline-block;height:36px;width:132px;margin:0;border-radius:3px;box-shadow:inset 1px 1px 6px 0 rgba(170,157,137,.16);transition:all .3s ease-in-out;border:1px solid #eae6df;background:#f1eee8}.tiwlform-onoff-container.disabled.checked{border-color:rgba(0,0,0,.4);background-color:rgba(0,0,0,.4)}.tiwlform-onoff-container.disabled .tiwlform-onoff-button{color:rgba(0,0,0,.4)!important}.tiwlform-onoff-container.checked{background:#96b100;border-color:#96b100}.tiwlform-onoff-container.checked .tiwlform-onoff-button{left:4px;color:#96b100}.tiwlform-onoff-container .tiwlform-onoff-button{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;position:absolute;top:3px;left:66px;width:59px;height:27px;line-height:18px;padding:4px;text-align:center;border-radius:3px;box-shadow:1px 1px 4px 0 rgba(2,2,2,.21);transition:all 350ms cubic-bezier(0,.89,.44,1);color:#6b625a;background:#fff}.tiwlform-onoff-container .tiwlform-onoff-button:before{content:"\e91e";font-size:11px;font-family:tinvwl-webfont}.tiwlform-onoff-container.checked .tiwlform-onoff-button:before{content:"\e91e";font-family:tinvwl-webfont}.tiwlform-onoff-container.disabled{background-color:rgba(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:-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:400;color:#948d84;margin:0;line-height:26px;vertical-align:middle;padding:5px 10px;height:26px}.tiwlform-multirbox label.checked{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:400}.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:-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:400;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}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
+ * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
+ */
6
+ .tiwlform-number-container{display:inline-block;margin:2px;position:relative;vertical-align:middle}
7
+ .tiwlform-number-container input,.tiwlform-number-container button{margin:0;font-weight:800;display:inline-block;font-size:14px}
8
+ .tiwlform-number-container input[type=text]{width:50px;height:36px;text-align:right;border-radius:5px;line-height:26px;margin:0}
9
+ .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}
10
+ .tiwlform-number-container button:hover{background-color:#96b100;color:#FFF}
11
+ .tiwlform-onoff-container{cursor:pointer;position:relative;display:inline-block;height:36px;width:132px;margin:0;border-radius:3px;-webkit-box-shadow:inset 1px 1px 6px 0 rgba(170,157,137,0.16);box-shadow:inset 1px 1px 6px 0 rgba(170,157,137,0.16);-webkit-transition:all .3s ease-in-out;transition:all .3s ease-in-out;border:1px solid #eae6df;background:#f1eee8}
12
+ .tiwlform-onoff-container.disabled.checked{border-color:rgba(0,0,0,0.4);background-color:rgba(0,0,0,0.4)}
13
+ .tiwlform-onoff-container.disabled .tiwlform-onoff-button{color:rgba(0,0,0,0.4) !important}
14
+ .tiwlform-onoff-container.checked{background:#96b100;border-color:#96b100}
15
+ .tiwlform-onoff-container.checked .tiwlform-onoff-button{left:4px;color:#96b100}
16
+ .tiwlform-onoff-container .tiwlform-onoff-button{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;position:absolute;top:3px;left:66px;width:59px;height:27px;line-height:18px;padding:4px;text-align:center;border-radius:3px;-webkit-box-shadow:1px 1px 4px 0 rgba(2,2,2,0.21);box-shadow:1px 1px 4px 0 rgba(2,2,2,0.21);-webkit-transition:all 350ms cubic-bezier(0,0.89,0.44,1);transition:all 350ms cubic-bezier(0,0.89,0.44,1);color:#6b625a;background:#fff}
17
+ .tiwlform-onoff-container .tiwlform-onoff-button:before{content:"\e905";font-size:20px;font-family:'tinvwl-webfont'}
18
+ .tiwlform-onoff-container.checked .tiwlform-onoff-button:before{content:"\e91e";font-size:11px;font-family:'tinvwl-webfont'}
19
+ .tiwlform-onoff-container.disabled{background-color:rgba(0,0,0,0.4)}
20
+ .tiwlform-range-container{padding-top:25px;height:50px}
21
+ .tiwlform-range-container .range{width:100%;position:relative}
22
+ .tiwlform-range-container input[type=text]{display:none}
23
+ .tiwlform-range-container .line{margin:0 5%;width:90%;height:4px;top:-14px;background-color:#ede8df;position:absolute}
24
+ .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}
25
+ .tiwlform-range-container .line-selector{width:0;background-color:#96b100;height:6px;top:-15px}
26
+ .tiwlform-range-container .label{display:-ms-flexbox;display:-webkit-box;display:flex;list-style:outside none none;padding:0}
27
+ .tiwlform-range-container .label li{-moz-flex:1 1;-ms-flex:1 1;-webkit-box-flex: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}
28
+ .tiwlform-range-container .label li.active{font-weight:600}
29
+ .tiwlform-range-container .label li.preactive::before{background:#96b100;width:25px;height:25px;top:-25px}
30
+ .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%}
31
+ .tiwlform-multirbox input{display:none}
32
+ .tiwlform-multirbox{border-radius:3px;border:1px solid #eae6df;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1) inset;box-shadow:0 0 10px rgba(0,0,0,0.1) inset;display:inline-block;margin:2px;position:relative}
33
+ .tiwlform-multirbox label{display:inline-block;font-weight:normal;color:#948d84;margin:0;line-height:26px;vertical-align:middle;padding:5px 10px;height:26px}
34
+ .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}
35
+ .tiwlform-multirbox label .dashicons{line-height:26px}
36
+ .tinvwl-multicheckbox{border:1px solid #dbdbdb;border-radius:3px;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.1) inset;box-shadow:0 0 10px rgba(0,0,0,0.1) inset;margin:2px}
37
+ .tinvwl-multicheckbox ul{height:208px;overflow:auto;margin:0;padding:0 12px}
38
+ .tinvwl-multicheckbox li{height:30px}
39
+ .tinvwl-multicheckbox label{width:100%;display:inline-block;font-weight:normal}
40
+ .tinvwl-multicheckbox input{margin-right:13px}
41
+ .tinvwl-multicheckbox>.tinvwl-before{background-color:#fbfaf9;border-bottom:1px solid #dbdbdb;padding:7px}
42
+ .tinvwl-multicheckbox>.tinvwl-after{background-color:#fbfaf9;border-top:1px solid #dbdbdb;padding:7px}
43
+ .tinvwl-targeting-box{display:-ms-flexbox;display:-webkit-box;display:flex;padding-top:28px}
44
+ .tinvwl-targeting-box-action{display:none}
45
+ .tinvwl-targeting-box .selector{-moz-flex:1 1 50%;-ms-flex:1 1 50%;-webkit-box-flex:1;flex:1 1 50%;padding-right:20px}
46
+ .tinvwl-targeting-box .selector div+div{margin-top:6px}
47
+ .tinvwl-targeting-box .zone{-moz-flex:1 1 50%;-ms-flex:1 1 50%;-webkit-box-flex:1;flex:1 1 50%;background-color:#fbfaf9;border-radius:3px;position:relative;margin:2px;padding:0}
48
+ .tinvwl-targeting-box .inner{margin:0;padding:20px;overflow:auto;border-radius:3px;min-height:42px}
49
+ .tinvwl-targeting-box .filter-field,.tinvwl-targeting-box .tinvwl-multicheckbox{width:100%}
50
+ .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}
51
+ .tinvwl-targeting-box .action-bth{background-color:#FFF;color:#000;border:1px solid #dbdbdb;font-weight:normal;text-align:center}
52
+ .tinvwl-targeting-box .action-bth:hover{background-color:#96b100;color:#FFF}
53
+ .tinvwl-numberrange{width:100%}
54
+ .tinvwl-numberrange .range{position:relative;width:100%;height:5px}
assets/css/admin-setup.css CHANGED
@@ -1,344 +1,278 @@
1
- html {
2
- background: #f6f3ed;
3
- }
4
-
5
- .tinvwl-wizard {
6
- max-width: 886px;
7
- margin: 107px auto;
8
- padding: 0;
9
- box-shadow: none;
10
- background: none;
11
- }
12
-
13
- .tinvwl-wizard .tinvwl-logo {
14
- text-align: center;
15
- margin-bottom: 10px;
16
- }
17
-
18
- .tinvwl-wizard .tinvwl-logo h2,
19
- .tinvwl-wizard .tinvwl-logo img {
20
- display: inline-block;
21
- vertical-align: middle;
22
- }
23
-
24
- .tinvwl-wizard .tinvwl-logo img + h2 {
25
- margin-left: 15px;
26
- }
27
-
28
- .tinvwl-wizard .tinvwl-logo h2 {
29
- font-size: 18px;
30
- font-weight: bold;
31
- text-transform: uppercase;
32
- line-height: 1.333;
33
- color: #3E3E3E;
34
- }
35
-
36
- .tinvwl-wizard .tinvwl-progress {
37
- text-align: center;
38
- }
39
-
40
- .tinvwl-wizard .tinvwl-progress ul {
41
- list-style: none;
42
- padding: 0;
43
- margin: 0;
44
- }
45
-
46
- .tinvwl-wizard .tinvwl-progress li {
47
- position: relative;
48
- display: inline-block;
49
- font-family: "Open Sans", Arial, sans-serif;
50
- font-size: 14px;
51
- font-weight: bold;
52
- line-height: 1.714;
53
- text-transform: uppercase;
54
- padding: 0 0 4px;
55
- margin-top: 20px;
56
- margin-right: 40px;
57
- color: rgba(62, 62, 62, .4);
58
- }
59
-
60
- .tinvwl-wizard .tinvwl-progress li:before {
61
- content: '';
62
- position: absolute;
63
- left: 0;
64
- bottom: -2px;
65
- width: calc( 100% + 50px );
66
- height: 2px;
67
- background: #e6e6e6;
68
- }
69
-
70
- .tinvwl-wizard .tinvwl-progress li:last-child:before {
71
- width: 100%;
72
- }
73
-
74
- .tinvwl-wizard .tinvwl-progress li.active {
75
- padding-right: 40px;
76
- margin-right: 0;
77
- color: rgb(62, 62, 62);
78
- }
79
-
80
- .tinvwl-wizard .tinvwl-progress li.active.last {
81
- padding-right: 0;
82
- margin-right: 40px;
83
- }
84
-
85
- .tinvwl-wizard .tinvwl-progress li:last-child.last.active {
86
- color: #869a00;
87
- }
88
-
89
- .tinvwl-wizard .tinvwl-progress li.active:after {
90
- content: '';
91
- position: absolute;
92
- left: 0;
93
- bottom: -2px;
94
- width: calc( 100% + 10px );
95
- height: 2px;
96
- background: #a9c203;
97
- }
98
-
99
- .tinvwl-wizard .tinvwl-progress li.last.active:after {
100
- width: 100%;
101
- }
102
-
103
- .tinvwl-wizard .tinvwl-progress li:last-child {
104
- padding-right: 0 !important;
105
- margin-right: 0 !important;
106
- }
107
-
108
- .tinvwl-wizard .tinvwl-content {
109
- font-family: Arial, sans-serif;
110
- font-size: 14px;
111
- line-height: 1.71428571;
112
- color: #4f4639;
113
- }
114
-
115
- .tinvwl-wizard .tinvwl-content .tinwl-inner {
116
- padding: 34px 42px 42px;
117
- margin-top: 36px;
118
- border-radius: 5px;
119
- background: #fff;
120
- box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
121
- }
122
-
123
- .tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner {
124
- padding: 40px 121px;
125
- }
126
-
127
- .tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner {
128
- padding: 40px 100px;
129
- }
130
-
131
- .tinvwl-wizard h1 {
132
- font-size: 36px;
133
- letter-spacing: -.025em;
134
- text-transform: uppercase;
135
- color: #291C09;
136
- }
137
-
138
- .tinvwl-wizard label {
139
- line-height: 1.429;
140
- }
141
-
142
- @media (min-width: 992px) {
143
- .tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label {
144
- padding-top: 10px;
145
- }
146
- }
147
-
148
- .tinvwl-wizard .tinvwl-title-wrap {
149
- }
150
-
151
- .tinvwl-wizard .tinvwl-title-wrap h1 {
152
- }
153
-
154
- .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-desc {
155
- margin-top: 12px;
156
- }
157
-
158
- .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-separator {
159
- margin-top: 20px;
160
- margin-bottom: 20px;
161
- }
162
-
163
- .tinvwl-wizard .tinvwl-skip {
164
- display: inline-block;
165
- font-size: 14px;
166
- color: rgba(75, 75, 75, 0.722);
167
- text-decoration: underline;
168
- line-height: 1.429;
169
- }
170
-
171
- .tinvwl-wizard .tinvwl-separator {
172
- display: block;
173
- width: 100%;
174
- height: 2px;
175
- margin: 24px 0;
176
- background: #ececec;
177
- }
178
-
179
- .tinvwl-wizard .tinvwl-separator + .form-horizontal,
180
- .tinvwl-wizard .form-horizontal + .tinvwl-separator {
181
- margin-top: 30px;
182
- }
183
-
184
- .tinvwl-wizard .row + .tinvwl-separator {
185
- margin-top: 0;
186
- }
187
-
188
- .tinvwl-wizard .form-group {
189
- margin-bottom: 20px;
190
- }
191
-
192
- .tinvwl-wizard .tinvwl-desc {
193
- font-family: "Open Sans", Arial, sans-serif;
194
- font-size: 16px;
195
- line-height: 1.875;
196
- margin-bottom: 24px;
197
- }
198
-
199
- .tinvwl-wizard .tinvwl-desc a {
200
- color: #4f4639;
201
- text-decoration: underline;
202
- }
203
-
204
- .tinvwl-wizard .tinvwl-desc a:hover,
205
- .tinvwl-wizard .tinvwl-desc a:active,
206
- .tinvwl-wizard .tinvwl-desc a:focus {
207
- color: #000;
208
- }
209
-
210
- .tinvwl-wizard .tinvwl-nav {
211
- margin: 30px 0 0;
212
- }
213
-
214
- .tinvwl-wizard .tinvwl-desc + .tinvwl-nav {
215
- margin: 55px 0 0;
216
- }
217
-
218
- .tinvwl-wizard .tinvwl-nav .tinvwl-btn {
219
- min-width: 147px;
220
- }
221
-
222
- .tinvwl-wizard .tinvwl-nav .tinvwl-next {
223
- float: right;
224
- }
225
-
226
- .tinvwl-wizard .tinvwl-nav .tinvwl-skip + .tinvwl-btn {
227
- margin-left: 26px;
228
- }
229
-
230
- .tinvwl-wizard .tinwl-intro,
231
- .tinvwl-wizard .tinwl-finish {
232
- text-align: center;
233
- }
234
-
235
- .tinvwl-wizard .tinwl-intro .tinvwl-title,
236
- .tinvwl-wizard .tinwl-finish .tinvwl-title {
237
- font-size: 48px;
238
- margin-bottom: 14px;
239
- }
240
-
241
- .tinvwl-wizard .tinwl-finish .tinvwl-title {
242
- margin-bottom: 33px;
243
- }
244
-
245
- .tinvwl-wizard .tinwl-intro .tinvwl-sub-title,
246
- .tinvwl-wizard .tinwl-finish .tinvwl-sub-title {
247
- font-size: 18px;
248
- font-weight: 600;
249
- text-transform: uppercase;
250
- line-height: 1.167;
251
- letter-spacing: -.025em;
252
- margin-bottom: 0;
253
- color: #B2B2B2;
254
- }
255
-
256
- .tinvwl-wizard .tinwl-intro .tinvwl-thumb {
257
- margin-bottom: 16px;
258
- }
259
-
260
- .tinvwl-wizard .tinwl-intro .tinvwl-desc {
261
- margin-bottom: 21px;
262
- }
263
-
264
- .tinvwl-wizard .tinwl-finish .tinvwl-desc {
265
- margin-bottom: 45px;
266
- }
267
-
268
- .tinvwl-wizard .tinwl-intro .tinvwl-skip {
269
- margin-top: 19px;
270
- }
271
-
272
- .tinvwl-wizard .tinwl-finish .tinvwl-more {
273
- display: inline-block;
274
- text-decoration: underline;
275
- margin-top: 35px;
276
- color: #4b4b4b;
277
- }
278
-
279
- .tinvwl-wizard .tinwl-finish .tinvwl-btn {
280
- margin-right: 14px;
281
- padding: 16px 26px;
282
- }
283
-
284
- .tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child {
285
- margin-right: 0;
286
- }
287
-
288
- .tinvwl-error .form-control {
289
- border: 2px solid #ff0000;
290
- }
291
-
292
- .tinvwl-error .tinvwl-error-icon {
293
- position: absolute;
294
- top: 8px;
295
- left: -10px;
296
- color: #ff0000;
297
- }
298
-
299
- .tinvwl-error .tinvwl-error-desc {
300
- line-height: 1.42857143;
301
- margin: 10px 8px 0;
302
- color: #ff0000;
303
- }
304
-
305
- .tinvwl-wizard .tinvwl-return-to-dash {
306
- margin-top: 45px;
307
- text-align: center;
308
- }
309
-
310
- @media screen and (max-width: 1024px) {
311
- .tinvwl-wizard {
312
- margin: 20px auto;
313
- }
314
-
315
- .tinvwl-wizard .tinwl-finish .tinvwl-btn {
316
- display: block;
317
- margin: 0 auto;
318
- }
319
-
320
- .tinvwl-wizard .tinwl-finish .tinvwl-btn + .tinvwl-btn {
321
- margin-top: 15px;
322
- }
323
- }
324
-
325
- @media screen and (max-width: 782px) {
326
- html {
327
- margin: 0;
328
- }
329
-
330
- .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,
331
- .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish {
332
- padding-left: 50px;
333
- padding-right: 50px;
334
- }
335
-
336
- .tinvwl-wizard .tinvwl-nav {
337
- text-align: center;
338
- }
339
-
340
- .tinvwl-wizard .tinvwl-nav .tinvwl-next {
341
- float: none;
342
- text-align: center;
343
- }
344
- }
1
+ html {
2
+ background: #f6f3ed; }
3
+
4
+ .tinvwl-wizard {
5
+ max-width: 886px;
6
+ margin: 107px auto;
7
+ padding: 0;
8
+ -webkit-box-shadow: none;
9
+ box-shadow: none;
10
+ background: none; }
11
+
12
+ .tinvwl-wizard .tinvwl-logo {
13
+ text-align: center;
14
+ margin-bottom: 10px; }
15
+
16
+ .tinvwl-wizard .tinvwl-logo h2,
17
+ .tinvwl-wizard .tinvwl-logo img {
18
+ display: inline-block;
19
+ vertical-align: middle; }
20
+
21
+ .tinvwl-wizard .tinvwl-logo img + h2 {
22
+ margin-left: 15px; }
23
+
24
+ .tinvwl-wizard .tinvwl-logo h2 {
25
+ font-size: 18px;
26
+ font-weight: bold;
27
+ text-transform: uppercase;
28
+ line-height: 1.333;
29
+ color: #3E3E3E; }
30
+
31
+ .tinvwl-wizard .tinvwl-progress {
32
+ text-align: center; }
33
+
34
+ .tinvwl-wizard .tinvwl-progress ul {
35
+ list-style: none;
36
+ padding: 0;
37
+ margin: 0; }
38
+
39
+ .tinvwl-wizard .tinvwl-progress li {
40
+ position: relative;
41
+ display: inline-block;
42
+ font-family: "Open Sans", Arial, sans-serif;
43
+ font-size: 14px;
44
+ font-weight: bold;
45
+ line-height: 1.714;
46
+ text-transform: uppercase;
47
+ padding: 0 0 4px;
48
+ margin-top: 20px;
49
+ margin-right: 40px;
50
+ color: rgba(62, 62, 62, 0.4); }
51
+
52
+ .tinvwl-wizard .tinvwl-progress li:before {
53
+ content: '';
54
+ position: absolute;
55
+ left: 0;
56
+ bottom: -2px;
57
+ width: calc( 100% + 50px);
58
+ height: 2px;
59
+ background: #e6e6e6; }
60
+
61
+ .tinvwl-wizard .tinvwl-progress li:last-child:before {
62
+ width: 100%; }
63
+
64
+ .tinvwl-wizard .tinvwl-progress li.active {
65
+ padding-right: 40px;
66
+ margin-right: 0;
67
+ color: #3e3e3e; }
68
+
69
+ .tinvwl-wizard .tinvwl-progress li.active.last {
70
+ padding-right: 0;
71
+ margin-right: 40px; }
72
+
73
+ .tinvwl-wizard .tinvwl-progress li:last-child.last.active {
74
+ color: #869a00; }
75
+
76
+ .tinvwl-wizard .tinvwl-progress li.active:after {
77
+ content: '';
78
+ position: absolute;
79
+ left: 0;
80
+ bottom: -2px;
81
+ width: calc( 100% + 10px);
82
+ height: 2px;
83
+ background: #a9c203; }
84
+
85
+ .tinvwl-wizard .tinvwl-progress li.last.active:after {
86
+ width: 100%; }
87
+
88
+ .tinvwl-wizard .tinvwl-progress li:last-child {
89
+ padding-right: 0 !important;
90
+ margin-right: 0 !important; }
91
+
92
+ .tinvwl-wizard .tinvwl-content {
93
+ font-family: Arial, sans-serif;
94
+ font-size: 14px;
95
+ line-height: 1.71428571;
96
+ color: #4f4639; }
97
+
98
+ .tinvwl-wizard .tinvwl-content .tinwl-inner {
99
+ padding: 34px 42px 42px;
100
+ margin-top: 36px;
101
+ border-radius: 5px;
102
+ background: #fff;
103
+ -webkit-box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);
104
+ box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38); }
105
+
106
+ .tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner {
107
+ padding: 40px 121px; }
108
+
109
+ .tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner {
110
+ padding: 40px 100px; }
111
+
112
+ .tinvwl-wizard h1 {
113
+ font-size: 36px;
114
+ letter-spacing: -.025em;
115
+ text-transform: uppercase;
116
+ color: #291C09; }
117
+
118
+ .tinvwl-wizard label {
119
+ line-height: 1.429; }
120
+
121
+ @media (min-width: 992px) {
122
+ .tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label {
123
+ padding-top: 10px; } }
124
+
125
+ .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-desc {
126
+ margin-top: 12px; }
127
+
128
+ .tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-separator {
129
+ margin-top: 20px;
130
+ margin-bottom: 20px; }
131
+
132
+ .tinvwl-wizard .tinvwl-skip {
133
+ display: inline-block;
134
+ font-size: 14px;
135
+ color: rgba(75, 75, 75, 0.722);
136
+ text-decoration: underline;
137
+ line-height: 1.429; }
138
+
139
+ .tinvwl-wizard .tinvwl-separator {
140
+ display: block;
141
+ width: 100%;
142
+ height: 2px;
143
+ margin: 24px 0;
144
+ background: #ececec; }
145
+
146
+ .tinvwl-wizard .tinvwl-separator + .form-horizontal,
147
+ .tinvwl-wizard .form-horizontal + .tinvwl-separator {
148
+ margin-top: 30px; }
149
+
150
+ .tinvwl-wizard .row + .tinvwl-separator {
151
+ margin-top: 0; }
152
+
153
+ .tinvwl-wizard .form-group {
154
+ margin-bottom: 20px; }
155
+
156
+ .tinvwl-wizard .tinvwl-desc {
157
+ font-family: "Open Sans", Arial, sans-serif;
158
+ font-size: 16px;
159
+ line-height: 1.875;
160
+ margin-bottom: 24px; }
161
+
162
+ .tinvwl-wizard .tinvwl-desc a {
163
+ color: #4f4639;
164
+ text-decoration: underline; }
165
+
166
+ .tinvwl-wizard .tinvwl-desc a:hover,
167
+ .tinvwl-wizard .tinvwl-desc a:active,
168
+ .tinvwl-wizard .tinvwl-desc a:focus {
169
+ color: #000; }
170
+
171
+ .tinvwl-wizard .tinvwl-nav {
172
+ margin: 30px 0 0; }
173
+
174
+ .tinvwl-wizard .tinvwl-desc + .tinvwl-nav {
175
+ margin: 55px 0 0; }
176
+
177
+ .tinvwl-wizard .tinvwl-nav .tinvwl-btn {
178
+ min-width: 147px; }
179
+
180
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next {
181
+ float: right; }
182
+
183
+ .tinvwl-wizard .tinvwl-nav .tinvwl-skip + .tinvwl-btn {
184
+ margin-left: 26px; }
185
+
186
+ .tinvwl-wizard .tinwl-intro,
187
+ .tinvwl-wizard .tinwl-finish {
188
+ text-align: center; }
189
+
190
+ .tinvwl-wizard .tinwl-intro .tinvwl-title,
191
+ .tinvwl-wizard .tinwl-finish .tinvwl-title {
192
+ font-size: 48px;
193
+ margin-bottom: 14px; }
194
+
195
+ .tinvwl-wizard .tinwl-finish .tinvwl-title {
196
+ margin-bottom: 33px; }
197
+
198
+ .tinvwl-wizard .tinwl-intro .tinvwl-sub-title,
199
+ .tinvwl-wizard .tinwl-finish .tinvwl-sub-title {
200
+ font-size: 18px;
201
+ font-weight: 600;
202
+ text-transform: uppercase;
203
+ line-height: 1.167;
204
+ letter-spacing: -.025em;
205
+ margin-bottom: 0;
206
+ color: #B2B2B2; }
207
+
208
+ .tinvwl-wizard .tinwl-intro .tinvwl-thumb {
209
+ margin-bottom: 16px; }
210
+
211
+ .tinvwl-wizard .tinwl-intro .tinvwl-desc {
212
+ margin-bottom: 21px; }
213
+
214
+ .tinvwl-wizard .tinwl-finish .tinvwl-desc {
215
+ margin-bottom: 45px; }
216
+
217
+ .tinvwl-wizard .tinwl-intro .tinvwl-skip {
218
+ margin-top: 19px; }
219
+
220
+ .tinvwl-wizard .tinwl-finish .tinvwl-more {
221
+ display: inline-block;
222
+ text-decoration: underline;
223
+ margin-top: 35px;
224
+ color: #4b4b4b; }
225
+
226
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn {
227
+ margin-right: 14px;
228
+ padding: 16px 26px; }
229
+
230
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child {
231
+ margin-right: 0; }
232
+
233
+ .tinvwl-error .form-control {
234
+ border: 2px solid #ff0000; }
235
+
236
+ .tinvwl-error .tinvwl-error-icon {
237
+ position: absolute;
238
+ top: 8px;
239
+ left: -10px;
240
+ color: #ff0000; }
241
+
242
+ .tinvwl-error .tinvwl-error-desc {
243
+ line-height: 1.42857143;
244
+ margin: 10px 8px 0;
245
+ color: #ff0000; }
246
+
247
+ .tinvwl-wizard .tinvwl-return-to-dash {
248
+ margin-top: 45px;
249
+ text-align: center; }
250
+
251
+ @media screen and (max-width: 1024px) {
252
+ .tinvwl-wizard {
253
+ margin: 20px auto; }
254
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn {
255
+ display: block;
256
+ margin: 0 auto; }
257
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn + .tinvwl-btn {
258
+ margin-top: 15px; } }
259
+
260
+ @media screen and (max-width: 782px) {
261
+ html {
262
+ margin: 0; }
263
+ .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,
264
+ .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish {
265
+ padding-left: 50px;
266
+ padding-right: 50px; }
267
+ .tinvwl-wizard .tinvwl-nav {
268
+ text-align: center; }
269
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next {
270
+ float: none;
271
+ text-align: center; } }
272
+
273
+ /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tc2V0dXAuY3NzIiwic291cmNlcyI6WyJhZG1pbi1zZXR1cC5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsQUFBQSxJQUFJLENBQUM7RUFDRCxVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQztFQUNYLFNBQVMsRUFBRSxLQUFLO0VBQ2hCLE1BQU0sRUFBRSxVQUFVO0VBQ2xCLE9BQU8sRUFBRSxDQUFDO0VBQ1YsVUFBVSxFQUFFLElBQUk7RUFDaEIsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBRUQsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDO0VBQ3hCLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLGFBQWEsRUFBRSxJQUFJLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxFQUFFO0FBQzlCLGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDO0VBQzVCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLGNBQWMsRUFBRSxNQUFNLEdBQ3pCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDO0VBQ2pDLFdBQVcsRUFBRSxJQUFJLEdBQ3BCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxFQUFFLENBQUM7RUFDM0IsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsSUFBSTtFQUNqQixjQUFjLEVBQUUsU0FBUztFQUN6QixXQUFXLEVBQUUsS0FBSztFQUNsQixLQUFLLEVBQUUsT0FBTyxHQUNqQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQztFQUM1QixVQUFVLEVBQUUsTUFBTSxHQUNyQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLENBQUM7RUFDL0IsVUFBVSxFQUFFLElBQUk7RUFDaEIsT0FBTyxFQUFFLENBQUM7RUFDVixNQUFNLEVBQUUsQ0FBQyxHQUNaOztBQUVELEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVB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 */
274
+ /*# sourceMappingURL=admin-setup.css.map */
275
+
276
+ /*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tc2V0dXAuY3NzIiwic291cmNlcyI6WyJhZG1pbi1zZXR1cC5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsQUFBQSxJQUFJLENBQUM7RUFDSCxVQUFVLEVBQUUsT0FBTyxHQUFHOztBQUV4QixBQUFBLGNBQWMsQ0FBQztFQUNiLFNBQVMsRUFBRSxLQUFLO0VBQ2hCLE1BQU0sRUFBRSxVQUFVO0VBQ2xCLE9BQU8sRUFBRSxDQUFDO0VBQ1Ysa0JBQWtCLEVBQUUsSUFBSTtFQUNoQixVQUFVLEVBQUUsSUFBSTtFQUN4QixVQUFVLEVBQUUsSUFBSSxHQUFHOztBQUVyQixBQUFBLGNBQWMsQ0FBQyxZQUFZLENBQUM7RUFDMUIsVUFBVSxFQUFFLE1BQU07RUFDbEIsYUFBYSxFQUFFLElBQUksR0FBRzs7QUFFeEIsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDLEVBQUU7QUFDOUIsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLENBQUM7RUFDOUIsT0FBTyxFQUFFLFlBQVk7RUFDckIsY0FBYyxFQUFFLE1BQU0sR0FBRzs7QUFFM0IsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDLEdBQUcsR0FBRyxFQUFFLENBQUM7RUFDbkMsV0FBVyxFQUFFLElBQUksR0FBRzs7QUFFdEIsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDLEVBQUUsQ0FBQztFQUM3QixTQUFTLEVBQUUsSUFBSTtFQUNmLFdBQVcsRUFBRSxJQUFJO0VBQ2pCLGNBQWMsRUFBRSxTQUFTO0VBQ3pCLFdBQVcsRUFBRSxLQUFLO0VBQ2xCLEtBQUssRUFBRSxPQUFPLEdBQUc7O0FBRW5CLEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDO0VBQzlCLFVBQVUsRUFBRSxNQUFNLEdBQUc7O0FBRXZCLEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQ0FBQztFQUNqQyxVQUFVLEVBQUUsSUFBSTtFQUNoQixPQUFPLEVBQUUsQ0FBQztFQUNWLE1BQU0sRUFBRSxDQUFDLEdBQUc7O0FBRWQsQUFBQSxj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 */
277
+
278
+ /*# sourceMappingURL=admin-setup.css.map */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/admin-setup.css.map ADDED
@@ -0,0 +1 @@
 
1
+ {"version":3,"sources":["admin-setup.css"],"names":[],"mappings":"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","file":"admin-setup.css","sourcesContent":["html {\n background: #f6f3ed; }\n\n.tinvwl-wizard {\n max-width: 886px;\n margin: 107px auto;\n padding: 0;\n -webkit-box-shadow: none;\n box-shadow: none;\n background: none; }\n\n.tinvwl-wizard .tinvwl-logo {\n text-align: center;\n margin-bottom: 10px; }\n\n.tinvwl-wizard .tinvwl-logo h2,\n.tinvwl-wizard .tinvwl-logo img {\n display: inline-block;\n vertical-align: middle; }\n\n.tinvwl-wizard .tinvwl-logo img + h2 {\n margin-left: 15px; }\n\n.tinvwl-wizard .tinvwl-logo h2 {\n font-size: 18px;\n font-weight: bold;\n text-transform: uppercase;\n line-height: 1.333;\n color: #3E3E3E; }\n\n.tinvwl-wizard .tinvwl-progress {\n text-align: center; }\n\n.tinvwl-wizard .tinvwl-progress ul {\n list-style: none;\n padding: 0;\n margin: 0; }\n\n.tinvwl-wizard .tinvwl-progress li {\n position: relative;\n display: inline-block;\n font-family: \"Open Sans\", Arial, sans-serif;\n font-size: 14px;\n font-weight: bold;\n line-height: 1.714;\n text-transform: uppercase;\n padding: 0 0 4px;\n margin-top: 20px;\n margin-right: 40px;\n color: rgba(62, 62, 62, 0.4); }\n\n.tinvwl-wizard .tinvwl-progress li:before {\n content: '';\n position: absolute;\n left: 0;\n bottom: -2px;\n width: calc( 100% + 50px);\n height: 2px;\n background: #e6e6e6; }\n\n.tinvwl-wizard .tinvwl-progress li:last-child:before {\n width: 100%; }\n\n.tinvwl-wizard .tinvwl-progress li.active {\n padding-right: 40px;\n margin-right: 0;\n color: #3e3e3e; }\n\n.tinvwl-wizard .tinvwl-progress li.active.last {\n padding-right: 0;\n margin-right: 40px; }\n\n.tinvwl-wizard .tinvwl-progress li:last-child.last.active {\n color: #869a00; }\n\n.tinvwl-wizard .tinvwl-progress li.active:after {\n content: '';\n position: absolute;\n left: 0;\n bottom: -2px;\n width: calc( 100% + 10px);\n height: 2px;\n background: #a9c203; }\n\n.tinvwl-wizard .tinvwl-progress li.last.active:after {\n width: 100%; }\n\n.tinvwl-wizard .tinvwl-progress li:last-child {\n padding-right: 0 !important;\n margin-right: 0 !important; }\n\n.tinvwl-wizard .tinvwl-content {\n font-family: Arial, sans-serif;\n font-size: 14px;\n line-height: 1.71428571;\n color: #4f4639; }\n\n.tinvwl-wizard .tinvwl-content .tinwl-inner {\n padding: 34px 42px 42px;\n margin-top: 36px;\n border-radius: 5px;\n background: #fff;\n -webkit-box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38);\n box-shadow: 0px 14px 29px 0px rgba(170, 150, 137, 0.38); }\n\n.tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner {\n padding: 40px 121px; }\n\n.tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner {\n padding: 40px 100px; }\n\n.tinvwl-wizard h1 {\n font-size: 36px;\n letter-spacing: -.025em;\n text-transform: uppercase;\n color: #291C09; }\n\n.tinvwl-wizard label {\n line-height: 1.429; }\n\n@media (min-width: 992px) {\n .tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label {\n padding-top: 10px; } }\n\n.tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-desc {\n margin-top: 12px; }\n\n.tinvwl-wizard .tinvwl-title-wrap h1 + .tinvwl-separator {\n margin-top: 20px;\n margin-bottom: 20px; }\n\n.tinvwl-wizard .tinvwl-skip {\n display: inline-block;\n font-size: 14px;\n color: rgba(75, 75, 75, 0.722);\n text-decoration: underline;\n line-height: 1.429; }\n\n.tinvwl-wizard .tinvwl-separator {\n display: block;\n width: 100%;\n height: 2px;\n margin: 24px 0;\n background: #ececec; }\n\n.tinvwl-wizard .tinvwl-separator + .form-horizontal,\n.tinvwl-wizard .form-horizontal + .tinvwl-separator {\n margin-top: 30px; }\n\n.tinvwl-wizard .row + .tinvwl-separator {\n margin-top: 0; }\n\n.tinvwl-wizard .form-group {\n margin-bottom: 20px; }\n\n.tinvwl-wizard .tinvwl-desc {\n font-family: \"Open Sans\", Arial, sans-serif;\n font-size: 16px;\n line-height: 1.875;\n margin-bottom: 24px; }\n\n.tinvwl-wizard .tinvwl-desc a {\n color: #4f4639;\n text-decoration: underline; }\n\n.tinvwl-wizard .tinvwl-desc a:hover,\n.tinvwl-wizard .tinvwl-desc a:active,\n.tinvwl-wizard .tinvwl-desc a:focus {\n color: #000; }\n\n.tinvwl-wizard .tinvwl-nav {\n margin: 30px 0 0; }\n\n.tinvwl-wizard .tinvwl-desc + .tinvwl-nav {\n margin: 55px 0 0; }\n\n.tinvwl-wizard .tinvwl-nav .tinvwl-btn {\n min-width: 147px; }\n\n.tinvwl-wizard .tinvwl-nav .tinvwl-next {\n float: right; }\n\n.tinvwl-wizard .tinvwl-nav .tinvwl-skip + .tinvwl-btn {\n margin-left: 26px; }\n\n.tinvwl-wizard .tinwl-intro,\n.tinvwl-wizard .tinwl-finish {\n text-align: center; }\n\n.tinvwl-wizard .tinwl-intro .tinvwl-title,\n.tinvwl-wizard .tinwl-finish .tinvwl-title {\n font-size: 48px;\n margin-bottom: 14px; }\n\n.tinvwl-wizard .tinwl-finish .tinvwl-title {\n margin-bottom: 33px; }\n\n.tinvwl-wizard .tinwl-intro .tinvwl-sub-title,\n.tinvwl-wizard .tinwl-finish .tinvwl-sub-title {\n font-size: 18px;\n font-weight: 600;\n text-transform: uppercase;\n line-height: 1.167;\n letter-spacing: -.025em;\n margin-bottom: 0;\n color: #B2B2B2; }\n\n.tinvwl-wizard .tinwl-intro .tinvwl-thumb {\n margin-bottom: 16px; }\n\n.tinvwl-wizard .tinwl-intro .tinvwl-desc {\n margin-bottom: 21px; }\n\n.tinvwl-wizard .tinwl-finish .tinvwl-desc {\n margin-bottom: 45px; }\n\n.tinvwl-wizard .tinwl-intro .tinvwl-skip {\n margin-top: 19px; }\n\n.tinvwl-wizard .tinwl-finish .tinvwl-more {\n display: inline-block;\n text-decoration: underline;\n margin-top: 35px;\n color: #4b4b4b; }\n\n.tinvwl-wizard .tinwl-finish .tinvwl-btn {\n margin-right: 14px;\n padding: 16px 26px; }\n\n.tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child {\n margin-right: 0; }\n\n.tinvwl-error .form-control {\n border: 2px solid #ff0000; }\n\n.tinvwl-error .tinvwl-error-icon {\n position: absolute;\n top: 8px;\n left: -10px;\n color: #ff0000; }\n\n.tinvwl-error .tinvwl-error-desc {\n line-height: 1.42857143;\n margin: 10px 8px 0;\n color: #ff0000; }\n\n.tinvwl-wizard .tinvwl-return-to-dash {\n margin-top: 45px;\n text-align: center; }\n\n@media screen and (max-width: 1024px) {\n .tinvwl-wizard {\n margin: 20px auto; }\n .tinvwl-wizard .tinwl-finish .tinvwl-btn {\n display: block;\n margin: 0 auto; }\n .tinvwl-wizard .tinwl-finish .tinvwl-btn + .tinvwl-btn {\n margin-top: 15px; } }\n\n@media screen and (max-width: 782px) {\n html {\n margin: 0; }\n .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,\n .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish {\n padding-left: 50px;\n padding-right: 50px; }\n .tinvwl-wizard .tinvwl-nav {\n text-align: center; }\n .tinvwl-wizard .tinvwl-nav .tinvwl-next {\n float: none;\n text-align: center; } }\n\n/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWRtaW4tc2V0dXAuY3NzIiwic291cmNlcyI6WyJhZG1pbi1zZXR1cC5jc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsQUFBQSxJQUFJLENBQUM7RUFDRCxVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQztFQUNYLFNBQVMsRUFBRSxLQUFLO0VBQ2hCLE1BQU0sRUFBRSxVQUFVO0VBQ2xCLE9BQU8sRUFBRSxDQUFDO0VBQ1YsVUFBVSxFQUFFLElBQUk7RUFDaEIsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBRUQsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDO0VBQ3hCLFVBQVUsRUFBRSxNQUFNO0VBQ2xCLGFBQWEsRUFBRSxJQUFJLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxFQUFFO0FBQzlCLGNBQWMsQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDO0VBQzVCLE9BQU8sRUFBRSxZQUFZO0VBQ3JCLGNBQWMsRUFBRSxNQUFNLEdBQ3pCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxHQUFHLEdBQUcsRUFBRSxDQUFDO0VBQ2pDLFdBQVcsRUFBRSxJQUFJLEdBQ3BCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxFQUFFLENBQUM7RUFDM0IsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsSUFBSTtFQUNqQixjQUFjLEVBQUUsU0FBUztFQUN6QixXQUFXLEVBQUUsS0FBSztFQUNsQixLQUFLLEVBQUUsT0FBTyxHQUNqQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQztFQUM1QixVQUFVLEVBQUUsTUFBTSxHQUNyQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLENBQUM7RUFDL0IsVUFBVSxFQUFFLElBQUk7RUFDaEIsT0FBTyxFQUFFLENBQUM7RUFDVixNQUFNLEVBQUUsQ0FBQyxHQUNaOztBQUVELEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQ0FBQztFQUMvQixRQUFRLEVBQUUsUUFBUTtFQUNsQixPQUFPLEVBQUUsWUFBWTtFQUNyQixXQUFXLEVBQUUsOEJBQThCO0VBQzNDLFNBQVMsRUFBRSxJQUFJO0VBQ2YsV0FBVyxFQUFFLElBQUk7RUFDakIsV0FBVyxFQUFFLEtBQUs7RUFDbEIsY0FBYyxFQUFFLFNBQVM7RUFDekIsT0FBTyxFQUFFLE9BQU87RUFDaEIsVUFBVSxFQUFFLElBQUk7RUFDaEIsWUFBWSxFQUFFLElBQUk7RUFDbEIsS0FBSyxFQUFFLHFCQUFvQixHQUM5Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLEFBQUEsT0FBTyxDQUFDO0VBQ3RDLE9BQU8sRUFBRSxFQUFFO0VBQ1gsUUFBUSxFQUFFLFFBQVE7RUFDbEIsSUFBSSxFQUFFLENBQUM7RUFDUCxNQUFNLEVBQUUsSUFBSTtFQUNaLEtBQUssRUFBRSxrQkFBbUI7RUFDMUIsTUFBTSxFQUFFLEdBQUc7RUFDWCxVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLEFBQUEsV0FBVyxBQUFBLE9BQU8sQ0FBQztFQUNqRCxLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQUFBQSxPQUFPLENBQUM7RUFDdEMsYUFBYSxFQUFFLElBQUk7RUFDbkIsWUFBWSxFQUFFLENBQUM7RUFDZixLQUFLLEVBQUUsT0FBZSxHQUN6Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLEFBQUEsT0FBTyxBQUFBLEtBQUssQ0FBQztFQUMzQyxhQUFhLEVBQUUsQ0FBQztFQUNoQixZQUFZLEVBQUUsSUFBSSxHQUNyQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLEFBQUEsV0FBVyxBQUFBLEtBQUssQUFBQSxPQUFPLENBQUM7RUFDdEQsS0FBSyxFQUFFLE9BQU8sR0FDakI7O0FBRUQsQUFBQSxjQUFjLENBQUMsZ0JBQWdCLENBQUMsRUFBRSxBQUFBLE9BQU8sQUFBQSxNQUFNLENBQUM7RUFDNUMsT0FBTyxFQUFFLEVBQUU7RUFDWCxRQUFRLEVBQUUsUUFBUTtFQUNsQixJQUFJLEVBQUUsQ0FBQztFQUNQLE1BQU0sRUFBRSxJQUFJO0VBQ1osS0FBSyxFQUFFLGtCQUFtQjtFQUMxQixNQUFNLEVBQUUsR0FBRztFQUNYLFVBQVUsRUFBRSxPQUFPLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQUFBQSxLQUFLLEFBQUEsT0FBTyxBQUFBLE1BQU0sQ0FBQztFQUNqRCxLQUFLLEVBQUUsSUFBSSxHQUNkOztBQUVELEFBQUEsY0FBYyxDQUFDLGdCQUFnQixDQUFDLEVBQUUsQUFBQSxXQUFXLENBQUM7RUFDMUMsYUFBYSxFQUFFLFlBQVk7RUFDM0IsWUFBWSxFQUFFLFlBQVksR0FDN0I7O0FBRUQsQUFBQSxjQUFjLENBQUMsZUFBZSxDQUFDO0VBQzNCLFdBQVcsRUFBRSxpQkFBaUI7RUFDOUIsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsVUFBVTtFQUN2QixLQUFLLEVBQUUsT0FBTyxHQUNqQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxlQUFlLENBQUMsWUFBWSxDQUFDO0VBQ3hDLE9BQU8sRUFBRSxjQUFjO0VBQ3ZCLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLGFBQWEsRUFBRSxHQUFHO0VBQ2xCLFVBQVUsRUFBRSxJQUFJO0VBQ2hCLFVBQVUsRUFBRSxHQUFHLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxHQUFHLENBQUMseUJBQXlCLEdBQzFEOztBQUVELEFBQUEsY0FBYyxDQUFDLGVBQWUsQ0FBQyxZQUFZLEFBQUEsWUFBWSxDQUFDO0VBQ3BELE9BQU8sRUFBRSxVQUFVLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLGVBQWUsQ0FBQyxhQUFhLEFBQUEsWUFBWSxDQUFDO0VBQ3JELE9BQU8sRUFBRSxVQUFVLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLEVBQUUsQ0FBQztFQUNkLFNBQVMsRUFBRSxJQUFJO0VBQ2YsY0FBYyxFQUFFLE9BQU87RUFDdkIsY0FBYyxFQUFFLFNBQVM7RUFDekIsS0FBSyxFQUFFLE9BQU8sR0FDakI7O0FBRUQsQUFBQSxjQUFjLENBQUMsS0FBSyxDQUFDO0VBQ2pCLFdBQVcsRUFBRSxLQUFLLEdBQ3JCOztBQUVELE1BQU0sRUFBRSxTQUFTLEVBQUUsS0FBSztFQUNwQixBQUFBLGNBQWMsQ0FBQyxZQUFZLEFBQUEsSUFBSyxDQUFBLGNBQWMsRUFBRSxTQUFTLEFBQUEsY0FBYyxDQUFDO0lBQ3BFLFdBQVcsRUFBRSxJQUFJLEdBQ3BCOztBQVNMLEFBQUEsY0FBYyxDQUFDLGtCQUFrQixDQUFDLEVBQUUsR0FBRyxZQUFZLENBQUM7RUFDaEQsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBRUQsQUFBQSxjQUFjLENBQUMsa0JBQWtCLENBQUMsRUFBRSxHQUFHLGlCQUFpQixDQUFDO0VBQ3JELFVBQVUsRUFBRSxJQUFJO0VBQ2hCLGFBQWEsRUFBRSxJQUFJLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQztFQUN4QixPQUFPLEVBQUUsWUFBWTtFQUNyQixTQUFTLEVBQUUsSUFBSTtFQUNmLEtBQUssRUFBRSx1QkFBdUI7RUFDOUIsZUFBZSxFQUFFLFNBQVM7RUFDMUIsV0FBVyxFQUFFLEtBQUssR0FDckI7O0FBRUQsQUFBQSxjQUFjLENBQUMsaUJBQWlCLENBQUM7RUFDN0IsT0FBTyxFQUFFLEtBQUs7RUFDZCxLQUFLLEVBQUUsSUFBSTtFQUNYLE1BQU0sRUFBRSxHQUFHO0VBQ1gsTUFBTSxFQUFFLE1BQU07RUFDZCxVQUFVLEVBQUUsT0FBTyxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxpQkFBaUIsR0FBRyxnQkFBZ0I7QUFDbkQsY0FBYyxDQUFDLGdCQUFnQixHQUFHLGlCQUFpQixDQUFDO0VBQ2hELFVBQVUsRUFBRSxJQUFJLEdBQ25COztBQUVELEFBQUEsY0FBYyxDQUFDLElBQUksR0FBRyxpQkFBaUIsQ0FBQztFQUNwQyxVQUFVLEVBQUUsQ0FBQyxHQUNoQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxXQUFXLENBQUM7RUFDdkIsYUFBYSxFQUFFLElBQUksR0FDdEI7O0FBRUQsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDO0VBQ3hCLFdBQVcsRUFBRSw4QkFBOEI7RUFDM0MsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsS0FBSztFQUNsQixhQUFhLEVBQUUsSUFBSSxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxDQUFDO0VBQzFCLEtBQUssRUFBRSxPQUFPO0VBQ2QsZUFBZSxFQUFFLFNBQVMsR0FDN0I7O0FBRUQsQUFBQSxjQUFjLENBQUMsWUFBWSxDQUFDLENBQUMsQUFBQSxNQUFNO0FBQ25DLGNBQWMsQ0FBQyxZQUFZLENBQUMsQ0FBQyxBQUFBLE9BQU87QUFDcEMsY0FBYyxDQUFDLFlBQVksQ0FBQyxDQUFDLEFBQUEsTUFBTSxDQUFDO0VBQ2hDLEtBQUssRUFBRSxJQUFJLEdBQ2Q7O0FBRUQsQUFBQSxjQUFjLENBQUMsV0FBVyxDQUFDO0VBQ3ZCLE1BQU0sRUFBRSxRQUFRLEdBQ25COztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksR0FBRyxXQUFXLENBQUM7RUFDdEMsTUFBTSxFQUFFLFFBQVEsR0FDbkI7O0FBRUQsQUFBQSxjQUFjLENBQUMsV0FBVyxDQUFDLFdBQVcsQ0FBQztFQUNuQyxTQUFTLEVBQUUsS0FBSyxHQUNuQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxXQUFXLENBQUMsWUFBWSxDQUFDO0VBQ3BDLEtBQUssRUFBRSxLQUFLLEdBQ2Y7O0FBRUQsQUFBQSxjQUFjLENBQUMsV0FBVyxDQUFDLFlBQVksR0FBRyxXQUFXLENBQUM7RUFDbEQsV0FBVyxFQUFFLElBQUksR0FDcEI7O0FBRUQsQUFBQSxjQUFjLENBQUMsWUFBWTtBQUMzQixjQUFjLENBQUMsYUFBYSxDQUFDO0VBQ3pCLFVBQVUsRUFBRSxNQUFNLEdBQ3JCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxhQUFhO0FBQ3pDLGNBQWMsQ0FBQyxhQUFhLENBQUMsYUFBYSxDQUFDO0VBQ3ZDLFNBQVMsRUFBRSxJQUFJO0VBQ2YsYUFBYSxFQUFFLElBQUksR0FDdEI7O0FBRUQsQUFBQSxjQUFjLENBQUMsYUFBYSxDQUFDLGFBQWEsQ0FBQztFQUN2QyxhQUFhLEVBQUUsSUFBSSxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxZQUFZLENBQUMsaUJBQWlCO0FBQzdDLGNBQWMsQ0FBQyxhQUFhLENBQUMsaUJBQWlCLENBQUM7RUFDM0MsU0FBUyxFQUFFLElBQUk7RUFDZixXQUFXLEVBQUUsR0FBRztFQUNoQixjQUFjLEVBQUUsU0FBUztFQUN6QixXQUFXLEVBQUUsS0FBSztFQUNsQixjQUFjLEVBQUUsT0FBTztFQUN2QixhQUFhLEVBQUUsQ0FBQztFQUNoQixLQUFLLEVBQUUsT0FBTyxHQUNqQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxZQUFZLENBQUMsYUFBYSxDQUFDO0VBQ3RDLGFBQWEsRUFBRSxJQUFJLEdBQ3RCOztBQUVELEFBQUEsY0FBYyxDQUFDLFlBQVksQ0FBQyxZQUFZLENBQUM7RUFDckMsYUFBYSxFQUFFLElBQUksR0FDdEI7O0FBRUQsQUFBQSxjQUFjLENBQUMsYUFBYSxDQUFDLFlBQVksQ0FBQztFQUN0QyxhQUFhLEVBQUUsSUFBSSxHQUN0Qjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxZQUFZLENBQUMsWUFBWSxDQUFDO0VBQ3JDLFVBQVUsRUFBRSxJQUFJLEdBQ25COztBQUVELEFBQUEsY0FBYyxDQUFDLGFBQWEsQ0FBQyxZQUFZLENBQUM7RUFDdEMsT0FBTyxFQUFFLFlBQVk7RUFDckIsZUFBZSxFQUFFLFNBQVM7RUFDMUIsVUFBVSxFQUFFLElBQUk7RUFDaEIsS0FBSyxFQUFFLE9BQU8sR0FDakI7O0FBRUQsQUFBQSxjQUFjLENBQUMsYUFBYSxDQUFDLFdBQVcsQ0FBQztFQUNyQyxZQUFZLEVBQUUsSUFBSTtFQUNsQixPQUFPLEVBQUUsU0FBUyxHQUNyQjs7QUFFRCxBQUFBLGNBQWMsQ0FBQyxhQUFhLENBQUMsV0FBVyxBQUFBLFdBQVcsQ0FBQztFQUNoRCxZQUFZLEVBQUUsQ0FBQyxHQUNsQjs7QUFFRCxBQUFBLGFBQWEsQ0FBQyxhQUFhLENBQUM7RUFDeEIsTUFBTSxFQUFFLGlCQUFpQixHQUM1Qjs7QUFFRCxBQUFBLGFBQWEsQ0FBQyxrQkFBa0IsQ0FBQztFQUM3QixRQUFRLEVBQUUsUUFBUTtFQUNsQixHQUFHLEVBQUUsR0FBRztFQUNSLElBQUksRUFBRSxLQUFLO0VBQ1gsS0FBSyxFQUFFLE9BQU8sR0FDakI7O0FBRUQsQUFBQSxhQUFhLENBQUMsa0JBQWtCLENBQUM7RUFDN0IsV0FBVyxFQUFFLFVBQVU7RUFDdkIsTUFBTSxFQUFFLFVBQVU7RUFDbEIsS0FBSyxFQUFFLE9BQU8sR0FDakI7O0FBRUQsQUFBQSxjQUFjLENBQUMsc0JBQXNCLENBQUM7RUFDbEMsVUFBVSxFQUFFLElBQUk7RUFDaEIsVUFBVSxFQUFFLE1BQU0sR0FDckI7O0FBRUQsTUFBTSxDQUFDLE1BQU0sTUFBTSxTQUFTLEVBQUUsTUFBTTtFQUNoQyxBQUFBLGNBQWMsQ0FBQztJQUNYLE1BQU0sRUFBRSxTQUFTLEdBQ3BCO0VBRUQsQUFBQSxjQUFjLENBQUMsYUFBYSxDQUFDLFdBQVcsQ0FBQztJQUNyQyxPQUFPLEVBQUUsS0FBSztJQUNkLE1BQU0sRUFBRSxNQUFNLEdBQ2pCO0VBRUQsQUFBQSxjQUFjLENBQUMsYUFBYSxDQUFDLFdBQVcsR0FBRyxXQUFXLENBQUM7SUFDbkQsVUFBVSxFQUFFLElBQUksR0FDbkI7O0FBR0wsTUFBTSxDQUFDLE1BQU0sTUFBTSxTQUFTLEVBQUUsS0FBSztFQUMvQixBQUFBLElBQUksQ0FBQztJQUNELE1BQU0sRUFBRSxDQUFDLEdBQ1o7RUFFRCxBQUFBLGNBQWMsQ0FBQyxlQUFlLENBQUMsWUFBWSxBQUFBLFlBQVk7RUFDdkQsY0FBYyxDQUFDLGVBQWUsQ0FBQyxZQUFZLEFBQUEsYUFBYSxDQUFDO0lBQ3JELFlBQVksRUFBRSxJQUFJO0lBQ2xCLGFBQWEsRUFBRSxJQUFJLEdBQ3RCO0VBRUQsQUFBQSxjQUFjLENBQUMsV0FBVyxDQUFDO0lBQ3ZCLFVBQVUsRUFBRSxNQUFNLEdBQ3JCO0VBRUQsQUFBQSxjQUFjLENBQUMsV0FBVyxDQUFDLFlBQVksQ0FBQztJQUNwQyxLQUFLLEVBQUUsSUFBSTtJQUNYLFVBQVUsRUFBRSxNQUFNLEdBQ3JCIn0= */\n\n/*# sourceMappingURL=admin-setup.css.map */\n"]}
assets/css/admin-setup.min.css CHANGED
@@ -1,6 +1,67 @@
1
- /*! WooCommerce Wishlist Plugin - version 1.9.16
2
- * https://wordpress.org/plugins/ti-woocommerce-wishlist/
3
- * Copyright (c) 2019;
4
- * Licensed GPLv2+ */
5
-
6
- html{background:#f6f3ed}.tinvwl-wizard{max-width:886px;margin:107px auto;padding:0;box-shadow:none;background:0 0}.tinvwl-wizard .tinvwl-logo{text-align:center;margin-bottom:10px}.tinvwl-wizard .tinvwl-logo h2,.tinvwl-wizard .tinvwl-logo img{display:inline-block;vertical-align:middle}.tinvwl-wizard .tinvwl-logo img+h2{margin-left:15px}.tinvwl-wizard .tinvwl-logo h2{font-size:18px;font-weight:700;text-transform:uppercase;line-height:1.333;color:#3e3e3e}.tinvwl-wizard .tinvwl-progress{text-align:center}.tinvwl-wizard .tinvwl-progress ul{list-style:none;padding:0;margin:0}.tinvwl-wizard .tinvwl-progress li{position:relative;display:inline-block;font-family:"Open Sans",Arial,sans-serif;font-size:14px;font-weight:700;line-height:1.714;text-transform:uppercase;padding:0 0 4px;margin-top:20px;margin-right:40px;color:rgba(62,62,62,.4)}.tinvwl-wizard .tinvwl-progress li:before{content:'';position:absolute;left:0;bottom:-2px;width:calc(100% + 50px);height:2px;background:#e6e6e6}.tinvwl-wizard .tinvwl-progress li:last-child:before{width:100%}.tinvwl-wizard .tinvwl-progress li.active{padding-right:40px;margin-right:0;color:#3e3e3e}.tinvwl-wizard .tinvwl-progress li.active.last{padding-right:0;margin-right:40px}.tinvwl-wizard .tinvwl-progress li:last-child.last.active{color:#869a00}.tinvwl-wizard .tinvwl-progress li.active:after{content:'';position:absolute;left:0;bottom:-2px;width:calc(100% + 10px);height:2px;background:#a9c203}.tinvwl-wizard .tinvwl-progress li.last.active:after{width:100%}.tinvwl-wizard .tinvwl-progress li:last-child{padding-right:0!important;margin-right:0!important}.tinvwl-wizard .tinvwl-content{font-family:Arial,sans-serif;font-size:14px;line-height:1.71428571;color:#4f4639}.tinvwl-wizard .tinvwl-content .tinwl-inner{padding:34px 42px 42px;margin-top:36px;border-radius:5px;background:#fff;box-shadow:0 14px 29px 0 rgba(170,150,137,.38)}.tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner{padding:40px 121px}.tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner{padding:40px 100px}.tinvwl-wizard h1{font-size:36px;letter-spacing:-.025em;text-transform:uppercase;color:#291c09}.tinvwl-wizard label{line-height:1.429}@media (min-width:992px){.tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label{padding-top:10px}}.tinvwl-wizard .tinvwl-title-wrap h1+.tinvwl-desc{margin-top:12px}.tinvwl-wizard .tinvwl-title-wrap h1+.tinvwl-separator{margin-top:20px;margin-bottom:20px}.tinvwl-wizard .tinvwl-skip{display:inline-block;font-size:14px;color:rgba(75,75,75,.722);text-decoration:underline;line-height:1.429}.tinvwl-wizard .tinvwl-separator{display:block;width:100%;height:2px;margin:24px 0;background:#ececec}.tinvwl-wizard .form-horizontal+.tinvwl-separator,.tinvwl-wizard .tinvwl-separator+.form-horizontal{margin-top:30px}.tinvwl-wizard .row+.tinvwl-separator{margin-top:0}.tinvwl-wizard .form-group{margin-bottom:20px}.tinvwl-wizard .tinvwl-desc{font-family:"Open Sans",Arial,sans-serif;font-size:16px;line-height:1.875;margin-bottom:24px}.tinvwl-wizard .tinvwl-desc a{color:#4f4639;text-decoration:underline}.tinvwl-wizard .tinvwl-desc a:active,.tinvwl-wizard .tinvwl-desc a:focus,.tinvwl-wizard .tinvwl-desc a:hover{color:#000}.tinvwl-wizard .tinvwl-nav{margin:30px 0 0}.tinvwl-wizard .tinvwl-desc+.tinvwl-nav{margin:55px 0 0}.tinvwl-wizard .tinvwl-nav .tinvwl-btn{min-width:147px}.tinvwl-wizard .tinvwl-nav .tinvwl-next{float:right}.tinvwl-wizard .tinvwl-nav .tinvwl-skip+.tinvwl-btn{margin-left:26px}.tinvwl-wizard .tinwl-finish,.tinvwl-wizard .tinwl-intro{text-align:center}.tinvwl-wizard .tinwl-finish .tinvwl-title,.tinvwl-wizard .tinwl-intro .tinvwl-title{font-size:48px;margin-bottom:14px}.tinvwl-wizard .tinwl-finish .tinvwl-title{margin-bottom:33px}.tinvwl-wizard .tinwl-finish .tinvwl-sub-title,.tinvwl-wizard .tinwl-intro .tinvwl-sub-title{font-size:18px;font-weight:600;text-transform:uppercase;line-height:1.167;letter-spacing:-.025em;margin-bottom:0;color:#b2b2b2}.tinvwl-wizard .tinwl-intro .tinvwl-thumb{margin-bottom:16px}.tinvwl-wizard .tinwl-intro .tinvwl-desc{margin-bottom:21px}.tinvwl-wizard .tinwl-finish .tinvwl-desc{margin-bottom:45px}.tinvwl-wizard .tinwl-intro .tinvwl-skip{margin-top:19px}.tinvwl-wizard .tinwl-finish .tinvwl-more{display:inline-block;text-decoration:underline;margin-top:35px;color:#4b4b4b}.tinvwl-wizard .tinwl-finish .tinvwl-btn{margin-right:14px;padding:16px 26px}.tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child{margin-right:0}.tinvwl-error .form-control{border:2px solid red}.tinvwl-error .tinvwl-error-icon{position:absolute;top:8px;left:-10px;color:red}.tinvwl-error .tinvwl-error-desc{line-height:1.42857143;margin:10px 8px 0;color:red}.tinvwl-wizard .tinvwl-return-to-dash{margin-top:45px;text-align:center}@media screen and (max-width:1024px){.tinvwl-wizard{margin:20px auto}.tinvwl-wizard .tinwl-finish .tinvwl-btn{display:block;margin:0 auto}.tinvwl-wizard .tinwl-finish .tinvwl-btn+.tinvwl-btn{margin-top:15px}}@media screen and (max-width:782px){html{margin:0}.tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish,.tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro{padding-left:50px;padding-right:50px}.tinvwl-wizard .tinvwl-nav{text-align:center}.tinvwl-wizard .tinvwl-nav .tinvwl-next{float:none;text-align:center}}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
+ * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
+ */
6
+ html{background:#f6f3ed}
7
+ .tinvwl-wizard{max-width:886px;margin:107px auto;padding:0;-webkit-box-shadow:none;box-shadow:none;background:0}
8
+ .tinvwl-wizard .tinvwl-logo{text-align:center;margin-bottom:10px}
9
+ .tinvwl-wizard .tinvwl-logo h2,.tinvwl-wizard .tinvwl-logo img{display:inline-block;vertical-align:middle}
10
+ .tinvwl-wizard .tinvwl-logo img+h2{margin-left:15px}
11
+ .tinvwl-wizard .tinvwl-logo h2{font-size:18px;font-weight:bold;text-transform:uppercase;line-height:1.333;color:#3e3e3e}
12
+ .tinvwl-wizard .tinvwl-progress{text-align:center}
13
+ .tinvwl-wizard .tinvwl-progress ul{list-style:none;padding:0;margin:0}
14
+ .tinvwl-wizard .tinvwl-progress li{position:relative;display:inline-block;font-family:"Open Sans",Arial,sans-serif;font-size:14px;font-weight:bold;line-height:1.714;text-transform:uppercase;padding:0 0 4px;margin-top:20px;margin-right:40px;color:rgba(62,62,62,0.4)}
15
+ .tinvwl-wizard .tinvwl-progress li:before{content:'';position:absolute;left:0;bottom:-2px;width:calc(100% + 50px);height:2px;background:#e6e6e6}
16
+ .tinvwl-wizard .tinvwl-progress li:last-child:before{width:100%}
17
+ .tinvwl-wizard .tinvwl-progress li.active{padding-right:40px;margin-right:0;color:#3e3e3e}
18
+ .tinvwl-wizard .tinvwl-progress li.active.last{padding-right:0;margin-right:40px}
19
+ .tinvwl-wizard .tinvwl-progress li:last-child.last.active{color:#869a00}
20
+ .tinvwl-wizard .tinvwl-progress li.active:after{content:'';position:absolute;left:0;bottom:-2px;width:calc(100% + 10px);height:2px;background:#a9c203}
21
+ .tinvwl-wizard .tinvwl-progress li.last.active:after{width:100%}
22
+ .tinvwl-wizard .tinvwl-progress li:last-child{padding-right:0 !important;margin-right:0 !important}
23
+ .tinvwl-wizard .tinvwl-content{font-family:Arial,sans-serif;font-size:14px;line-height:1.71428571;color:#4f4639}
24
+ .tinvwl-wizard .tinvwl-content .tinwl-inner{padding:34px 42px 42px;margin-top:36px;border-radius:5px;background:#fff;-webkit-box-shadow:0 14px 29px 0 rgba(170,150,137,0.38);box-shadow:0 14px 29px 0 rgba(170,150,137,0.38)}
25
+ .tinvwl-wizard .tinvwl-content .tinwl-intro.tinwl-inner{padding:40px 121px}
26
+ .tinvwl-wizard .tinvwl-content .tinwl-finish.tinwl-inner{padding:40px 100px}
27
+ .tinvwl-wizard h1{font-size:36px;letter-spacing:-.025em;text-transform:uppercase;color:#291c09}
28
+ .tinvwl-wizard label{line-height:1.429}
29
+ .tinvwl-wizard .tinvwl-title-wrap h1+.tinvwl-desc{margin-top:12px}
30
+ .tinvwl-wizard .tinvwl-title-wrap h1+.tinvwl-separator{margin-top:20px;margin-bottom:20px}
31
+ .tinvwl-wizard .tinvwl-skip{display:inline-block;font-size:14px;color:rgba(75,75,75,0.722);text-decoration:underline;line-height:1.429}
32
+ .tinvwl-wizard .tinvwl-separator{display:block;width:100%;height:2px;margin:24px 0;background:#ececec}
33
+ .tinvwl-wizard .tinvwl-separator+.form-horizontal,.tinvwl-wizard .form-horizontal+.tinvwl-separator{margin-top:30px}
34
+ .tinvwl-wizard .row+.tinvwl-separator{margin-top:0}
35
+ .tinvwl-wizard .form-group{margin-bottom:20px}
36
+ .tinvwl-wizard .tinvwl-desc{font-family:"Open Sans",Arial,sans-serif;font-size:16px;line-height:1.875;margin-bottom:24px}
37
+ .tinvwl-wizard .tinvwl-desc a{color:#4f4639;text-decoration:underline}
38
+ .tinvwl-wizard .tinvwl-desc a:hover,.tinvwl-wizard .tinvwl-desc a:active,.tinvwl-wizard .tinvwl-desc a:focus{color:#000}
39
+ .tinvwl-wizard .tinvwl-nav{margin:30px 0 0}
40
+ .tinvwl-wizard .tinvwl-desc+.tinvwl-nav{margin:55px 0 0}
41
+ .tinvwl-wizard .tinvwl-nav .tinvwl-btn{min-width:147px}
42
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next{float:right}
43
+ .tinvwl-wizard .tinvwl-nav .tinvwl-skip+.tinvwl-btn{margin-left:26px}
44
+ .tinvwl-wizard .tinwl-intro,.tinvwl-wizard .tinwl-finish{text-align:center}
45
+ .tinvwl-wizard .tinwl-intro .tinvwl-title,.tinvwl-wizard .tinwl-finish .tinvwl-title{font-size:48px;margin-bottom:14px}
46
+ .tinvwl-wizard .tinwl-finish .tinvwl-title{margin-bottom:33px}
47
+ .tinvwl-wizard .tinwl-intro .tinvwl-sub-title,.tinvwl-wizard .tinwl-finish .tinvwl-sub-title{font-size:18px;font-weight:600;text-transform:uppercase;line-height:1.167;letter-spacing:-.025em;margin-bottom:0;color:#b2b2b2}
48
+ .tinvwl-wizard .tinwl-intro .tinvwl-thumb{margin-bottom:16px}
49
+ .tinvwl-wizard .tinwl-intro .tinvwl-desc{margin-bottom:21px}
50
+ .tinvwl-wizard .tinwl-finish .tinvwl-desc{margin-bottom:45px}
51
+ .tinvwl-wizard .tinwl-intro .tinvwl-skip{margin-top:19px}
52
+ .tinvwl-wizard .tinwl-finish .tinvwl-more{display:inline-block;text-decoration:underline;margin-top:35px;color:#4b4b4b}
53
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn{margin-right:14px;padding:16px 26px}
54
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn:last-child{margin-right:0}
55
+ .tinvwl-error .form-control{border:2px solid red}
56
+ .tinvwl-error .tinvwl-error-icon{position:absolute;top:8px;left:-10px;color:red}
57
+ .tinvwl-error .tinvwl-error-desc{line-height:1.42857143;margin:10px 8px 0;color:red}
58
+ .tinvwl-wizard .tinvwl-return-to-dash{margin-top:45px;text-align:center}
59
+ @media(min-width:992px){.tinvwl-wizard .tinwl-inner:not(.tinvwl-social) .col-md-6.control-label{padding-top:10px}
60
+ }@media screen and (max-width:1024px){.tinvwl-wizard{margin:20px auto}
61
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn{display:block;margin:0 auto}
62
+ .tinvwl-wizard .tinwl-finish .tinvwl-btn+.tinvwl-btn{margin-top:15px}
63
+ }@media screen and (max-width:782px){html{margin:0}
64
+ .tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-intro,.tinvwl-wizard .tinvwl-content .tinwl-inner.tinwl-finish{padding-left:50px;padding-right:50px}
65
+ .tinvwl-wizard .tinvwl-nav{text-align:center}
66
+ .tinvwl-wizard .tinvwl-nav .tinvwl-next{float:none;text-align:center}
67
+ }
assets/css/admin.min.css CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
- * @version 1.14.2
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  @font-face{font-family:'tinvwl-webfont';src:url("../fonts/tinvwl-webfont.eot?xu2uyi");src:url("../fonts/tinvwl-webfont.eot?xu2uyi#iefix") format("embedded-opentype"),url("../fonts/tinvwl-webfont.ttf?xu2uyi") format("truetype"),url("../fonts/tinvwl-webfont.woff?xu2uyi") format("woff"),url("../fonts/tinvwl-webfont.svg?xu2uyi#tinvwl-webfont") format("svg");font-weight:normal;font-style:normal}
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  @font-face{font-family:'tinvwl-webfont';src:url("../fonts/tinvwl-webfont.eot?xu2uyi");src:url("../fonts/tinvwl-webfont.eot?xu2uyi#iefix") format("embedded-opentype"),url("../fonts/tinvwl-webfont.ttf?xu2uyi") format("truetype"),url("../fonts/tinvwl-webfont.woff?xu2uyi") format("woff"),url("../fonts/tinvwl-webfont.svg?xu2uyi#tinvwl-webfont") format("svg");font-weight:normal;font-style:normal}
assets/css/bootstrap.css DELETED
@@ -1,5956 +0,0 @@
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
-
264
- * {
265
- -webkit-box-sizing: border-box;
266
- -moz-box-sizing: border-box;
267
- box-sizing: border-box;
268
- }
269
- *:before,
270
- *:after {
271
- -webkit-box-sizing: border-box;
272
- -moz-box-sizing: border-box;
273
- box-sizing: border-box;
274
- }
275
- html {
276
- font-size: 10px;
277
-
278
- -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
279
- }
280
- body {
281
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
282
- font-size: 14px;
283
- line-height: 1.42857143;
284
- color: #333;
285
- background-color: #fff;
286
- }
287
- input,
288
- button,
289
- select,
290
- textarea {
291
- font-family: inherit;
292
- font-size: inherit;
293
- line-height: inherit;
294
- }
295
- a {
296
- color: #337ab7;
297
- text-decoration: none;
298
- }
299
- a:hover,
300
- a:focus {
301
- color: #23527c;
302
- text-decoration: underline;
303
- }
304
- a:focus {
305
- outline: thin dotted;
306
- outline: 5px auto -webkit-focus-ring-color;
307
- outline-offset: -2px;
308
- }
309
- figure {
310
- margin: 0;
311
- }
312
- img {
313
- vertical-align: middle;
314
- }
315
- .img-responsive,
316
- .thumbnail > img,
317
- .thumbnail a > img,
318
- .carousel-inner > .item > img,
319
- .carousel-inner > .item > a > img {
320
- display: block;
321
- max-width: 100%;
322
- height: auto;
323
- }
324
- .img-rounded {
325
- border-radius: 6px;
326
- }
327
- .img-thumbnail {
328
- display: inline-block;
329
- max-width: 100%;
330
- height: auto;
331
- padding: 4px;
332
- line-height: 1.42857143;
333
- background-color: #fff;
334
- border: 1px solid #ddd;
335
- border-radius: 4px;
336
- -webkit-transition: all .2s ease-in-out;
337
- -o-transition: all .2s ease-in-out;
338
- transition: all .2s ease-in-out;
339
- }
340
- .img-circle {
341
- border-radius: 50%;
342
- }
343
- hr {
344
- margin-top: 20px;
345
- margin-bottom: 20px;
346
- border: 0;
347
- border-top: 1px solid #eee;
348
- }
349
- .sr-only {
350
- position: absolute;
351
- width: 1px;
352
- height: 1px;
353
- padding: 0;
354
- margin: -1px;
355
- overflow: hidden;
356
- clip: rect(0, 0, 0, 0);
357
- border: 0;
358
- }
359
- .sr-only-focusable:active,
360
- .sr-only-focusable:focus {
361
- position: static;
362
- width: auto;
363
- height: auto;
364
- margin: 0;
365
- overflow: visible;
366
- clip: auto;
367
- }
368
- [role="button"] {
369
- cursor: pointer;
370
- }
371
- h1,
372
- h2,
373
- h3,
374
- h4,
375
- h5,
376
- h6,
377
- .h1,
378
- .h2,
379
- .h3,
380
- .h4,
381
- .h5,
382
- .h6 {
383
- font-family: inherit;
384
- font-weight: 500;
385
- line-height: 1.1;
386
- color: inherit;
387
- }
388
- h1 small,
389
- h2 small,
390
- h3 small,
391
- h4 small,
392
- h5 small,
393
- h6 small,
394
- .h1 small,
395
- .h2 small,
396
- .h3 small,
397
- .h4 small,
398
- .h5 small,
399
- .h6 small,
400
- h1 .small,
401
- h2 .small,
402
- h3 .small,
403
- h4 .small,
404
- h5 .small,
405
- h6 .small,
406
- .h1 .small,
407
- .h2 .small,
408
- .h3 .small,
409
- .h4 .small,
410
- .h5 .small,
411
- .h6 .small {
412
- font-weight: normal;
413
- line-height: 1;
414
- color: #777;
415
- }
416
- h1,
417
- .h1,
418
- h2,
419
- .h2,
420
- h3,
421
- .h3 {
422
- margin-top: 20px;
423
- margin-bottom: 10px;
424
- }
425
- h1 small,
426
- .h1 small,
427
- h2 small,
428
- .h2 small,
429
- h3 small,
430
- .h3 small,
431
- h1 .small,
432
- .h1 .small,
433
- h2 .small,
434
- .h2 .small,
435
- h3 .small,
436
- .h3 .small {
437
- font-size: 65%;
438
- }
439
- h4,
440
- .h4,
441
- h5,
442
- .h5,
443
- h6,
444
- .h6 {
445
- margin-top: 10px;
446
- margin-bottom: 10px;
447
- }
448
- h4 small,
449
- .h4 small,
450
- h5 small,
451
- .h5 small,
452
- h6 small,
453
- .h6 small,
454
- h4 .small,
455
- .h4 .small,
456
- h5 .small,
457
- .h5 .small,
458
- h6 .small,
459
- .h6 .small {
460
- font-size: 75%;
461
- }
462
- h1,
463
- .h1 {
464
- font-size: 36px;
465
- }
466
- h2,
467
- .h2 {
468
- font-size: 30px;
469
- }
470
- h3,
471
- .h3 {
472
- font-size: 24px;
473
- }
474
- h4,
475
- .h4 {
476
- font-size: 18px;
477
- }
478
- h5,
479
- .h5 {
480
- font-size: 14px;
481
- }
482
- h6,
483
- .h6 {
484
- font-size: 12px;
485
- }
486
- p {
487
- margin: 0 0 10px;
488
- }
489
- .lead {
490
- margin-bottom: 20px;
491
- font-size: 16px;
492
- font-weight: 300;
493
- line-height: 1.4;
494
- }
495
- @media (min-width: 768px) {
496
- .lead {
497
- font-size: 21px;
498
- }
499
- }
500
- small,
501
- .small {
502
- font-size: 85%;
503
- }
504
- mark,
505
- .mark {
506
- padding: .2em;
507
- background-color: #fcf8e3;
508
- }
509
- .text-left {
510
- text-align: left;
511
- }
512
- .text-right {
513
- text-align: right;
514
- }
515
- .text-center {
516
- text-align: center;
517
- }
518
- .text-justify {
519
- text-align: justify;
520
- }
521
- .text-nowrap {
522
- white-space: nowrap;
523
- }
524
- .text-lowercase {
525
- text-transform: lowercase;
526
- }
527
- .text-uppercase {
528
- text-transform: uppercase;
529
- }
530
- .text-capitalize {
531
- text-transform: capitalize;
532
- }
533
- .text-muted {
534
- color: #777;
535
- }
536
- .text-primary {
537
- color: #337ab7;
538
- }
539
- a.text-primary:hover,
540
- a.text-primary:focus {
541
- color: #286090;
542
- }
543
- .text-success {
544
- color: #3c763d;
545
- }
546
- a.text-success:hover,
547
- a.text-success:focus {
548
- color: #2b542c;
549
- }
550
- .text-info {
551
- color: #31708f;
552
- }
553
- a.text-info:hover,
554
- a.text-info:focus {
555
- color: #245269;
556
- }
557
- .text-warning {
558
- color: #8a6d3b;
559
- }
560
- a.text-warning:hover,
561
- a.text-warning:focus {
562
- color: #66512c;
563
- }
564
- .text-danger {
565
- color: #a94442;
566
- }
567
- a.text-danger:hover,
568
- a.text-danger:focus {
569
- color: #843534;
570
- }
571
- .bg-primary {
572
- color: #fff;
573
- background-color: #337ab7;
574
- }
575
- a.bg-primary:hover,
576
- a.bg-primary:focus {
577
- background-color: #286090;
578
- }
579
- .bg-success {
580
- background-color: #dff0d8;
581
- }
582
- a.bg-success:hover,
583
- a.bg-success:focus {
584
- background-color: #c1e2b3;
585
- }
586
- .bg-info {
587
- background-color: #d9edf7;
588
- }
589
- a.bg-info:hover,
590
- a.bg-info:focus {
591
- background-color: #afd9ee;
592
- }
593
- .bg-warning {
594
- background-color: #fcf8e3;
595
- }
596
- a.bg-warning:hover,
597
- a.bg-warning:focus {
598
- background-color: #f7ecb5;
599
- }
600
- .bg-danger {
601
- background-color: #f2dede;
602
- }
603
- a.bg-danger:hover,
604
- a.bg-danger:focus {
605
- background-color: #e4b9b9;
606
- }
607
- .page-header {
608
- padding-bottom: 9px;
609
- margin: 40px 0 20px;
610
- border-bottom: 1px solid #eee;
611
- }
612
- ul,
613
- ol {
614
- margin-top: 0;
615
- margin-bottom: 10px;
616
- }
617
- ul ul,
618
- ol ul,
619
- ul ol,
620
- ol ol {
621
- margin-bottom: 0;
622
- }
623
- .list-unstyled {
624
- padding-left: 0;
625
- list-style: none;
626
- }
627
- .list-inline {
628
- padding-left: 0;
629
- margin-left: -5px;
630
- list-style: none;
631
- }
632
- .list-inline > li {
633
- display: inline-block;
634
- padding-right: 5px;
635
- padding-left: 5px;
636
- }
637
- dl {
638
- margin-top: 0;
639
- margin-bottom: 20px;
640
- }
641
- dt,
642
- dd {
643
- line-height: 1.42857143;
644
- }
645
- dt {
646
- font-weight: bold;
647
- }
648
- dd {
649
- margin-left: 0;
650
- }
651
- @media (min-width: 768px) {
652
- .dl-horizontal dt {
653
- float: left;
654
- width: 160px;
655
- overflow: hidden;
656
- clear: left;
657
- text-align: right;
658
- text-overflow: ellipsis;
659
- white-space: nowrap;
660
- }
661
- .dl-horizontal dd {
662
- margin-left: 180px;
663
- }
664
- }
665
- abbr[title],
666
- abbr[data-original-title] {
667
- cursor: help;
668
- border-bottom: 1px dotted #777;
669
- }
670
- .initialism {
671
- font-size: 90%;
672
- text-transform: uppercase;
673
- }
674
- blockquote {
675
- padding: 10px 20px;
676
- margin: 0 0 20px;
677
- font-size: 17.5px;
678
- border-left: 5px solid #eee;
679
- }
680
- blockquote p:last-child,
681
- blockquote ul:last-child,
682
- blockquote ol:last-child {
683
- margin-bottom: 0;
684
- }
685
- blockquote footer,
686
- blockquote small,
687
- blockquote .small {
688
- display: block;
689
- font-size: 80%;
690
- line-height: 1.42857143;
691
- color: #777;
692
- }
693
- blockquote footer:before,
694
- blockquote small:before,
695
- blockquote .small:before {
696
- content: '\2014 \00A0';
697
- }
698
- .blockquote-reverse,
699
- blockquote.pull-right {
700
- padding-right: 15px;
701
- padding-left: 0;
702
- text-align: right;
703
- border-right: 5px solid #eee;
704
- border-left: 0;
705
- }
706
- .blockquote-reverse footer:before,
707
- blockquote.pull-right footer:before,
708
- .blockquote-reverse small:before,
709
- blockquote.pull-right small:before,
710
- .blockquote-reverse .small:before,
711
- blockquote.pull-right .small:before {
712
- content: '';
713
- }
714
- .blockquote-reverse footer:after,
715
- blockquote.pull-right footer:after,
716
- .blockquote-reverse small:after,
717
- blockquote.pull-right small:after,
718
- .blockquote-reverse .small:after,
719
- blockquote.pull-right .small:after {
720
- content: '\00A0 \2014';
721
- }
722
- address {
723
- margin-bottom: 20px;
724
- font-style: normal;
725
- line-height: 1.42857143;
726
- }
727
- code,
728
- kbd,
729
- pre,
730
- samp {
731
- font-family: Menlo, Monaco, Consolas, "Courier New", monospace;
732
- }
733
- code {
734
- padding: 2px 4px;
735
- font-size: 90%;
736
- color: #c7254e;
737
- background-color: #f9f2f4;
738
- border-radius: 4px;
739
- }
740
- kbd {
741
- padding: 2px 4px;
742
- font-size: 90%;
743
- color: #fff;
744
- background-color: #333;
745
- border-radius: 3px;
746
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
747
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
748
- }
749
- kbd kbd {
750
- padding: 0;
751
- font-size: 100%;
752
- font-weight: bold;
753
- -webkit-box-shadow: none;
754
- box-shadow: none;
755
- }
756
- pre {
757
- display: block;
758
- padding: 9.5px;
759
- margin: 0 0 10px;
760
- font-size: 13px;
761
- line-height: 1.42857143;
762
- color: #333;
763
- word-break: break-all;
764
- word-wrap: break-word;
765
- background-color: #f5f5f5;
766
- border: 1px solid #ccc;
767
- border-radius: 4px;
768
- }
769
- pre code {
770
- padding: 0;
771
- font-size: inherit;
772
- color: inherit;
773
- white-space: pre-wrap;
774
- background-color: transparent;
775
- border-radius: 0;
776
- }
777
- .pre-scrollable {
778
- max-height: 340px;
779
- overflow-y: scroll;
780
- }
781
- .container {
782
- padding-right: 15px;
783
- padding-left: 15px;
784
- margin-right: auto;
785
- margin-left: auto;
786
- }
787
- @media (min-width: 768px) {
788
- .container {
789
- width: 750px;
790
- }
791
- }
792
- @media (min-width: 992px) {
793
- .container {
794
- width: 970px;
795
- }
796
- }
797
- @media (min-width: 1200px) {
798
- .container {
799
- width: 1170px;
800
- }
801
- }
802
- .container-fluid {
803
- padding-right: 15px;
804
- padding-left: 15px;
805
- margin-right: auto;
806
- margin-left: auto;
807
- }
808
- .row {
809
- margin-right: -15px;
810
- margin-left: -15px;
811
- }
812
- .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 {
813
- position: relative;
814
- min-height: 1px;
815
- padding-right: 15px;
816
- padding-left: 15px;
817
- }
818
- .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 {
819
- float: left;
820
- }
821
- .col-xs-12 {
822
- width: 100%;
823
- }
824
- .col-xs-11 {
825
- width: 91.66666667%;
826
- }
827
- .col-xs-10 {
828
- width: 83.33333333%;
829
- }
830
- .col-xs-9 {
831
- width: 75%;
832
- }
833
- .col-xs-8 {
834
- width: 66.66666667%;
835
- }
836
- .col-xs-7 {
837
- width: 58.33333333%;
838
- }
839
- .col-xs-6 {
840
- width: 50%;
841
- }
842
- .col-xs-5 {
843
- width: 41.66666667%;
844
- }
845
- .col-xs-4 {
846
- width: 33.33333333%;
847
- }
848
- .col-xs-3 {
849
- width: 25%;
850
- }
851
- .col-xs-2 {
852
- width: 16.66666667%;
853
- }
854
- .col-xs-1 {
855
- width: 8.33333333%;
856
- }
857
- .col-xs-pull-12 {
858
- right: 100%;
859
- }
860
- .col-xs-pull-11 {
861
- right: 91.66666667%;
862
- }
863
- .col-xs-pull-10 {
864
- right: 83.33333333%;
865
- }
866
- .col-xs-pull-9 {
867
- right: 75%;
868
- }
869
- .col-xs-pull-8 {
870
- right: 66.66666667%;
871
- }
872
- .col-xs-pull-7 {
873
- right: 58.33333333%;
874
- }
875
- .col-xs-pull-6 {
876
- right: 50%;
877
- }
878
- .col-xs-pull-5 {
879
- right: 41.66666667%;
880
- }
881
- .col-xs-pull-4 {
882
- right: 33.33333333%;
883
- }
884
- .col-xs-pull-3 {
885
- right: 25%;
886
- }
887
- .col-xs-pull-2 {
888
- right: 16.66666667%;
889
- }
890
- .col-xs-pull-1 {
891
- right: 8.33333333%;
892
- }
893
- .col-xs-pull-0 {
894
- right: auto;
895
- }
896
- .col-xs-push-12 {
897
- left: 100%;
898
- }
899
- .col-xs-push-11 {
900
- left: 91.66666667%;
901
- }
902
- .col-xs-push-10 {
903
- left: 83.33333333%;
904
- }
905
- .col-xs-push-9 {
906
- left: 75%;
907
- }
908
- .col-xs-push-8 {
909
- left: 66.66666667%;
910
- }
911
- .col-xs-push-7 {
912
- left: 58.33333333%;
913
- }
914
- .col-xs-push-6 {
915
- left: 50%;
916
- }
917
- .col-xs-push-5 {
918
- left: 41.66666667%;
919
- }
920
- .col-xs-push-4 {
921
- left: 33.33333333%;
922
- }
923
- .col-xs-push-3 {
924
- left: 25%;
925
- }
926
- .col-xs-push-2 {
927
- left: 16.66666667%;
928
- }
929
- .col-xs-push-1 {
930
- left: 8.33333333%;
931
- }
932
- .col-xs-push-0 {
933
- left: auto;
934
- }
935
- .col-xs-offset-12 {
936
- margin-left: 100%;
937
- }
938
- .col-xs-offset-11 {
939
- margin-left: 91.66666667%;
940
- }
941
- .col-xs-offset-10 {
942
- margin-left: 83.33333333%;
943
- }
944
- .col-xs-offset-9 {
945
- margin-left: 75%;
946
- }
947
- .col-xs-offset-8 {
948
- margin-left: 66.66666667%;
949
- }
950
- .col-xs-offset-7 {
951
- margin-left: 58.33333333%;
952
- }
953
- .col-xs-offset-6 {
954
- margin-left: 50%;
955
- }
956
- .col-xs-offset-5 {
957
- margin-left: 41.66666667%;
958
- }
959
- .col-xs-offset-4 {
960
- margin-left: 33.33333333%;
961
- }
962
- .col-xs-offset-3 {
963
- margin-left: 25%;
964
- }
965
- .col-xs-offset-2 {
966
- margin-left: 16.66666667%;
967
- }
968
- .col-xs-offset-1 {
969
- margin-left: 8.33333333%;
970
- }
971
- .col-xs-offset-0 {
972
- margin-left: 0;
973
- }
974
- @media (min-width: 768px) {
975
- .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 {
976
- float: left;
977
- }
978
- .col-sm-12 {
979
- width: 100%;
980
- }
981
- .col-sm-11 {
982
- width: 91.66666667%;
983
- }
984
- .col-sm-10 {
985
- width: 83.33333333%;
986
- }
987
- .col-sm-9 {
988
- width: 75%;
989
- }
990
- .col-sm-8 {
991
- width: 66.66666667%;
992
- }
993
- .col-sm-7 {
994
- width: 58.33333333%;
995
- }
996
- .col-sm-6 {
997
- width: 50%;
998
- }
999
- .col-sm-5 {
1000
- width: 41.66666667%;
1001
- }
1002
- .col-sm-4 {
1003
- width: 33.33333333%;
1004
- }
1005
- .col-sm-3 {
1006
- width: 25%;
1007
- }
1008
- .col-sm-2 {
1009
- width: 16.66666667%;
1010
- }
1011
- .col-sm-1 {
1012
- width: 8.33333333%;
1013
- }
1014
- .col-sm-pull-12 {
1015
- right: 100%;
1016
- }
1017
- .col-sm-pull-11 {
1018
- right: 91.66666667%;
1019
- }
1020
- .col-sm-pull-10 {
1021
- right: 83.33333333%;
1022
- }
1023
- .col-sm-pull-9 {
1024
- right: 75%;
1025
- }
1026
- .col-sm-pull-8 {
1027
- right: 66.66666667%;
1028
- }
1029
- .col-sm-pull-7 {
1030
- right: 58.33333333%;
1031
- }
1032
- .col-sm-pull-6 {
1033
- right: 50%;
1034
- }
1035
- .col-sm-pull-5 {
1036
- right: 41.66666667%;
1037
- }
1038
- .col-sm-pull-4 {
1039
- right: 33.33333333%;
1040
- }
1041
- .col-sm-pull-3 {
1042
- right: 25%;
1043
- }
1044
- .col-sm-pull-2 {
1045
- right: 16.66666667%;
1046
- }
1047
- .col-sm-pull-1 {
1048
- right: 8.33333333%;
1049
- }
1050
- .col-sm-pull-0 {
1051
- right: auto;
1052
- }
1053
- .col-sm-push-12 {
1054
- left: 100%;
1055
- }
1056
- .col-sm-push-11 {
1057
- left: 91.66666667%;
1058
- }
1059
- .col-sm-push-10 {
1060
- left: 83.33333333%;
1061
- }
1062
- .col-sm-push-9 {
1063
- left: 75%;
1064
- }
1065
- .col-sm-push-8 {
1066
- left: 66.66666667%;
1067
- }
1068
- .col-sm-push-7 {
1069
- left: 58.33333333%;
1070
- }
1071
- .col-sm-push-6 {
1072
- left: 50%;
1073
- }
1074
- .col-sm-push-5 {
1075
- left: 41.66666667%;
1076
- }
1077
- .col-sm-push-4 {
1078
- left: 33.33333333%;
1079
- }
1080
- .col-sm-push-3 {
1081
- left: 25%;
1082
- }
1083
- .col-sm-push-2 {
1084
- left: 16.66666667%;
1085
- }
1086
- .col-sm-push-1 {
1087
- left: 8.33333333%;
1088
- }
1089
- .col-sm-push-0 {
1090
- left: auto;
1091
- }
1092
- .col-sm-offset-12 {
1093
- margin-left: 100%;
1094
- }
1095
- .col-sm-offset-11 {
1096
- margin-left: 91.66666667%;
1097
- }
1098
- .col-sm-offset-10 {
1099
- margin-left: 83.33333333%;
1100
- }
1101
- .col-sm-offset-9 {
1102
- margin-left: 75%;
1103
- }
1104
- .col-sm-offset-8 {
1105
- margin-left: 66.66666667%;
1106
- }
1107
- .col-sm-offset-7 {
1108
- margin-left: 58.33333333%;
1109
- }
1110
- .col-sm-offset-6 {
1111
- margin-left: 50%;
1112
- }
1113
- .col-sm-offset-5 {
1114
- margin-left: 41.66666667%;
1115
- }
1116
- .col-sm-offset-4 {
1117
- margin-left: 33.33333333%;
1118
- }
1119
- .col-sm-offset-3 {
1120
- margin-left: 25%;
1121
- }
1122
- .col-sm-offset-2 {
1123
- margin-left: 16.66666667%;
1124
- }
1125
- .col-sm-offset-1 {
1126
- margin-left: 8.33333333%;
1127
- }
1128
- .col-sm-offset-0 {
1129
- margin-left: 0;
1130
- }
1131
- }
1132
- @media (min-width: 992px) {
1133
- .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 {
1134
- float: left;
1135
- }
1136
- .col-md-12 {
1137
- width: 100%;
1138
- }
1139
- .col-md-11 {
1140
- width: 91.66666667%;
1141
- }
1142
- .col-md-10 {
1143
- width: 83.33333333%;
1144
- }
1145
- .col-md-9 {
1146
- width: 75%;
1147
- }
1148
- .col-md-8 {
1149
- width: 66.66666667%;
1150
- }
1151
- .col-md-7 {
1152
- width: 58.33333333%;
1153
- }
1154
- .col-md-6 {
1155
- width: 50%;
1156
- }
1157
- .col-md-5 {
1158
- width: 41.66666667%;
1159
- }
1160
- .col-md-4 {
1161
- width: 33.33333333%;
1162
- }
1163
- .col-md-3 {
1164
- width: 25%;
1165
- }
1166
- .col-md-2 {
1167
- width: 16.66666667%;
1168
- }
1169
- .col-md-1 {
1170
- width: 8.33333333%;
1171
- }
1172
- .col-md-pull-12 {
1173
- right: 100%;
1174
- }
1175
- .col-md-pull-11 {
1176
- right: 91.66666667%;
1177
- }
1178
- .col-md-pull-10 {
1179
- right: 83.33333333%;
1180
- }
1181
- .col-md-pull-9 {
1182
- right: 75%;
1183
- }
1184
- .col-md-pull-8 {
1185
- right: 66.66666667%;
1186
- }
1187
- .col-md-pull-7 {
1188
- right: 58.33333333%;
1189
- }
1190
- .col-md-pull-6 {
1191
- right: 50%;
1192
- }
1193
- .col-md-pull-5 {
1194
- right: 41.66666667%;
1195
- }
1196
- .col-md-pull-4 {
1197
- right: 33.33333333%;
1198
- }
1199
- .col-md-pull-3 {
1200
- right: 25%;
1201
- }
1202
- .col-md-pull-2 {
1203
- right: 16.66666667%;
1204
- }
1205
- .col-md-pull-1 {
1206
- right: 8.33333333%;
1207
- }
1208
- .col-md-pull-0 {
1209
- right: auto;
1210
- }
1211
- .col-md-push-12 {
1212
- left: 100%;
1213
- }
1214
- .col-md-push-11 {
1215
- left: 91.66666667%;
1216
- }
1217
- .col-md-push-10 {
1218
- left: 83.33333333%;
1219
- }
1220
- .col-md-push-9 {
1221
- left: 75%;
1222
- }
1223
- .col-md-push-8 {
1224
- left: 66.66666667%;
1225
- }
1226
- .col-md-push-7 {
1227
- left: 58.33333333%;
1228
- }
1229
- .col-md-push-6 {
1230
- left: 50%;
1231
- }
1232
- .col-md-push-5 {
1233
- left: 41.66666667%;
1234
- }
1235
- .col-md-push-4 {
1236
- left: 33.33333333%;
1237
- }
1238
- .col-md-push-3 {
1239
- left: 25%;
1240
- }
1241
- .col-md-push-2 {
1242
- left: 16.66666667%;
1243
- }
1244
- .col-md-push-1 {
1245
- left: 8.33333333%;
1246
- }
1247
- .col-md-push-0 {
1248
- left: auto;
1249
- }
1250
- .col-md-offset-12 {
1251
- margin-left: 100%;
1252
- }
1253
- .col-md-offset-11 {
1254
- margin-left: 91.66666667%;
1255
- }
1256
- .col-md-offset-10 {
1257
- margin-left: 83.33333333%;
1258
- }
1259
- .col-md-offset-9 {
1260
- margin-left: 75%;
1261
- }
1262
- .col-md-offset-8 {
1263
- margin-left: 66.66666667%;
1264
- }
1265
- .col-md-offset-7 {
1266
- margin-left: 58.33333333%;
1267
- }
1268
- .col-md-offset-6 {
1269
- margin-left: 50%;
1270
- }
1271
- .col-md-offset-5 {
1272
- margin-left: 41.66666667%;
1273
- }
1274
- .col-md-offset-4 {
1275
- margin-left: 33.33333333%;
1276
- }
1277
- .col-md-offset-3 {
1278
- margin-left: 25%;
1279
- }
1280
- .col-md-offset-2 {
1281
- margin-left: 16.66666667%;
1282
- }
1283
- .col-md-offset-1 {
1284
- margin-left: 8.33333333%;
1285
- }
1286
- .col-md-offset-0 {
1287
- margin-left: 0;
1288
- }
1289
- }
1290
- @media (min-width: 1200px) {
1291
- .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 {
1292
- float: left;
1293
- }
1294
- .col-lg-12 {
1295
- width: 100%;
1296
- }
1297
- .col-lg-11 {
1298
- width: 91.66666667%;
1299
- }
1300
- .col-lg-10 {
1301
- width: 83.33333333%;
1302
- }
1303
- .col-lg-9 {
1304
- width: 75%;
1305
- }
1306
- .col-lg-8 {
1307
- width: 66.66666667%;
1308
- }
1309
- .col-lg-7 {
1310
- width: 58.33333333%;
1311
- }
1312
- .col-lg-6 {
1313
- width: 50%;
1314
- }
1315
- .col-lg-5 {
1316
- width: 41.66666667%;
1317
- }
1318
- .col-lg-4 {
1319
- width: 33.33333333%;
1320
- }
1321
- .col-lg-3 {
1322
- width: 25%;
1323
- }
1324
- .col-lg-2 {
1325
- width: 16.66666667%;
1326
- }
1327
- .col-lg-1 {
1328
- width: 8.33333333%;
1329
- }
1330
- .col-lg-pull-12 {
1331
- right: 100%;
1332
- }
1333
- .col-lg-pull-11 {
1334
- right: 91.66666667%;
1335
- }
1336
- .col-lg-pull-10 {
1337
- right: 83.33333333%;
1338
- }
1339
- .col-lg-pull-9 {
1340
- right: 75%;
1341
- }
1342
- .col-lg-pull-8 {
1343
- right: 66.66666667%;
1344
- }
1345
- .col-lg-pull-7 {
1346
- right: 58.33333333%;
1347
- }
1348
- .col-lg-pull-6 {
1349
- right: 50%;
1350
- }
1351
- .col-lg-pull-5 {
1352
- right: 41.66666667%;
1353
- }
1354
- .col-lg-pull-4 {
1355
- right: 33.33333333%;
1356
- }
1357
- .col-lg-pull-3 {
1358
- right: 25%;
1359
- }
1360
- .col-lg-pull-2 {
1361
- right: 16.66666667%;
1362
- }
1363
- .col-lg-pull-1 {
1364
- right: 8.33333333%;
1365
- }
1366
- .col-lg-pull-0 {
1367
- right: auto;
1368
- }
1369
- .col-lg-push-12 {
1370
- left: 100%;
1371
- }
1372
- .col-lg-push-11 {
1373
- left: 91.66666667%;
1374
- }
1375
- .col-lg-push-10 {
1376
- left: 83.33333333%;
1377
- }
1378
- .col-lg-push-9 {
1379
- left: 75%;
1380
- }
1381
- .col-lg-push-8 {
1382
- left: 66.66666667%;
1383
- }
1384
- .col-lg-push-7 {
1385
- left: 58.33333333%;
1386
- }
1387
- .col-lg-push-6 {
1388
- left: 50%;
1389
- }
1390
- .col-lg-push-5 {
1391
- left: 41.66666667%;
1392
- }
1393
- .col-lg-push-4 {
1394
- left: 33.33333333%;
1395
- }
1396
- .col-lg-push-3 {
1397
- left: 25%;
1398
- }
1399
- .col-lg-push-2 {
1400
- left: 16.66666667%;
1401
- }
1402
- .col-lg-push-1 {
1403
- left: 8.33333333%;
1404
- }
1405
- .col-lg-push-0 {
1406
- left: auto;
1407
- }
1408
- .col-lg-offset-12 {
1409
- margin-left: 100%;
1410
- }
1411
- .col-lg-offset-11 {
1412
- margin-left: 91.66666667%;
1413
- }
1414
- .col-lg-offset-10 {
1415
- margin-left: 83.33333333%;
1416
- }
1417
- .col-lg-offset-9 {
1418
- margin-left: 75%;
1419
- }
1420
- .col-lg-offset-8 {
1421
- margin-left: 66.66666667%;
1422
- }
1423
- .col-lg-offset-7 {
1424
- margin-left: 58.33333333%;
1425
- }
1426
- .col-lg-offset-6 {
1427
- margin-left: 50%;
1428
- }
1429
- .col-lg-offset-5 {
1430
- margin-left: 41.66666667%;
1431
- }
1432
- .col-lg-offset-4 {
1433
- margin-left: 33.33333333%;
1434
- }
1435
- .col-lg-offset-3 {
1436
- margin-left: 25%;
1437
- }
1438
- .col-lg-offset-2 {
1439
- margin-left: 16.66666667%;
1440
- }
1441
- .col-lg-offset-1 {
1442
- margin-left: 8.33333333%;
1443
- }
1444
- .col-lg-offset-0 {
1445
- margin-left: 0;
1446
- }
1447
- }
1448
- table {
1449
- background-color: transparent;
1450
- }
1451
- caption {
1452
- padding-top: 8px;
1453
- padding-bottom: 8px;
1454
- color: #777;
1455
- text-align: left;
1456
- }
1457
- th {
1458
- text-align: left;
1459
- }
1460
- .table {
1461
- width: 100%;
1462
- max-width: 100%;
1463
- margin-bottom: 20px;
1464
- }
1465
- .table > thead > tr > th,
1466
- .table > tbody > tr > th,
1467
- .table > tfoot > tr > th,
1468
- .table > thead > tr > td,
1469
- .table > tbody > tr > td,
1470
- .table > tfoot > tr > td {
1471
- padding: 8px;
1472
- line-height: 1.42857143;
1473
- vertical-align: top;
1474
- border-top: 1px solid #ddd;
1475
- }
1476
- .table > thead > tr > th {
1477
- vertical-align: bottom;
1478
- border-bottom: 2px solid #ddd;
1479
- }
1480
- .table > caption + thead > tr:first-child > th,
1481
- .table > colgroup + thead > tr:first-child > th,
1482
- .table > thead:first-child > tr:first-child > th,
1483
- .table > caption + thead > tr:first-child > td,
1484
- .table > colgroup + thead > tr:first-child > td,
1485
- .table > thead:first-child > tr:first-child > td {
1486
- border-top: 0;
1487
- }
1488
- .table > tbody + tbody {
1489
- border-top: 2px solid #ddd;
1490
- }
1491
- .table .table {
1492
- background-color: #fff;
1493
- }
1494
- .table-condensed > thead > tr > th,
1495
- .table-condensed > tbody > tr > th,
1496
- .table-condensed > tfoot > tr > th,
1497
- .table-condensed > thead > tr > td,
1498
- .table-condensed > tbody > tr > td,
1499
- .table-condensed > tfoot > tr > td {
1500
- padding: 5px;
1501
- }
1502
- .table-bordered {
1503
- border: 1px solid #ddd;
1504
- }
1505
- .table-bordered > thead > tr > th,
1506
- .table-bordered > tbody > tr > th,
1507
- .table-bordered > tfoot > tr > th,
1508
- .table-bordered > thead > tr > td,
1509
- .table-bordered > tbody > tr > td,
1510
- .table-bordered > tfoot > tr > td {
1511
- border: 1px solid #ddd;
1512
- }
1513
- .table-bordered > thead > tr > th,
1514
- .table-bordered > thead > tr > td {
1515
- border-bottom-width: 2px;
1516
- }
1517
- .table-striped > tbody > tr:nth-of-type(odd) {
1518
- background-color: #f9f9f9;
1519
- }
1520
- .table-hover > tbody > tr:hover {
1521
- background-color: #f5f5f5;
1522
- }
1523
- table col[class*="col-"] {
1524
- position: static;
1525
- display: table-column;
1526
- float: none;
1527
- }
1528
- table td[class*="col-"],
1529
- table th[class*="col-"] {
1530
- position: static;
1531
- display: table-cell;
1532
- float: none;
1533
- }
1534
- .table > thead > tr > td.active,
1535
- .table > tbody > tr > td.active,
1536
- .table > tfoot > tr > td.active,
1537
- .table > thead > tr > th.active,
1538
- .table > tbody > tr > th.active,
1539
- .table > tfoot > tr > th.active,
1540
- .table > thead > tr.active > td,
1541
- .table > tbody > tr.active > td,
1542
- .table > tfoot > tr.active > td,
1543
- .table > thead > tr.active > th,
1544
- .table > tbody > tr.active > th,
1545
- .table > tfoot > tr.active > th {
1546
- background-color: #f5f5f5;
1547
- }
1548
- .table-hover > tbody > tr > td.active:hover,
1549
- .table-hover > tbody > tr > th.active:hover,
1550
- .table-hover > tbody > tr.active:hover > td,
1551
- .table-hover > tbody > tr:hover > .active,
1552
- .table-hover > tbody > tr.active:hover > th {
1553
- background-color: #e8e8e8;
1554
- }
1555
- .table > thead > tr > td.success,
1556
- .table > tbody > tr > td.success,
1557
- .table > tfoot > tr > td.success,
1558
- .table > thead > tr > th.success,
1559
- .table > tbody > tr > th.success,
1560
- .table > tfoot > tr > th.success,
1561
- .table > thead > tr.success > td,
1562
- .table > tbody > tr.success > td,
1563
- .table > tfoot > tr.success > td,
1564
- .table > thead > tr.success > th,
1565
- .table > tbody > tr.success > th,
1566
- .table > tfoot > tr.success > th {
1567
- background-color: #dff0d8;
1568
- }
1569
- .table-hover > tbody > tr > td.success:hover,
1570
- .table-hover > tbody > tr > th.success:hover,
1571
- .table-hover > tbody > tr.success:hover > td,
1572
- .table-hover > tbody > tr:hover > .success,
1573
- .table-hover > tbody > tr.success:hover > th {
1574
- background-color: #d0e9c6;
1575
- }
1576
- .table > thead > tr > td.info,
1577
- .table > tbody > tr > td.info,
1578
- .table > tfoot > tr > td.info,
1579
- .table > thead > tr > th.info,
1580
- .table > tbody > tr > th.info,
1581
- .table > tfoot > tr > th.info,
1582
- .table > thead > tr.info > td,
1583
- .table > tbody > tr.info > td,
1584
- .table > tfoot > tr.info > td,
1585
- .table > thead > tr.info > th,
1586
- .table > tbody > tr.info > th,
1587
- .table > tfoot > tr.info > th {
1588
- background-color: #d9edf7;
1589
- }
1590
- .table-hover > tbody > tr > td.info:hover,
1591
- .table-hover > tbody > tr > th.info:hover,
1592
- .table-hover > tbody > tr.info:hover > td,
1593
- .table-hover > tbody > tr:hover > .info,
1594
- .table-hover > tbody > tr.info:hover > th {
1595
- background-color: #c4e3f3;
1596
- }
1597
- .table > thead > tr > td.warning,
1598
- .table > tbody > tr > td.warning,
1599
- .table > tfoot > tr > td.warning,
1600
- .table > thead > tr > th.warning,
1601
- .table > tbody > tr > th.warning,
1602
- .table > tfoot > tr > th.warning,
1603
- .table > thead > tr.warning > td,
1604
- .table > tbody > tr.warning > td,
1605
- .table > tfoot > tr.warning > td,
1606
- .table > thead > tr.warning > th,
1607
- .table > tbody > tr.warning > th,
1608
- .table > tfoot > tr.warning > th {
1609
- background-color: #fcf8e3;
1610
- }
1611
- .table-hover > tbody > tr > td.warning:hover,
1612
- .table-hover > tbody > tr > th.warning:hover,
1613
- .table-hover > tbody > tr.warning:hover > td,
1614
- .table-hover > tbody > tr:hover > .warning,
1615
- .table-hover > tbody > tr.warning:hover > th {
1616
- background-color: #faf2cc;
1617
- }
1618
- .table > thead > tr > td.danger,
1619
- .table > tbody > tr > td.danger,
1620
- .table > tfoot > tr > td.danger,
1621
- .table > thead > tr > th.danger,
1622
- .table > tbody > tr > th.danger,
1623
- .table > tfoot > tr > th.danger,
1624
- .table > thead > tr.danger > td,
1625
- .table > tbody > tr.danger > td,
1626
- .table > tfoot > tr.danger > td,
1627
- .table > thead > tr.danger > th,
1628
- .table > tbody > tr.danger > th,
1629
- .table > tfoot > tr.danger > th {
1630
- background-color: #f2dede;
1631
- }
1632
- .table-hover > tbody > tr > td.danger:hover,
1633
- .table-hover > tbody > tr > th.danger:hover,
1634
- .table-hover > tbody > tr.danger:hover > td,
1635
- .table-hover > tbody > tr:hover > .danger,
1636
- .table-hover > tbody > tr.danger:hover > th {
1637
- background-color: #ebcccc;
1638
- }
1639
- .table-responsive {
1640
- min-height: .01%;
1641
- overflow-x: auto;
1642
- }
1643
- @media screen and (max-width: 767px) {
1644
- .table-responsive {
1645
- width: 100%;
1646
- margin-bottom: 15px;
1647
- overflow-y: hidden;
1648
- -ms-overflow-style: -ms-autohiding-scrollbar;
1649
- border: 1px solid #ddd;
1650
- }
1651
- .table-responsive > .table {
1652
- margin-bottom: 0;
1653
- }
1654
- .table-responsive > .table > thead > tr > th,
1655
- .table-responsive > .table > tbody > tr > th,
1656
- .table-responsive > .table > tfoot > tr > th,
1657
- .table-responsive > .table > thead > tr > td,
1658
- .table-responsive > .table > tbody > tr > td,
1659
- .table-responsive > .table > tfoot > tr > td {
1660
- white-space: nowrap;
1661
- }
1662
- .table-responsive > .table-bordered {
1663
- border: 0;
1664
- }
1665
- .table-responsive > .table-bordered > thead > tr > th:first-child,
1666
- .table-responsive > .table-bordered > tbody > tr > th:first-child,
1667
- .table-responsive > .table-bordered > tfoot > tr > th:first-child,
1668
- .table-responsive > .table-bordered > thead > tr > td:first-child,
1669
- .table-responsive > .table-bordered > tbody > tr > td:first-child,
1670
- .table-responsive > .table-bordered > tfoot > tr > td:first-child {
1671
- border-left: 0;
1672
- }
1673
- .table-responsive > .table-bordered > thead > tr > th:last-child,
1674
- .table-responsive > .table-bordered > tbody > tr > th:last-child,
1675
- .table-responsive > .table-bordered > tfoot > tr > th:last-child,
1676
- .table-responsive > .table-bordered > thead > tr > td:last-child,
1677
- .table-responsive > .table-bordered > tbody > tr > td:last-child,
1678
- .table-responsive > .table-bordered > tfoot > tr > td:last-child {
1679
- border-right: 0;
1680
- }
1681
- .table-responsive > .table-bordered > tbody > tr:last-child > th,
1682
- .table-responsive > .table-bordered > tfoot > tr:last-child > th,
1683
- .table-responsive > .table-bordered > tbody > tr:last-child > td,
1684
- .table-responsive > .table-bordered > tfoot > tr:last-child > td {
1685
- border-bottom: 0;
1686
- }
1687
- }
1688
- fieldset {
1689
- min-width: 0;
1690
- padding: 0;
1691
- margin: 0;
1692
- border: 0;
1693
- }
1694
- legend {
1695
- display: block;
1696
- width: 100%;
1697
- padding: 0;
1698
- margin-bottom: 20px;
1699
- font-size: 21px;
1700
- line-height: inherit;
1701
- color: #333;
1702
- border: 0;
1703
- border-bottom: 1px solid #e5e5e5;
1704
- }
1705
- label {
1706
- display: inline-block;
1707
- max-width: 100%;
1708
- margin-bottom: 5px;
1709
- font-weight: bold;
1710
- }
1711
- input[type="search"] {
1712
- -webkit-box-sizing: border-box;
1713
- -moz-box-sizing: border-box;
1714
- box-sizing: border-box;
1715
- }
1716
- input[type="radio"],
1717
- input[type="checkbox"] {
1718
- margin: 4px 0 0;
1719
- margin-top: 1px \9;
1720
- line-height: normal;
1721
- }
1722
- input[type="file"] {
1723
- display: block;
1724
- }
1725
- input[type="range"] {
1726
- display: block;
1727
- width: 100%;
1728
- }
1729
- select[multiple],
1730
- select[size] {
1731
- height: auto;
1732
- }
1733
- input[type="file"]:focus,
1734
- input[type="radio"]:focus,
1735
- input[type="checkbox"]:focus {
1736
- outline: thin dotted;
1737
- outline: 5px auto -webkit-focus-ring-color;
1738
- outline-offset: -2px;
1739
- }
1740
- output {
1741
- display: block;
1742
- padding-top: 7px;
1743
- font-size: 14px;
1744
- line-height: 1.42857143;
1745
- color: #555;
1746
- }
1747
- .form-control {
1748
- display: block;
1749
- width: 100%;
1750
- height: 34px;
1751
- padding: 6px 12px;
1752
- font-size: 14px;
1753
- line-height: 1.42857143;
1754
- color: #555;
1755
- background-color: #fff;
1756
- background-image: none;
1757
- border: 1px solid #ccc;
1758
- border-radius: 4px;
1759
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
1760
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
1761
- -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
1762
- -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1763
- transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
1764
- }
1765
- .form-control:focus {
1766
- border-color: #66afe9;
1767
- outline: 0;
1768
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
1769
- box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, .6);
1770
- }
1771
- .form-control::-moz-placeholder {
1772
- color: #999;
1773
- opacity: 1;
1774
- }
1775
- .form-control:-ms-input-placeholder {
1776
- color: #999;
1777
- }
1778
- .form-control::-webkit-input-placeholder {
1779
- color: #999;
1780
- }
1781
- .form-control::-ms-expand {
1782
- background-color: transparent;
1783
- border: 0;
1784
- }
1785
- .form-control[disabled],
1786
- .form-control[readonly],
1787
- fieldset[disabled] .form-control {
1788
- background-color: #eee;
1789
- opacity: 1;
1790
- }
1791
- .form-control[disabled],
1792
- fieldset[disabled] .form-control {
1793
- cursor: not-allowed;
1794
- }
1795
- textarea.form-control {
1796
- height: auto;
1797
- }
1798
- input[type="search"] {
1799
- -webkit-appearance: none;
1800
- }
1801
- @media screen and (-webkit-min-device-pixel-ratio: 0) {
1802
- input[type="date"].form-control,
1803
- input[type="time"].form-control,
1804
- input[type="datetime-local"].form-control,
1805
- input[type="month"].form-control {
1806
- line-height: 34px;
1807
- }
1808
- input[type="date"].input-sm,
1809
- input[type="time"].input-sm,
1810
- input[type="datetime-local"].input-sm,
1811
- input[type="month"].input-sm,
1812
- .input-group-sm input[type="date"],
1813
- .input-group-sm input[type="time"],
1814
- .input-group-sm input[type="datetime-local"],
1815
- .input-group-sm input[type="month"] {
1816
- line-height: 30px;
1817
- }
1818
- input[type="date"].input-lg,
1819
- input[type="time"].input-lg,
1820
- input[type="datetime-local"].input-lg,
1821
- input[type="month"].input-lg,
1822
- .input-group-lg input[type="date"],
1823
- .input-group-lg input[type="time"],
1824
- .input-group-lg input[type="datetime-local"],
1825
- .input-group-lg input[type="month"] {
1826
- line-height: 46px;
1827
- }
1828
- }
1829
- .form-group {
1830
- margin-bottom: 15px;
1831
- }
1832
- .radio,
1833
- .checkbox {
1834
- position: relative;
1835
- display: block;
1836
- margin-top: 10px;
1837
- margin-bottom: 10px;
1838
- }
1839
- .radio label,
1840
- .checkbox label {
1841
- min-height: 20px;
1842
- padding-left: 20px;
1843
- margin-bottom: 0;
1844
- font-weight: normal;
1845
- cursor: pointer;
1846
- }
1847
- .radio input[type="radio"],
1848
- .radio-inline input[type="radio"],
1849
- .checkbox input[type="checkbox"],
1850
- .checkbox-inline input[type="checkbox"] {
1851
- position: absolute;
1852
- margin-top: 4px \9;
1853
- margin-left: -20px;
1854
- }
1855
- .radio + .radio,
1856
- .checkbox + .checkbox {
1857
- margin-top: -5px;
1858
- }
1859
- .radio-inline,
1860
- .checkbox-inline {
1861
- position: relative;
1862
- display: inline-block;
1863
- padding-left: 20px;
1864
- margin-bottom: 0;
1865
- font-weight: normal;
1866
- vertical-align: middle;
1867
- cursor: pointer;
1868
- }
1869
- .radio-inline + .radio-inline,
1870
- .checkbox-inline + .checkbox-inline {
1871
- margin-top: 0;
1872
- margin-left: 10px;
1873
- }
1874
- input[type="radio"][disabled],
1875
- input[type="checkbox"][disabled],
1876
- input[type="radio"].disabled,
1877
- input[type="checkbox"].disabled,
1878
- fieldset[disabled] input[type="radio"],
1879
- fieldset[disabled] input[type="checkbox"] {
1880
- cursor: not-allowed;
1881
- }
1882
- .radio-inline.disabled,
1883
- .checkbox-inline.disabled,
1884
- fieldset[disabled] .radio-inline,
1885
- fieldset[disabled] .checkbox-inline {
1886
- cursor: not-allowed;
1887
- }
1888
- .radio.disabled label,
1889
- .checkbox.disabled label,
1890
- fieldset[disabled] .radio label,
1891
- fieldset[disabled] .checkbox label {
1892
- cursor: not-allowed;
1893
- }
1894
- .form-control-static {
1895
- min-height: 34px;
1896
- padding-top: 7px;
1897
- padding-bottom: 7px;
1898
- margin-bottom: 0;
1899
- }
1900
- .form-control-static.input-lg,
1901
- .form-control-static.input-sm {
1902
- padding-right: 0;
1903
- padding-left: 0;
1904
- }
1905
- .input-sm {
1906
- height: 30px;
1907
- padding: 5px 10px;
1908
- font-size: 12px;
1909
- line-height: 1.5;
1910
- border-radius: 3px;
1911
- }
1912
- select.input-sm {
1913
- height: 30px;
1914
- line-height: 30px;
1915
- }
1916
- textarea.input-sm,
1917
- select[multiple].input-sm {
1918
- height: auto;
1919
- }
1920
- .form-group-sm .form-control {
1921
- height: 30px;
1922
- padding: 5px 10px;
1923
- font-size: 12px;
1924
- line-height: 1.5;
1925
- border-radius: 3px;
1926
- }
1927
- .form-group-sm select.form-control {
1928
- height: 30px;
1929
- line-height: 30px;
1930
- }
1931
- .form-group-sm textarea.form-control,
1932
- .form-group-sm select[multiple].form-control {
1933
- height: auto;
1934
- }
1935
- .form-group-sm .form-control-static {
1936
- height: 30px;
1937
- min-height: 32px;
1938
- padding: 6px 10px;
1939
- font-size: 12px;
1940
- line-height: 1.5;
1941
- }
1942
- .input-lg {
1943
- height: 46px;
1944
- padding: 10px 16px;
1945
- font-size: 18px;
1946
- line-height: 1.3333333;
1947
- border-radius: 6px;
1948
- }
1949
- select.input-lg {
1950
- height: 46px;
1951
- line-height: 46px;
1952
- }
1953
- textarea.input-lg,
1954
- select[multiple].input-lg {
1955
- height: auto;
1956
- }
1957
- .form-group-lg .form-control {
1958
- height: 46px;
1959
- padding: 10px 16px;
1960
- font-size: 18px;
1961
- line-height: 1.3333333;
1962
- border-radius: 6px;
1963
- }
1964
- .form-group-lg select.form-control {
1965
- height: 46px;
1966
- line-height: 46px;
1967
- }
1968
- .form-group-lg textarea.form-control,
1969
- .form-group-lg select[multiple].form-control {
1970
- height: auto;
1971
- }
1972
- .form-group-lg .form-control-static {
1973
- height: 46px;
1974
- min-height: 38px;
1975
- padding: 11px 16px;
1976
- font-size: 18px;
1977
- line-height: 1.3333333;
1978
- }
1979
- .has-feedback {
1980
- position: relative;
1981
- }
1982
- .has-feedback .form-control {
1983
- padding-right: 42.5px;
1984
- }
1985
- .form-control-feedback {
1986
- position: absolute;
1987
- top: 0;
1988
- right: 0;
1989
- z-index: 2;
1990
- display: block;
1991
- width: 34px;
1992
- height: 34px;
1993
- line-height: 34px;
1994
- text-align: center;
1995
- pointer-events: none;
1996
- }
1997
- .input-lg + .form-control-feedback,
1998
- .input-group-lg + .form-control-feedback,
1999
- .form-group-lg .form-control + .form-control-feedback {
2000
- width: 46px;
2001
- height: 46px;
2002
- line-height: 46px;
2003
- }
2004
- .input-sm + .form-control-feedback,
2005
- .input-group-sm + .form-control-feedback,
2006
- .form-group-sm .form-control + .form-control-feedback {
2007
- width: 30px;
2008
- height: 30px;
2009
- line-height: 30px;
2010
- }
2011
- .has-success .help-block,
2012
- .has-success .control-label,
2013
- .has-success .radio,
2014
- .has-success .checkbox,
2015
- .has-success .radio-inline,
2016
- .has-success .checkbox-inline,
2017
- .has-success.radio label,
2018
- .has-success.checkbox label,
2019
- .has-success.radio-inline label,
2020
- .has-success.checkbox-inline label {
2021
- color: #3c763d;
2022
- }
2023
- .has-success .form-control {
2024
- border-color: #3c763d;
2025
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2026
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2027
- }
2028
- .has-success .form-control:focus {
2029
- border-color: #2b542c;
2030
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2031
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
2032
- }
2033
- .has-success .input-group-addon {
2034
- color: #3c763d;
2035
- background-color: #dff0d8;
2036
- border-color: #3c763d;
2037
- }
2038
- .has-success .form-control-feedback {
2039
- color: #3c763d;
2040
- }
2041
- .has-warning .help-block,
2042
- .has-warning .control-label,
2043
- .has-warning .radio,
2044
- .has-warning .checkbox,
2045
- .has-warning .radio-inline,
2046
- .has-warning .checkbox-inline,
2047
- .has-warning.radio label,
2048
- .has-warning.checkbox label,
2049
- .has-warning.radio-inline label,
2050
- .has-warning.checkbox-inline label {
2051
- color: #8a6d3b;
2052
- }
2053
- .has-warning .form-control {
2054
- border-color: #8a6d3b;
2055
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2056
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2057
- }
2058
- .has-warning .form-control:focus {
2059
- border-color: #66512c;
2060
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2061
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
2062
- }
2063
- .has-warning .input-group-addon {
2064
- color: #8a6d3b;
2065
- background-color: #fcf8e3;
2066
- border-color: #8a6d3b;
2067
- }
2068
- .has-warning .form-control-feedback {
2069
- color: #8a6d3b;
2070
- }
2071
- .has-error .help-block,
2072
- .has-error .control-label,
2073
- .has-error .radio,
2074
- .has-error .checkbox,
2075
- .has-error .radio-inline,
2076
- .has-error .checkbox-inline,
2077
- .has-error.radio label,
2078
- .has-error.checkbox label,
2079
- .has-error.radio-inline label,
2080
- .has-error.checkbox-inline label {
2081
- color: #a94442;
2082
- }
2083
- .has-error .form-control {
2084
- border-color: #a94442;
2085
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2086
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
2087
- }
2088
- .has-error .form-control:focus {
2089
- border-color: #843534;
2090
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2091
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
2092
- }
2093
- .has-error .input-group-addon {
2094
- color: #a94442;
2095
- background-color: #f2dede;
2096
- border-color: #a94442;
2097
- }
2098
- .has-error .form-control-feedback {
2099
- color: #a94442;
2100
- }
2101
- .has-feedback label ~ .form-control-feedback {
2102
- top: 25px;
2103
- }
2104
- .has-feedback label.sr-only ~ .form-control-feedback {
2105
- top: 0;
2106
- }
2107
- .help-block {
2108
- display: block;
2109
- margin-top: 5px;
2110
- margin-bottom: 10px;
2111
- color: #737373;
2112
- }
2113
- @media (min-width: 768px) {
2114
- .form-inline .form-group {
2115
- display: inline-block;
2116
- margin-bottom: 0;
2117
- vertical-align: middle;
2118
- }
2119
- .form-inline .form-control {
2120
- display: inline-block;
2121
- width: auto;
2122
- vertical-align: middle;
2123
- }
2124
- .form-inline .form-control-static {
2125
- display: inline-block;
2126
- }
2127
- .form-inline .input-group {
2128
- display: inline-table;
2129
- vertical-align: middle;
2130
- }
2131
- .form-inline .input-group .input-group-addon,
2132
- .form-inline .input-group .input-group-btn,
2133
- .form-inline .input-group .form-control {
2134
- width: auto;
2135
- }
2136
- .form-inline .input-group > .form-control {
2137
- width: 100%;
2138
- }
2139
- .form-inline .control-label {
2140
- margin-bottom: 0;
2141
- vertical-align: middle;
2142
- }
2143
- .form-inline .radio,
2144
- .form-inline .checkbox {
2145
- display: inline-block;
2146
- margin-top: 0;
2147
- margin-bottom: 0;
2148
- vertical-align: middle;
2149
- }
2150
- .form-inline .radio label,
2151
- .form-inline .checkbox label {
2152
- padding-left: 0;
2153
- }
2154
- .form-inline .radio input[type="radio"],
2155
- .form-inline .checkbox input[type="checkbox"] {
2156
- position: relative;
2157
- margin-left: 0;
2158
- }
2159
- .form-inline .has-feedback .form-control-feedback {
2160
- top: 0;
2161
- }
2162
- }
2163
- .form-horizontal .radio,
2164
- .form-horizontal .checkbox,
2165
- .form-horizontal .radio-inline,
2166
- .form-horizontal .checkbox-inline {
2167
- padding-top: 7px;
2168
- margin-top: 0;
2169
- margin-bottom: 0;
2170
- }
2171
- .form-horizontal .radio,
2172
- .form-horizontal .checkbox {
2173
- min-height: 27px;
2174
- }
2175
- .form-horizontal .form-group {
2176
- margin-right: -15px;
2177
- margin-left: -15px;
2178
- }
2179
- @media (min-width: 768px) {
2180
- .form-horizontal .control-label {
2181
- padding-top: 7px;
2182
- margin-bottom: 0;
2183
- text-align: right;
2184
- }
2185
- }
2186
- .form-horizontal .has-feedback .form-control-feedback {
2187
- right: 15px;
2188
- }
2189
- @media (min-width: 768px) {
2190
- .form-horizontal .form-group-lg .control-label {
2191
- padding-top: 11px;
2192
- font-size: 18px;
2193
- }
2194
- }
2195
- @media (min-width: 768px) {
2196
- .form-horizontal .form-group-sm .control-label {
2197
- padding-top: 6px;
2198
- font-size: 12px;
2199
- }
2200
- }
2201
- .btn {
2202
- display: inline-block;
2203
- padding: 6px 12px;
2204
- margin-bottom: 0;
2205
- font-size: 14px;
2206
- font-weight: normal;
2207
- line-height: 1.42857143;
2208
- text-align: center;
2209
- white-space: nowrap;
2210
- vertical-align: middle;
2211
- -ms-touch-action: manipulation;
2212
- touch-action: manipulation;
2213
- cursor: pointer;
2214
- -webkit-user-select: none;
2215
- -moz-user-select: none;
2216
- -ms-user-select: none;
2217
- user-select: none;
2218
- background-image: none;
2219
- border: 1px solid transparent;
2220
- border-radius: 4px;
2221
- }
2222
- .btn:focus,
2223
- .btn:active:focus,
2224
- .btn.active:focus,
2225
- .btn.focus,
2226
- .btn:active.focus,
2227
- .btn.active.focus {
2228
- outline: thin dotted;
2229
- outline: 5px auto -webkit-focus-ring-color;
2230
- outline-offset: -2px;
2231
- }
2232
- .btn:hover,
2233
- .btn:focus,
2234
- .btn.focus {
2235
- color: #333;
2236
- text-decoration: none;
2237
- }
2238
- .btn:active,
2239
- .btn.active {
2240
- background-image: none;
2241
- outline: 0;
2242
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2243
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2244
- }
2245
- .btn.disabled,
2246
- .btn[disabled],
2247
- fieldset[disabled] .btn {
2248
- cursor: not-allowed;
2249
- filter: alpha(opacity=65);
2250
- -webkit-box-shadow: none;
2251
- box-shadow: none;
2252
- opacity: .65;
2253
- }
2254
- a.btn.disabled,
2255
- fieldset[disabled] a.btn {
2256
- pointer-events: none;
2257
- }
2258
- .btn-default {
2259
- color: #333;
2260
- background-color: #fff;
2261
- border-color: #ccc;
2262
- }
2263
- .btn-default:focus,
2264
- .btn-default.focus {
2265
- color: #333;
2266
- background-color: #e6e6e6;
2267
- border-color: #8c8c8c;
2268
- }
2269
- .btn-default:hover {
2270
- color: #333;
2271
- background-color: #e6e6e6;
2272
- border-color: #adadad;
2273
- }
2274
- .btn-default:active,
2275
- .btn-default.active,
2276
- .open > .dropdown-toggle.btn-default {
2277
- color: #333;
2278
- background-color: #e6e6e6;
2279
- border-color: #adadad;
2280
- }
2281
- .btn-default:active:hover,
2282
- .btn-default.active:hover,
2283
- .open > .dropdown-toggle.btn-default:hover,
2284
- .btn-default:active:focus,
2285
- .btn-default.active:focus,
2286
- .open > .dropdown-toggle.btn-default:focus,
2287
- .btn-default:active.focus,
2288
- .btn-default.active.focus,
2289
- .open > .dropdown-toggle.btn-default.focus {
2290
- color: #333;
2291
- background-color: #d4d4d4;
2292
- border-color: #8c8c8c;
2293
- }
2294
- .btn-default:active,
2295
- .btn-default.active,
2296
- .open > .dropdown-toggle.btn-default {
2297
- background-image: none;
2298
- }
2299
- .btn-default.disabled:hover,
2300
- .btn-default[disabled]:hover,
2301
- fieldset[disabled] .btn-default:hover,
2302
- .btn-default.disabled:focus,
2303
- .btn-default[disabled]:focus,
2304
- fieldset[disabled] .btn-default:focus,
2305
- .btn-default.disabled.focus,
2306
- .btn-default[disabled].focus,
2307
- fieldset[disabled] .btn-default.focus {
2308
- background-color: #fff;
2309
- border-color: #ccc;
2310
- }
2311
- .btn-default .badge {
2312
- color: #fff;
2313
- background-color: #333;
2314
- }
2315
- .btn-primary {
2316
- color: #fff;
2317
- background-color: #337ab7;
2318
- border-color: #2e6da4;
2319
- }
2320
- .btn-primary:focus,
2321
- .btn-primary.focus {
2322
- color: #fff;
2323
- background-color: #286090;
2324
- border-color: #122b40;
2325
- }
2326
- .btn-primary:hover {
2327
- color: #fff;
2328
- background-color: #286090;
2329
- border-color: #204d74;
2330
- }
2331
- .btn-primary:active,
2332
- .btn-primary.active,
2333
- .open > .dropdown-toggle.btn-primary {
2334
- color: #fff;
2335
- background-color: #286090;
2336
- border-color: #204d74;
2337
- }
2338
- .btn-primary:active:hover,
2339
- .btn-primary.active:hover,
2340
- .open > .dropdown-toggle.btn-primary:hover,
2341
- .btn-primary:active:focus,
2342
- .btn-primary.active:focus,
2343
- .open > .dropdown-toggle.btn-primary:focus,
2344
- .btn-primary:active.focus,
2345
- .btn-primary.active.focus,
2346
- .open > .dropdown-toggle.btn-primary.focus {
2347
- color: #fff;
2348
- background-color: #204d74;
2349
- border-color: #122b40;
2350
- }
2351
- .btn-primary:active,
2352
- .btn-primary.active,
2353
- .open > .dropdown-toggle.btn-primary {
2354
- background-image: none;
2355
- }
2356
- .btn-primary.disabled:hover,
2357
- .btn-primary[disabled]:hover,
2358
- fieldset[disabled] .btn-primary:hover,
2359
- .btn-primary.disabled:focus,
2360
- .btn-primary[disabled]:focus,
2361
- fieldset[disabled] .btn-primary:focus,
2362
- .btn-primary.disabled.focus,
2363
- .btn-primary[disabled].focus,
2364
- fieldset[disabled] .btn-primary.focus {
2365
- background-color: #337ab7;
2366
- border-color: #2e6da4;
2367
- }
2368
- .btn-primary .badge {
2369
- color: #337ab7;
2370
- background-color: #fff;
2371
- }
2372
- .btn-success {
2373
- color: #fff;
2374
- background-color: #5cb85c;
2375
- border-color: #4cae4c;
2376
- }
2377
- .btn-success:focus,
2378
- .btn-success.focus {
2379
- color: #fff;
2380
- background-color: #449d44;
2381
- border-color: #255625;
2382
- }
2383
- .btn-success:hover {
2384
- color: #fff;
2385
- background-color: #449d44;
2386
- border-color: #398439;
2387
- }
2388
- .btn-success:active,
2389
- .btn-success.active,
2390
- .open > .dropdown-toggle.btn-success {
2391
- color: #fff;
2392
- background-color: #449d44;
2393
- border-color: #398439;
2394
- }
2395
- .btn-success:active:hover,
2396
- .btn-success.active:hover,
2397
- .open > .dropdown-toggle.btn-success:hover,
2398
- .btn-success:active:focus,
2399
- .btn-success.active:focus,
2400
- .open > .dropdown-toggle.btn-success:focus,
2401
- .btn-success:active.focus,
2402
- .btn-success.active.focus,
2403
- .open > .dropdown-toggle.btn-success.focus {
2404
- color: #fff;
2405
- background-color: #398439;
2406
- border-color: #255625;
2407
- }
2408
- .btn-success:active,
2409
- .btn-success.active,
2410
- .open > .dropdown-toggle.btn-success {
2411
- background-image: none;
2412
- }
2413
- .btn-success.disabled:hover,
2414
- .btn-success[disabled]:hover,
2415
- fieldset[disabled] .btn-success:hover,
2416
- .btn-success.disabled:focus,
2417
- .btn-success[disabled]:focus,
2418
- fieldset[disabled] .btn-success:focus,
2419
- .btn-success.disabled.focus,
2420
- .btn-success[disabled].focus,
2421
- fieldset[disabled] .btn-success.focus {
2422
- background-color: #5cb85c;
2423
- border-color: #4cae4c;
2424
- }
2425
- .btn-success .badge {
2426
- color: #5cb85c;
2427
- background-color: #fff;
2428
- }
2429
- .btn-info {
2430
- color: #fff;
2431
- background-color: #5bc0de;
2432
- border-color: #46b8da;
2433
- }
2434
- .btn-info:focus,
2435
- .btn-info.focus {
2436
- color: #fff;
2437
- background-color: #31b0d5;
2438
- border-color: #1b6d85;
2439
- }
2440
- .btn-info:hover {
2441
- color: #fff;
2442
- background-color: #31b0d5;
2443
- border-color: #269abc;
2444
- }
2445
- .btn-info:active,
2446
- .btn-info.active,
2447
- .open > .dropdown-toggle.btn-info {
2448
- color: #fff;
2449
- background-color: #31b0d5;
2450
- border-color: #269abc;
2451
- }
2452
- .btn-info:active:hover,
2453
- .btn-info.active:hover,
2454
- .open > .dropdown-toggle.btn-info:hover,
2455
- .btn-info:active:focus,
2456
- .btn-info.active:focus,
2457
- .open > .dropdown-toggle.btn-info:focus,
2458
- .btn-info:active.focus,
2459
- .btn-info.active.focus,
2460
- .open > .dropdown-toggle.btn-info.focus {
2461
- color: #fff;
2462
- background-color: #269abc;
2463
- border-color: #1b6d85;
2464
- }
2465
- .btn-info:active,
2466
- .btn-info.active,
2467
- .open > .dropdown-toggle.btn-info {
2468
- background-image: none;
2469
- }
2470
- .btn-info.disabled:hover,
2471
- .btn-info[disabled]:hover,
2472
- fieldset[disabled] .btn-info:hover,
2473
- .btn-info.disabled:focus,
2474
- .btn-info[disabled]:focus,
2475
- fieldset[disabled] .btn-info:focus,
2476
- .btn-info.disabled.focus,
2477
- .btn-info[disabled].focus,
2478
- fieldset[disabled] .btn-info.focus {
2479
- background-color: #5bc0de;
2480
- border-color: #46b8da;
2481
- }
2482
- .btn-info .badge {
2483
- color: #5bc0de;
2484
- background-color: #fff;
2485
- }
2486
- .btn-warning {
2487
- color: #fff;
2488
- background-color: #f0ad4e;
2489
- border-color: #eea236;
2490
- }
2491
- .btn-warning:focus,
2492
- .btn-warning.focus {
2493
- color: #fff;
2494
- background-color: #ec971f;
2495
- border-color: #985f0d;
2496
- }
2497
- .btn-warning:hover {
2498
- color: #fff;
2499
- background-color: #ec971f;
2500
- border-color: #d58512;
2501
- }
2502
- .btn-warning:active,
2503
- .btn-warning.active,
2504
- .open > .dropdown-toggle.btn-warning {
2505
- color: #fff;
2506
- background-color: #ec971f;
2507
- border-color: #d58512;
2508
- }
2509
- .btn-warning:active:hover,
2510
- .btn-warning.active:hover,
2511
- .open > .dropdown-toggle.btn-warning:hover,
2512
- .btn-warning:active:focus,
2513
- .btn-warning.active:focus,
2514
- .open > .dropdown-toggle.btn-warning:focus,
2515
- .btn-warning:active.focus,
2516
- .btn-warning.active.focus,
2517
- .open > .dropdown-toggle.btn-warning.focus {
2518
- color: #fff;
2519
- background-color: #d58512;
2520
- border-color: #985f0d;
2521
- }
2522
- .btn-warning:active,
2523
- .btn-warning.active,
2524
- .open > .dropdown-toggle.btn-warning {
2525
- background-image: none;
2526
- }
2527
- .btn-warning.disabled:hover,
2528
- .btn-warning[disabled]:hover,
2529
- fieldset[disabled] .btn-warning:hover,
2530
- .btn-warning.disabled:focus,
2531
- .btn-warning[disabled]:focus,
2532
- fieldset[disabled] .btn-warning:focus,
2533
- .btn-warning.disabled.focus,
2534
- .btn-warning[disabled].focus,
2535
- fieldset[disabled] .btn-warning.focus {
2536
- background-color: #f0ad4e;
2537
- border-color: #eea236;
2538
- }
2539
- .btn-warning .badge {
2540
- color: #f0ad4e;
2541
- background-color: #fff;
2542
- }
2543
- .btn-danger {
2544
- color: #fff;
2545
- background-color: #d9534f;
2546
- border-color: #d43f3a;
2547
- }
2548
- .btn-danger:focus,
2549
- .btn-danger.focus {
2550
- color: #fff;
2551
- background-color: #c9302c;
2552
- border-color: #761c19;
2553
- }
2554
- .btn-danger:hover {
2555
- color: #fff;
2556
- background-color: #c9302c;
2557
- border-color: #ac2925;
2558
- }
2559
- .btn-danger:active,
2560
- .btn-danger.active,
2561
- .open > .dropdown-toggle.btn-danger {
2562
- color: #fff;
2563
- background-color: #c9302c;
2564
- border-color: #ac2925;
2565
- }
2566
- .btn-danger:active:hover,
2567
- .btn-danger.active:hover,
2568
- .open > .dropdown-toggle.btn-danger:hover,
2569
- .btn-danger:active:focus,
2570
- .btn-danger.active:focus,
2571
- .open > .dropdown-toggle.btn-danger:focus,
2572
- .btn-danger:active.focus,
2573
- .btn-danger.active.focus,
2574
- .open > .dropdown-toggle.btn-danger.focus {
2575
- color: #fff;
2576
- background-color: #ac2925;
2577
- border-color: #761c19;
2578
- }
2579
- .btn-danger:active,
2580
- .btn-danger.active,
2581
- .open > .dropdown-toggle.btn-danger {
2582
- background-image: none;
2583
- }
2584
- .btn-danger.disabled:hover,
2585
- .btn-danger[disabled]:hover,
2586
- fieldset[disabled] .btn-danger:hover,
2587
- .btn-danger.disabled:focus,
2588
- .btn-danger[disabled]:focus,
2589
- fieldset[disabled] .btn-danger:focus,
2590
- .btn-danger.disabled.focus,
2591
- .btn-danger[disabled].focus,
2592
- fieldset[disabled] .btn-danger.focus {
2593
- background-color: #d9534f;
2594
- border-color: #d43f3a;
2595
- }
2596
- .btn-danger .badge {
2597
- color: #d9534f;
2598
- background-color: #fff;
2599
- }
2600
- .btn-link {
2601
- font-weight: normal;
2602
- color: #337ab7;
2603
- border-radius: 0;
2604
- }
2605
- .btn-link,
2606
- .btn-link:active,
2607
- .btn-link.active,
2608
- .btn-link[disabled],
2609
- fieldset[disabled] .btn-link {
2610
- background-color: transparent;
2611
- -webkit-box-shadow: none;
2612
- box-shadow: none;
2613
- }
2614
- .btn-link,
2615
- .btn-link:hover,
2616
- .btn-link:focus,
2617
- .btn-link:active {
2618
- border-color: transparent;
2619
- }
2620
- .btn-link:hover,
2621
- .btn-link:focus {
2622
- color: #23527c;
2623
- text-decoration: underline;
2624
- background-color: transparent;
2625
- }
2626
- .btn-link[disabled]:hover,
2627
- fieldset[disabled] .btn-link:hover,
2628
- .btn-link[disabled]:focus,
2629
- fieldset[disabled] .btn-link:focus {
2630
- color: #777;
2631
- text-decoration: none;
2632
- }
2633
- .btn-lg,
2634
- .btn-group-lg > .btn {
2635
- padding: 10px 16px;
2636
- font-size: 18px;
2637
- line-height: 1.3333333;
2638
- border-radius: 6px;
2639
- }
2640
- .btn-sm,
2641
- .btn-group-sm > .btn {
2642
- padding: 5px 10px;
2643
- font-size: 12px;
2644
- line-height: 1.5;
2645
- border-radius: 3px;
2646
- }
2647
- .btn-xs,
2648
- .btn-group-xs > .btn {
2649
- padding: 1px 5px;
2650
- font-size: 12px;
2651
- line-height: 1.5;
2652
- border-radius: 3px;
2653
- }
2654
- .btn-block {
2655
- display: block;
2656
- width: 100%;
2657
- }
2658
- .btn-block + .btn-block {
2659
- margin-top: 5px;
2660
- }
2661
- input[type="submit"].btn-block,
2662
- input[type="reset"].btn-block,
2663
- input[type="button"].btn-block {
2664
- width: 100%;
2665
- }
2666
- .fade {
2667
- opacity: 0;
2668
- -webkit-transition: opacity .15s linear;
2669
- -o-transition: opacity .15s linear;
2670
- transition: opacity .15s linear;
2671
- }
2672
- .fade.in {
2673
- opacity: 1;
2674
- }
2675
- .collapse {
2676
- display: none;
2677
- }
2678
- .collapse.in {
2679
- display: block;
2680
- }
2681
- tr.collapse.in {
2682
- display: table-row;
2683
- }
2684
- tbody.collapse.in {
2685
- display: table-row-group;
2686
- }
2687
- .collapsing {
2688
- position: relative;
2689
- height: 0;
2690
- overflow: hidden;
2691
- -webkit-transition-timing-function: ease;
2692
- -o-transition-timing-function: ease;
2693
- transition-timing-function: ease;
2694
- -webkit-transition-duration: .35s;
2695
- -o-transition-duration: .35s;
2696
- transition-duration: .35s;
2697
- -webkit-transition-property: height, visibility;
2698
- -o-transition-property: height, visibility;
2699
- transition-property: height, visibility;
2700
- }
2701
- .caret {
2702
- display: inline-block;
2703
- width: 0;
2704
- height: 0;
2705
- margin-left: 2px;
2706
- vertical-align: middle;
2707
- border-top: 4px dashed;
2708
- border-top: 4px solid \9;
2709
- border-right: 4px solid transparent;
2710
- border-left: 4px solid transparent;
2711
- }
2712
- .dropup,
2713
- .dropdown {
2714
- position: relative;
2715
- }
2716
- .dropdown-toggle:focus {
2717
- outline: 0;
2718
- }
2719
- .dropdown-menu {
2720
- position: absolute;
2721
- top: 100%;
2722
- left: 0;
2723
- z-index: 1000;
2724
- display: none;
2725
- float: left;
2726
- min-width: 160px;
2727
- padding: 5px 0;
2728
- margin: 2px 0 0;
2729
- font-size: 14px;
2730
- text-align: left;
2731
- list-style: none;
2732
- background-color: #fff;
2733
- -webkit-background-clip: padding-box;
2734
- background-clip: padding-box;
2735
- border: 1px solid #ccc;
2736
- border: 1px solid rgba(0, 0, 0, .15);
2737
- border-radius: 4px;
2738
- -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
2739
- box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
2740
- }
2741
- .dropdown-menu.pull-right {
2742
- right: 0;
2743
- left: auto;
2744
- }
2745
- .dropdown-menu .divider {
2746
- height: 1px;
2747
- margin: 9px 0;
2748
- overflow: hidden;
2749
- background-color: #e5e5e5;
2750
- }
2751
- .dropdown-menu > li > a {
2752
- display: block;
2753
- padding: 3px 20px;
2754
- clear: both;
2755
- font-weight: normal;
2756
- line-height: 1.42857143;
2757
- color: #333;
2758
- white-space: nowrap;
2759
- }
2760
- .dropdown-menu > li > a:hover,
2761
- .dropdown-menu > li > a:focus {
2762
- color: #262626;
2763
- text-decoration: none;
2764
- background-color: #f5f5f5;
2765
- }
2766
- .dropdown-menu > .active > a,
2767
- .dropdown-menu > .active > a:hover,
2768
- .dropdown-menu > .active > a:focus {
2769
- color: #fff;
2770
- text-decoration: none;
2771
- background-color: #337ab7;
2772
- outline: 0;
2773
- }
2774
- .dropdown-menu > .disabled > a,
2775
- .dropdown-menu > .disabled > a:hover,
2776
- .dropdown-menu > .disabled > a:focus {
2777
- color: #777;
2778
- }
2779
- .dropdown-menu > .disabled > a:hover,
2780
- .dropdown-menu > .disabled > a:focus {
2781
- text-decoration: none;
2782
- cursor: not-allowed;
2783
- background-color: transparent;
2784
- background-image: none;
2785
- filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
2786
- }
2787
- .open > .dropdown-menu {
2788
- display: block;
2789
- }
2790
- .open > a {
2791
- outline: 0;
2792
- }
2793
- .dropdown-menu-right {
2794
- right: 0;
2795
- left: auto;
2796
- }
2797
- .dropdown-menu-left {
2798
- right: auto;
2799
- left: 0;
2800
- }
2801
- .dropdown-header {
2802
- display: block;
2803
- padding: 3px 20px;
2804
- font-size: 12px;
2805
- line-height: 1.42857143;
2806
- color: #777;
2807
- white-space: nowrap;
2808
- }
2809
- .dropdown-backdrop {
2810
- position: fixed;
2811
- top: 0;
2812
- right: 0;
2813
- bottom: 0;
2814
- left: 0;
2815
- z-index: 990;
2816
- }
2817
- .pull-right > .dropdown-menu {
2818
- right: 0;
2819
- left: auto;
2820
- }
2821
- .dropup .caret,
2822
- .navbar-fixed-bottom .dropdown .caret {
2823
- content: "";
2824
- border-top: 0;
2825
- border-bottom: 4px dashed;
2826
- border-bottom: 4px solid \9;
2827
- }
2828
- .dropup .dropdown-menu,
2829
- .navbar-fixed-bottom .dropdown .dropdown-menu {
2830
- top: auto;
2831
- bottom: 100%;
2832
- margin-bottom: 2px;
2833
- }
2834
- @media (min-width: 768px) {
2835
- .navbar-right .dropdown-menu {
2836
- right: 0;
2837
- left: auto;
2838
- }
2839
- .navbar-right .dropdown-menu-left {
2840
- right: auto;
2841
- left: 0;
2842
- }
2843
- }
2844
- .btn-group,
2845
- .btn-group-vertical {
2846
- position: relative;
2847
- display: inline-block;
2848
- vertical-align: middle;
2849
- }
2850
- .btn-group > .btn,
2851
- .btn-group-vertical > .btn {
2852
- position: relative;
2853
- float: left;
2854
- }
2855
- .btn-group > .btn:hover,
2856
- .btn-group-vertical > .btn:hover,
2857
- .btn-group > .btn:focus,
2858
- .btn-group-vertical > .btn:focus,
2859
- .btn-group > .btn:active,
2860
- .btn-group-vertical > .btn:active,
2861
- .btn-group > .btn.active,
2862
- .btn-group-vertical > .btn.active {
2863
- z-index: 2;
2864
- }
2865
- .btn-group .btn + .btn,
2866
- .btn-group .btn + .btn-group,
2867
- .btn-group .btn-group + .btn,
2868
- .btn-group .btn-group + .btn-group {
2869
- margin-left: -1px;
2870
- }
2871
- .btn-toolbar {
2872
- margin-left: -5px;
2873
- }
2874
- .btn-toolbar .btn,
2875
- .btn-toolbar .btn-group,
2876
- .btn-toolbar .input-group {
2877
- float: left;
2878
- }
2879
- .btn-toolbar > .btn,
2880
- .btn-toolbar > .btn-group,
2881
- .btn-toolbar > .input-group {
2882
- margin-left: 5px;
2883
- }
2884
- .btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
2885
- border-radius: 0;
2886
- }
2887
- .btn-group > .btn:first-child {
2888
- margin-left: 0;
2889
- }
2890
- .btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
2891
- border-top-right-radius: 0;
2892
- border-bottom-right-radius: 0;
2893
- }
2894
- .btn-group > .btn:last-child:not(:first-child),
2895
- .btn-group > .dropdown-toggle:not(:first-child) {
2896
- border-top-left-radius: 0;
2897
- border-bottom-left-radius: 0;
2898
- }
2899
- .btn-group > .btn-group {
2900
- float: left;
2901
- }
2902
- .btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
2903
- border-radius: 0;
2904
- }
2905
- .btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child,
2906
- .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2907
- border-top-right-radius: 0;
2908
- border-bottom-right-radius: 0;
2909
- }
2910
- .btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
2911
- border-top-left-radius: 0;
2912
- border-bottom-left-radius: 0;
2913
- }
2914
- .btn-group .dropdown-toggle:active,
2915
- .btn-group.open .dropdown-toggle {
2916
- outline: 0;
2917
- }
2918
- .btn-group > .btn + .dropdown-toggle {
2919
- padding-right: 8px;
2920
- padding-left: 8px;
2921
- }
2922
- .btn-group > .btn-lg + .dropdown-toggle {
2923
- padding-right: 12px;
2924
- padding-left: 12px;
2925
- }
2926
- .btn-group.open .dropdown-toggle {
2927
- -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2928
- box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
2929
- }
2930
- .btn-group.open .dropdown-toggle.btn-link {
2931
- -webkit-box-shadow: none;
2932
- box-shadow: none;
2933
- }
2934
- .btn .caret {
2935
- margin-left: 0;
2936
- }
2937
- .btn-lg .caret {
2938
- border-width: 5px 5px 0;
2939
- border-bottom-width: 0;
2940
- }
2941
- .dropup .btn-lg .caret {
2942
- border-width: 0 5px 5px;
2943
- }
2944
- .btn-group-vertical > .btn,
2945
- .btn-group-vertical > .btn-group,
2946
- .btn-group-vertical > .btn-group > .btn {
2947
- display: block;
2948
- float: none;
2949
- width: 100%;
2950
- max-width: 100%;
2951
- }
2952
- .btn-group-vertical > .btn-group > .btn {
2953
- float: none;
2954
- }
2955
- .btn-group-vertical > .btn + .btn,
2956
- .btn-group-vertical > .btn + .btn-group,
2957
- .btn-group-vertical > .btn-group + .btn,
2958
- .btn-group-vertical > .btn-group + .btn-group {
2959
- margin-top: -1px;
2960
- margin-left: 0;
2961
- }
2962
- .btn-group-vertical > .btn:not(:first-child):not(:last-child) {
2963
- border-radius: 0;
2964
- }
2965
- .btn-group-vertical > .btn:first-child:not(:last-child) {
2966
- border-top-left-radius: 4px;
2967
- border-top-right-radius: 4px;
2968
- border-bottom-right-radius: 0;
2969
- border-bottom-left-radius: 0;
2970
- }
2971
- .btn-group-vertical > .btn:last-child:not(:first-child) {
2972
- border-top-left-radius: 0;
2973
- border-top-right-radius: 0;
2974
- border-bottom-right-radius: 4px;
2975
- border-bottom-left-radius: 4px;
2976
- }
2977
- .btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
2978
- border-radius: 0;
2979
- }
2980
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child,
2981
- .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
2982
- border-bottom-right-radius: 0;
2983
- border-bottom-left-radius: 0;
2984
- }
2985
- .btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
2986
- border-top-left-radius: 0;
2987
- border-top-right-radius: 0;
2988
- }
2989
- .btn-group-justified {
2990
- display: table;
2991
- width: 100%;
2992
- table-layout: fixed;
2993
- border-collapse: separate;
2994
- }
2995
- .btn-group-justified > .btn,
2996
- .btn-group-justified > .btn-group {
2997
- display: table-cell;
2998
- float: none;
2999
- width: 1%;
3000
- }
3001
- .btn-group-justified > .btn-group .btn {
3002
- width: 100%;
3003
- }
3004
- .btn-group-justified > .btn-group .dropdown-menu {
3005
- left: auto;
3006
- }
3007
- [data-toggle="buttons"] > .btn input[type="radio"],
3008
- [data-toggle="buttons"] > .btn-group > .btn input[type="radio"],
3009
- [data-toggle="buttons"] > .btn input[type="checkbox"],
3010
- [data-toggle="buttons"] > .btn-group > .btn input[type="checkbox"] {
3011
- position: absolute;
3012
- clip: rect(0, 0, 0, 0);
3013
- pointer-events: none;
3014
- }
3015
- .input-group {
3016
- position: relative;
3017
- display: table;
3018
- border-collapse: separate;
3019
- }
3020
- .input-group[class*="col-"] {
3021
- float: none;
3022
- padding-right: 0;
3023
- padding-left: 0;
3024
- }
3025
- .input-group .form-control {
3026
- position: relative;
3027
- z-index: 2;
3028
- float: left;
3029
- width: 100%;
3030
- margin-bottom: 0;
3031
- }
3032
- .input-group .form-control:focus {
3033
- z-index: 3;
3034
- }
3035
- .input-group-lg > .form-control,
3036
- .input-group-lg > .input-group-addon,
3037
- .input-group-lg > .input-group-btn > .btn {
3038
- height: 46px;
3039
- padding: 10px 16px;
3040
- font-size: 18px;
3041
- line-height: 1.3333333;
3042
- border-radius: 6px;
3043
- }
3044
- select.input-group-lg > .form-control,
3045
- select.input-group-lg > .input-group-addon,
3046
- select.input-group-lg > .input-group-btn > .btn {
3047
- height: 46px;
3048
- line-height: 46px;
3049
- }
3050
- textarea.input-group-lg > .form-control,
3051
- textarea.input-group-lg > .input-group-addon,
3052
- textarea.input-group-lg > .input-group-btn > .btn,
3053
- select[multiple].input-group-lg > .form-control,
3054
- select[multiple].input-group-lg > .input-group-addon,
3055
- select[multiple].input-group-lg > .input-group-btn > .btn {
3056
- height: auto;
3057
- }
3058
- .input-group-sm > .form-control,
3059
- .input-group-sm > .input-group-addon,
3060
- .input-group-sm > .input-group-btn > .btn {
3061
- height: 30px;
3062
- padding: 5px 10px;
3063
- font-size: 12px;
3064
- line-height: 1.5;
3065
- border-radius: 3px;
3066
- }
3067
- select.input-group-sm > .form-control,
3068
- select.input-group-sm > .input-group-addon,
3069
- select.input-group-sm > .input-group-btn > .btn {
3070
- height: 30px;
3071
- line-height: 30px;
3072
- }
3073
- textarea.input-group-sm > .form-control,
3074
- textarea.input-group-sm > .input-group-addon,
3075
- textarea.input-group-sm > .input-group-btn > .btn,
3076
- select[multiple].input-group-sm > .form-control,
3077
- select[multiple].input-group-sm > .input-group-addon,
3078
- select[multiple].input-group-sm > .input-group-btn > .btn {
3079
- height: auto;
3080
- }
3081
- .input-group-addon,
3082
- .input-group-btn,
3083
- .input-group .form-control {
3084
- display: table-cell;
3085
- }
3086
- .input-group-addon:not(:first-child):not(:last-child),
3087
- .input-group-btn:not(:first-child):not(:last-child),
3088
- .input-group .form-control:not(:first-child):not(:last-child) {
3089
- border-radius: 0;
3090
- }
3091
- .input-group-addon,
3092
- .input-group-btn {
3093
- width: 1%;
3094
- white-space: nowrap;
3095
- vertical-align: middle;
3096
- }
3097
- .input-group-addon {
3098
- padding: 6px 12px;
3099
- font-size: 14px;
3100
- font-weight: normal;
3101
- line-height: 1;
3102
- color: #555;
3103
- text-align: center;
3104
- background-color: #eee;
3105
- border: 1px solid #ccc;
3106
- border-radius: 4px;
3107
- }
3108
- .input-group-addon.input-sm {
3109
- padding: 5px 10px;
3110
- font-size: 12px;
3111
- border-radius: 3px;
3112
- }
3113
- .input-group-addon.input-lg {
3114
- padding: 10px 16px;
3115
- font-size: 18px;
3116
- border-radius: 6px;
3117
- }
3118
- .input-group-addon input[type="radio"],
3119
- .input-group-addon input[type="checkbox"] {
3120
- margin-top: 0;
3121
- }
3122
- .input-group .form-control:first-child,
3123
- .input-group-addon:first-child,
3124
- .input-group-btn:first-child > .btn,
3125
- .input-group-btn:first-child > .btn-group > .btn,
3126
- .input-group-btn:first-child > .dropdown-toggle,
3127
- .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
3128
- .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
3129
- border-top-right-radius: 0;
3130
- border-bottom-right-radius: 0;
3131
- }
3132
- .input-group-addon:first-child {
3133
- border-right: 0;
3134
- }
3135
- .input-group .form-control:last-child,
3136
- .input-group-addon:last-child,
3137
- .input-group-btn:last-child > .btn,
3138
- .input-group-btn:last-child > .btn-group > .btn,
3139
- .input-group-btn:last-child > .dropdown-toggle,
3140
- .input-group-btn:first-child > .btn:not(:first-child),
3141
- .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
3142
- border-top-left-radius: 0;
3143
- border-bottom-left-radius: 0;
3144
- }
3145
- .input-group-addon:last-child {
3146
- border-left: 0;
3147
- }
3148
- .input-group-btn {
3149
- position: relative;
3150
- font-size: 0;
3151
- white-space: nowrap;
3152
- }
3153
- .input-group-btn > .btn {
3154
- position: relative;
3155
- }
3156
- .input-group-btn > .btn + .btn {
3157
- margin-left: -1px;
3158
- }
3159
- .input-group-btn > .btn:hover,
3160
- .input-group-btn > .btn:focus,
3161
- .input-group-btn > .btn:active {
3162
- z-index: 2;
3163
- }
3164
- .input-group-btn:first-child > .btn,
3165
- .input-group-btn:first-child > .btn-group {
3166
- margin-right: -1px;
3167
- }
3168
- .input-group-btn:last-child > .btn,
3169
- .input-group-btn:last-child > .btn-group {
3170
- z-index: 2;
3171
- margin-left: -1px;
3172
- }
3173
- .nav {
3174
- padding-left: 0;
3175
- margin-bottom: 0;
3176
- list-style: none;
3177
- }
3178
- .nav > li {
3179
- position: relative;
3180
- display: block;
3181
- }
3182
- .nav > li > a {
3183
- position: relative;
3184
- display: block;
3185
- padding: 10px 15px;
3186
- }
3187
- .nav > li > a:hover,
3188
- .nav > li > a:focus {
3189
- text-decoration: none;
3190
- background-color: #eee;
3191
- }
3192
- .nav > li.disabled > a {
3193
- color: #777;
3194
- }
3195
- .nav > li.disabled > a:hover,
3196
- .nav > li.disabled > a:focus {
3197
- color: #777;
3198
- text-decoration: none;
3199
- cursor: not-allowed;
3200
- background-color: transparent;
3201
- }
3202
- .nav .open > a,
3203
- .nav .open > a:hover,
3204
- .nav .open > a:focus {
3205
- background-color: #eee;
3206
- border-color: #337ab7;
3207
- }
3208
- .nav .nav-divider {
3209
- height: 1px;
3210
- margin: 9px 0;
3211
- overflow: hidden;
3212
- background-color: #e5e5e5;
3213
- }
3214
- .nav > li > a > img {
3215
- max-width: none;
3216
- }
3217
- .nav-tabs {
3218
- border-bottom: 1px solid #ddd;
3219
- }
3220
- .nav-tabs > li {
3221
- float: left;
3222
- margin-bottom: -1px;
3223
- }
3224
- .nav-tabs > li > a {
3225
- margin-right: 2px;
3226
- line-height: 1.42857143;
3227
- border: 1px solid transparent;
3228
- border-radius: 4px 4px 0 0;
3229
- }
3230
- .nav-tabs > li > a:hover {
3231
- border-color: #eee #eee #ddd;
3232
- }
3233
- .nav-tabs > li.active > a,
3234
- .nav-tabs > li.active > a:hover,
3235
- .nav-tabs > li.active > a:focus {
3236
- color: #555;
3237
- cursor: default;
3238
- background-color: #fff;
3239
- border: 1px solid #ddd;
3240
- border-bottom-color: transparent;
3241
- }
3242
- .nav-tabs.nav-justified {
3243
- width: 100%;
3244
- border-bottom: 0;
3245
- }
3246
- .nav-tabs.nav-justified > li {
3247
- float: none;
3248
- }
3249
- .nav-tabs.nav-justified > li > a {
3250
- margin-bottom: 5px;
3251
- text-align: center;
3252
- }
3253
- .nav-tabs.nav-justified > .dropdown .dropdown-menu {
3254
- top: auto;
3255
- left: auto;
3256
- }
3257
- @media (min-width: 768px) {
3258
- .nav-tabs.nav-justified > li {
3259
- display: table-cell;
3260
- width: 1%;
3261
- }
3262
- .nav-tabs.nav-justified > li > a {
3263
- margin-bottom: 0;
3264
- }
3265
- }
3266
- .nav-tabs.nav-justified > li > a {
3267
- margin-right: 0;
3268
- border-radius: 4px;
3269
- }
3270
- .nav-tabs.nav-justified > .active > a,
3271
- .nav-tabs.nav-justified > .active > a:hover,
3272
- .nav-tabs.nav-justified > .active > a:focus {
3273
- border: 1px solid #ddd;
3274
- }
3275
- @media (min-width: 768px) {
3276
- .nav-tabs.nav-justified > li > a {
3277
- border-bottom: 1px solid #ddd;
3278
- border-radius: 4px 4px 0 0;
3279
- }
3280
- .nav-tabs.nav-justified > .active > a,
3281
- .nav-tabs.nav-justified > .active > a:hover,
3282
- .nav-tabs.nav-justified > .active > a:focus {
3283
- border-bottom-color: #fff;
3284
- }
3285
- }
3286
- .nav-pills > li {
3287
- float: left;
3288
- }
3289
- .nav-pills > li > a {
3290
- border-radius: 4px;
3291
- }
3292
- .nav-pills > li + li {
3293
- margin-left: 2px;
3294
- }
3295
- .nav-pills > li.active > a,
3296
- .nav-pills > li.active > a:hover,
3297
- .nav-pills > li.active > a:focus {
3298
- color: #fff;
3299
- background-color: #337ab7;
3300
- }
3301
- .nav-stacked > li {
3302
- float: none;
3303
- }
3304
- .nav-stacked > li + li {
3305
- margin-top: 2px;
3306
- margin-left: 0;
3307
- }
3308
- .nav-justified {
3309
- width: 100%;
3310
- }
3311
- .nav-justified > li {
3312
- float: none;
3313
- }
3314
- .nav-justified > li > a {
3315
- margin-bottom: 5px;
3316
- text-align: center;
3317
- }
3318
- .nav-justified > .dropdown .dropdown-menu {
3319
- top: auto;
3320
- left: auto;
3321
- }
3322
- @media (min-width: 768px) {
3323
- .nav-justified > li {
3324
- display: table-cell;
3325
- width: 1%;
3326
- }
3327
- .nav-justified > li > a {
3328
- margin-bottom: 0;
3329
- }
3330
- }
3331
- .nav-tabs-justified {
3332
- border-bottom: 0;
3333
- }
3334
- .nav-tabs-justified > li > a {
3335
- margin-right: 0;
3336
- border-radius: 4px;
3337
- }
3338
- .nav-tabs-justified > .active > a,
3339
- .nav-tabs-justified > .active > a:hover,
3340
- .nav-tabs-justified > .active > a:focus {
3341
- border: 1px solid #ddd;
3342
- }
3343
- @media (min-width: 768px) {
3344
- .nav-tabs-justified > li > a {
3345
- border-bottom: 1px solid #ddd;
3346
- border-radius: 4px 4px 0 0;
3347
- }
3348
- .nav-tabs-justified > .active > a,
3349
- .nav-tabs-justified > .active > a:hover,
3350
- .nav-tabs-justified > .active > a:focus {
3351
- border-bottom-color: #fff;
3352
- }
3353
- }
3354
- .tab-content > .tab-pane {
3355
- display: none;
3356
- }
3357
- .tab-content > .active {
3358
- display: block;
3359
- }
3360
- .nav-tabs .dropdown-menu {
3361
- margin-top: -1px;
3362
- border-top-left-radius: 0;
3363
- border-top-right-radius: 0;
3364
- }
3365
- .navbar {
3366
- position: relative;
3367
- min-height: 50px;
3368
- margin-bottom: 20px;
3369
- border: 1px solid transparent;
3370
- }
3371
- @media (min-width: 768px) {
3372
- .navbar {
3373
- border-radius: 4px;
3374
- }
3375
- }
3376
- @media (min-width: 768px) {
3377
- .navbar-header {
3378
- float: left;
3379
- }
3380
- }
3381
- .navbar-collapse {
3382
- padding-right: 15px;
3383
- padding-left: 15px;
3384
- overflow-x: visible;
3385
- -webkit-overflow-scrolling: touch;
3386
- border-top: 1px solid transparent;
3387
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
3388
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
3389
- }
3390
- .navbar-collapse.in {
3391
- overflow-y: auto;
3392
- }
3393
- @media (min-width: 768px) {
3394
- .navbar-collapse {
3395
- width: auto;
3396
- border-top: 0;
3397
- -webkit-box-shadow: none;
3398
- box-shadow: none;
3399
- }
3400
- .navbar-collapse.collapse {
3401
- display: block !important;
3402
- height: auto !important;
3403
- padding-bottom: 0;
3404
- overflow: visible !important;
3405
- }
3406
- .navbar-collapse.in {
3407
- overflow-y: visible;
3408
- }
3409
- .navbar-fixed-top .navbar-collapse,
3410
- .navbar-static-top .navbar-collapse,
3411
- .navbar-fixed-bottom .navbar-collapse {
3412
- padding-right: 0;
3413
- padding-left: 0;
3414
- }
3415
- }
3416
- .navbar-fixed-top .navbar-collapse,
3417
- .navbar-fixed-bottom .navbar-collapse {
3418
- max-height: 340px;
3419
- }
3420
- @media (max-device-width: 480px) and (orientation: landscape) {
3421
- .navbar-fixed-top .navbar-collapse,
3422
- .navbar-fixed-bottom .navbar-collapse {
3423
- max-height: 200px;
3424
- }
3425
- }
3426
- .container > .navbar-header,
3427
- .container-fluid > .navbar-header,
3428
- .container > .navbar-collapse,
3429
- .container-fluid > .navbar-collapse {
3430
- margin-right: -15px;
3431
- margin-left: -15px;
3432
- }
3433
- @media (min-width: 768px) {
3434
- .container > .navbar-header,
3435
- .container-fluid > .navbar-header,
3436
- .container > .navbar-collapse,
3437
- .container-fluid > .navbar-collapse {
3438
- margin-right: 0;
3439
- margin-left: 0;
3440
- }
3441
- }
3442
- .navbar-static-top {
3443
- z-index: 1000;
3444
- border-width: 0 0 1px;
3445
- }
3446
- @media (min-width: 768px) {
3447
- .navbar-static-top {
3448
- border-radius: 0;
3449
- }
3450
- }
3451
- .navbar-fixed-top,
3452
- .navbar-fixed-bottom {
3453
- position: fixed;
3454
- right: 0;
3455
- left: 0;
3456
- z-index: 1030;
3457
- }
3458
- @media (min-width: 768px) {
3459
- .navbar-fixed-top,
3460
- .navbar-fixed-bottom {
3461
- border-radius: 0;
3462
- }
3463
- }
3464
- .navbar-fixed-top {
3465
- top: 0;
3466
- border-width: 0 0 1px;
3467
- }
3468
- .navbar-fixed-bottom {
3469
- bottom: 0;
3470
- margin-bottom: 0;
3471
- border-width: 1px 0 0;
3472
- }
3473
- .navbar-brand {
3474
- float: left;
3475
- height: 50px;
3476
- padding: 15px 15px;
3477
- font-size: 18px;
3478
- line-height: 20px;
3479
- }
3480
- .navbar-brand:hover,
3481
- .navbar-brand:focus {
3482
- text-decoration: none;
3483
- }
3484
- .navbar-brand > img {
3485
- display: block;
3486
- }
3487
- @media (min-width: 768px) {
3488
- .navbar > .container .navbar-brand,
3489
- .navbar > .container-fluid .navbar-brand {
3490
- margin-left: -15px;
3491
- }
3492
- }
3493
- .navbar-toggle {
3494
- position: relative;
3495
- float: right;
3496
- padding: 9px 10px;
3497
- margin-top: 8px;
3498
- margin-right: 15px;
3499
- margin-bottom: 8px;
3500
- background-color: transparent;
3501
- background-image: none;
3502
- border: 1px solid transparent;
3503
- border-radius: 4px;
3504
- }
3505
- .navbar-toggle:focus {
3506
- outline: 0;
3507
- }
3508
- .navbar-toggle .icon-bar {
3509
- display: block;
3510
- width: 22px;
3511
- height: 2px;
3512
- border-radius: 1px;
3513
- }
3514
- .navbar-toggle .icon-bar + .icon-bar {
3515
- margin-top: 4px;
3516
- }
3517
- @media (min-width: 768px) {
3518
- .navbar-toggle {
3519
- display: none;
3520
- }
3521
- }
3522
- .navbar-nav {
3523
- margin: 7.5px -15px;
3524
- }
3525
- .navbar-nav > li > a {
3526
- padding-top: 10px;
3527
- padding-bottom: 10px;
3528
- line-height: 20px;
3529
- }
3530
- @media (max-width: 767px) {
3531
- .navbar-nav .open .dropdown-menu {
3532
- position: static;
3533
- float: none;
3534
- width: auto;
3535
- margin-top: 0;
3536
- background-color: transparent;
3537
- border: 0;
3538
- -webkit-box-shadow: none;
3539
- box-shadow: none;
3540
- }
3541
- .navbar-nav .open .dropdown-menu > li > a,
3542
- .navbar-nav .open .dropdown-menu .dropdown-header {
3543
- padding: 5px 15px 5px 25px;
3544
- }
3545
- .navbar-nav .open .dropdown-menu > li > a {
3546
- line-height: 20px;
3547
- }
3548
- .navbar-nav .open .dropdown-menu > li > a:hover,
3549
- .navbar-nav .open .dropdown-menu > li > a:focus {
3550
- background-image: none;
3551
- }
3552
- }
3553
- @media (min-width: 768px) {
3554
- .navbar-nav {
3555
- float: left;
3556
- margin: 0;
3557
- }
3558
- .navbar-nav > li {
3559
- float: left;
3560
- }
3561
- .navbar-nav > li > a {
3562
- padding-top: 15px;
3563
- padding-bottom: 15px;
3564
- }
3565
- }
3566
- .navbar-form {
3567
- padding: 10px 15px;
3568
- margin-top: 8px;
3569
- margin-right: -15px;
3570
- margin-bottom: 8px;
3571
- margin-left: -15px;
3572
- border-top: 1px solid transparent;
3573
- border-bottom: 1px solid transparent;
3574
- -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
3575
- box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
3576
- }
3577
- @media (min-width: 768px) {
3578
- .navbar-form .form-group {
3579
- display: inline-block;
3580
- margin-bottom: 0;
3581
- vertical-align: middle;
3582
- }
3583
- .navbar-form .form-control {
3584
- display: inline-block;
3585
- width: auto;
3586
- vertical-align: middle;
3587
- }
3588
- .navbar-form .form-control-static {
3589
- display: inline-block;
3590
- }
3591
- .navbar-form .input-group {
3592
- display: inline-table;
3593
- vertical-align: middle;
3594
- }
3595
- .navbar-form .input-group .input-group-addon,
3596
- .navbar-form .input-group .input-group-btn,
3597
- .navbar-form .input-group .form-control {
3598
- width: auto;
3599
- }
3600
- .navbar-form .input-group > .form-control {
3601
- width: 100%;
3602
- }
3603
- .navbar-form .control-label {
3604
- margin-bottom: 0;
3605
- vertical-align: middle;
3606
- }
3607
- .navbar-form .radio,
3608
- .navbar-form .checkbox {
3609
- display: inline-block;
3610
- margin-top: 0;
3611
- margin-bottom: 0;
3612
- vertical-align: middle;
3613
- }
3614
- .navbar-form .radio label,
3615
- .navbar-form .checkbox label {
3616
- padding-left: 0;
3617
- }
3618
- .navbar-form .radio input[type="radio"],
3619
- .navbar-form .checkbox input[type="checkbox"] {
3620
- position: relative;
3621
- margin-left: 0;
3622
- }
3623
- .navbar-form .has-feedback .form-control-feedback {
3624
- top: 0;
3625
- }
3626
- }
3627
- @media (max-width: 767px) {
3628
- .navbar-form .form-group {
3629
- margin-bottom: 5px;
3630
- }
3631
- .navbar-form .form-group:last-child {
3632
- margin-bottom: 0;
3633
- }
3634
- }
3635
- @media (min-width: 768px) {
3636
- .navbar-form {
3637
- width: auto;
3638
- padding-top: 0;
3639
- padding-bottom: 0;
3640
- margin-right: 0;
3641
- margin-left: 0;
3642
- border: 0;
3643
- -webkit-box-shadow: none;
3644
- box-shadow: none;
3645
- }
3646
- }
3647
- .navbar-nav > li > .dropdown-menu {
3648
- margin-top: 0;
3649
- border-top-left-radius: 0;
3650
- border-top-right-radius: 0;
3651
- }
3652
- .navbar-fixed-bottom .navbar-nav > li > .dropdown-menu {
3653
- margin-bottom: 0;
3654
- border-top-left-radius: 4px;
3655
- border-top-right-radius: 4px;
3656
- border-bottom-right-radius: 0;
3657
- border-bottom-left-radius: 0;
3658
- }
3659
- .navbar-btn {
3660
- margin-top: 8px;
3661
- margin-bottom: 8px;
3662
- }
3663
- .navbar-btn.btn-sm {
3664
- margin-top: 10px;
3665
- margin-bottom: 10px;
3666
- }
3667
- .navbar-btn.btn-xs {
3668
- margin-top: 14px;
3669
- margin-bottom: 14px;
3670
- }
3671
- .navbar-text {
3672
- margin-top: 15px;
3673
- margin-bottom: 15px;
3674
- }
3675
- @media (min-width: 768px) {
3676
- .navbar-text {
3677
- float: left;
3678
- margin-right: 15px;
3679
- margin-left: 15px;
3680
- }
3681
- }
3682
- @media (min-width: 768px) {
3683
- .navbar-left {
3684
- float: left !important;
3685
- }
3686
- .navbar-right {
3687
- float: right !important;
3688
- margin-right: -15px;
3689
- }
3690
- .navbar-right ~ .navbar-right {
3691
- margin-right: 0;
3692
- }
3693
- }
3694
- .navbar-default {
3695
- background-color: #f8f8f8;
3696
- border-color: #e7e7e7;
3697
- }
3698
- .navbar-default .navbar-brand {
3699
- color: #777;
3700
- }
3701
- .navbar-default .navbar-brand:hover,
3702
- .navbar-default .navbar-brand:focus {
3703
- color: #5e5e5e;
3704
- background-color: transparent;
3705
- }
3706
- .navbar-default .navbar-text {
3707
- color: #777;
3708
- }
3709
- .navbar-default .navbar-nav > li > a {
3710
- color: #777;
3711
- }
3712
- .navbar-default .navbar-nav > li > a:hover,
3713
- .navbar-default .navbar-nav > li > a:focus {
3714
- color: #333;
3715
- background-color: transparent;
3716
- }
3717
- .navbar-default .navbar-nav > .active > a,
3718
- .navbar-default .navbar-nav > .active > a:hover,
3719
- .navbar-default .navbar-nav > .active > a:focus {
3720
- color: #555;
3721
- background-color: #e7e7e7;
3722
- }
3723
- .navbar-default .navbar-nav > .disabled > a,
3724
- .navbar-default .navbar-nav > .disabled > a:hover,
3725
- .navbar-default .navbar-nav > .disabled > a:focus {
3726
- color: #ccc;
3727
- background-color: transparent;
3728
- }
3729
- .navbar-default .navbar-toggle {
3730
- border-color: #ddd;
3731
- }
3732
- .navbar-default .navbar-toggle:hover,
3733
- .navbar-default .navbar-toggle:focus {
3734
- background-color: #ddd;
3735
- }
3736
- .navbar-default .navbar-toggle .icon-bar {
3737
- background-color: #888;
3738
- }
3739
- .navbar-default .navbar-collapse,
3740
- .navbar-default .navbar-form {
3741
- border-color: #e7e7e7;
3742
- }
3743
- .navbar-default .navbar-nav > .open > a,
3744
- .navbar-default .navbar-nav > .open > a:hover,
3745
- .navbar-default .navbar-nav > .open > a:focus {
3746
- color: #555;
3747
- background-color: #e7e7e7;
3748
- }
3749
- @media (max-width: 767px) {
3750
- .navbar-default .navbar-nav .open .dropdown-menu > li > a {
3751
- color: #777;
3752
- }
3753
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:hover,
3754
- .navbar-default .navbar-nav .open .dropdown-menu > li > a:focus {
3755
- color: #333;
3756
- background-color: transparent;
3757
- }
3758
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a,
3759
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:hover,
3760
- .navbar-default .navbar-nav .open .dropdown-menu > .active > a:focus {
3761
- color: #555;
3762
- background-color: #e7e7e7;
3763
- }
3764
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a,
3765
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:hover,
3766
- .navbar-default .navbar-nav .open .dropdown-menu > .disabled > a:focus {
3767
- color: #ccc;
3768
- background-color: transparent;
3769
- }
3770
- }
3771
- .navbar-default .navbar-link {
3772
- color: #777;
3773
- }
3774
- .navbar-default .navbar-link:hover {
3775
- color: #333;
3776
- }
3777
- .navbar-default .btn-link {
3778
- color: #777;
3779
- }
3780
- .navbar-default .btn-link:hover,
3781
- .navbar-default .btn-link:focus {
3782
- color: #333;
3783
- }
3784
- .navbar-default .btn-link[disabled]:hover,
3785
- fieldset[disabled] .navbar-default .btn-link:hover,
3786
- .navbar-default .btn-link[disabled]:focus,
3787
- fieldset[disabled] .navbar-default .btn-link:focus {
3788
- color: #ccc;
3789
- }
3790
- .navbar-inverse {
3791
- background-color: #222;
3792
- border-color: #080808;
3793
- }
3794
- .navbar-inverse .navbar-brand {
3795
- color: #9d9d9d;
3796
- }
3797
- .navbar-inverse .navbar-brand:hover,
3798
- .navbar-inverse .navbar-brand:focus {
3799
- color: #fff;
3800
- background-color: transparent;
3801
- }
3802
- .navbar-inverse .navbar-text {
3803
- color: #9d9d9d;
3804
- }
3805
- .navbar-inverse .navbar-nav > li > a {
3806
- color: #9d9d9d;
3807
- }
3808
- .navbar-inverse .navbar-nav > li > a:hover,
3809
- .navbar-inverse .navbar-nav > li > a:focus {
3810
- color: #fff;
3811
- background-color: transparent;
3812
- }
3813
- .navbar-inverse .navbar-nav > .active > a,
3814
- .navbar-inverse .navbar-nav > .active > a:hover,
3815
- .navbar-inverse .navbar-nav > .active > a:focus {
3816
- color: #fff;
3817
- background-color: #080808;
3818
- }
3819
- .navbar-inverse .navbar-nav > .disabled > a,
3820
- .navbar-inverse .navbar-nav > .disabled > a:hover,
3821
- .navbar-inverse .navbar-nav > .disabled > a:focus {
3822
- color: #444;
3823
- background-color: transparent;
3824
- }
3825
- .navbar-inverse .navbar-toggle {
3826
- border-color: #333;
3827
- }
3828
- .navbar-inverse .navbar-toggle:hover,
3829
- .navbar-inverse .navbar-toggle:focus {
3830
- background-color: #333;
3831
- }
3832
- .navbar-inverse .navbar-toggle .icon-bar {
3833
- background-color: #fff;
3834
- }
3835
- .navbar-inverse .navbar-collapse,
3836
- .navbar-inverse .navbar-form {
3837
- border-color: #101010;
3838
- }
3839
- .navbar-inverse .navbar-nav > .open > a,
3840
- .navbar-inverse .navbar-nav > .open > a:hover,
3841
- .navbar-inverse .navbar-nav > .open > a:focus {
3842
- color: #fff;
3843
- background-color: #080808;
3844
- }
3845
- @media (max-width: 767px) {
3846
- .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
3847
- border-color: #080808;
3848
- }
3849
- .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
3850
- background-color: #080808;
3851
- }
3852
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a {
3853
- color: #9d9d9d;
3854
- }
3855
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:hover,
3856
- .navbar-inverse .navbar-nav .open .dropdown-menu > li > a:focus {
3857
- color: #fff;
3858
- background-color: transparent;
3859
- }
3860
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a,
3861
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:hover,
3862
- .navbar-inverse .navbar-nav .open .dropdown-menu > .active > a:focus {
3863
- color: #fff;
3864
- background-color: #080808;
3865
- }
3866
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a,
3867
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:hover,
3868
- .navbar-inverse .navbar-nav .open .dropdown-menu > .disabled > a:focus {
3869
- color: #444;
3870
- background-color: transparent;
3871
- }
3872
- }
3873
- .navbar-inverse .navbar-link {
3874
- color: #9d9d9d;
3875
- }
3876
- .navbar-inverse .navbar-link:hover {
3877
- color: #fff;
3878
- }
3879
- .navbar-inverse .btn-link {
3880
- color: #9d9d9d;
3881
- }
3882
- .navbar-inverse .btn-link:hover,
3883
- .navbar-inverse .btn-link:focus {
3884
- color: #fff;
3885
- }
3886
- .navbar-inverse .btn-link[disabled]:hover,
3887
- fieldset[disabled] .navbar-inverse .btn-link:hover,
3888
- .navbar-inverse .btn-link[disabled]:focus,
3889
- fieldset[disabled] .navbar-inverse .btn-link:focus {
3890
- color: #444;
3891
- }
3892
- .breadcrumb {
3893
- padding: 8px 15px;
3894
- margin-bottom: 20px;
3895
- list-style: none;
3896
- background-color: #f5f5f5;
3897
- border-radius: 4px;
3898
- }
3899
- .breadcrumb > li {
3900
- display: inline-block;
3901
- }
3902
- .breadcrumb > li + li:before {
3903
- padding: 0 5px;
3904
- color: #ccc;
3905
- content: "/\00a0";
3906
- }
3907
- .breadcrumb > .active {
3908
- color: #777;
3909
- }
3910
- .pagination {
3911
- display: inline-block;
3912
- padding-left: 0;
3913
- margin: 20px 0;
3914
- border-radius: 4px;
3915
- }
3916
- .pagination > li {
3917
- display: inline;
3918
- }
3919
- .pagination > li > a,
3920
- .pagination > li > span {
3921
- position: relative;
3922
- float: left;
3923
- padding: 6px 12px;
3924
- margin-left: -1px;
3925
- line-height: 1.42857143;
3926
- color: #337ab7;
3927
- text-decoration: none;
3928
- background-color: #fff;
3929
- border: 1px solid #ddd;
3930
- }
3931
- .pagination > li:first-child > a,
3932
- .pagination > li:first-child > span {
3933
- margin-left: 0;
3934
- border-top-left-radius: 4px;
3935
- border-bottom-left-radius: 4px;
3936
- }
3937
- .pagination > li:last-child > a,
3938
- .pagination > li:last-child > span {
3939
- border-top-right-radius: 4px;
3940
- border-bottom-right-radius: 4px;
3941
- }
3942
- .pagination > li > a:hover,
3943
- .pagination > li > span:hover,
3944
- .pagination > li > a:focus,
3945
- .pagination > li > span:focus {
3946
- z-index: 2;
3947
- color: #23527c;
3948
- background-color: #eee;
3949
- border-color: #ddd;
3950
- }
3951
- .pagination > .active > a,
3952
- .pagination > .active > span,
3953
- .pagination > .active > a:hover,
3954
- .pagination > .active > span:hover,
3955
- .pagination > .active > a:focus,
3956
- .pagination > .active > span:focus {
3957
- z-index: 3;
3958
- color: #fff;
3959
- cursor: default;
3960
- background-color: #337ab7;
3961
- border-color: #337ab7;
3962
- }
3963
- .pagination > .disabled > span,
3964
- .pagination > .disabled > span:hover,
3965
- .pagination > .disabled > span:focus,
3966
- .pagination > .disabled > a,
3967
- .pagination > .disabled > a:hover,
3968
- .pagination > .disabled > a:focus {
3969
- color: #777;
3970
- cursor: not-allowed;
3971
- background-color: #fff;
3972
- border-color: #ddd;
3973
- }
3974
- .pagination-lg > li > a,
3975
- .pagination-lg > li > span {
3976
- padding: 10px 16px;
3977
- font-size: 18px;
3978
- line-height: 1.3333333;
3979
- }
3980
- .pagination-lg > li:first-child > a,
3981
- .pagination-lg > li:first-child > span {
3982
- border-top-left-radius: 6px;
3983
- border-bottom-left-radius: 6px;
3984
- }
3985
- .pagination-lg > li:last-child > a,
3986
- .pagination-lg > li:last-child > span {
3987
- border-top-right-radius: 6px;
3988
- border-bottom-right-radius: 6px;
3989
- }
3990
- .pagination-sm > li > a,
3991
- .pagination-sm > li > span {
3992
- padding: 5px 10px;
3993
- font-size: 12px;
3994
- line-height: 1.5;
3995
- }
3996
- .pagination-sm > li:first-child > a,
3997
- .pagination-sm > li:first-child > span {
3998
- border-top-left-radius: 3px;
3999
- border-bottom-left-radius: 3px;
4000
- }
4001
- .pagination-sm > li:last-child > a,
4002
- .pagination-sm > li:last-child > span {
4003
- border-top-right-radius: 3px;
4004
- border-bottom-right-radius: 3px;
4005
- }
4006
- .pager {
4007
- padding-left: 0;
4008
- margin: 20px 0;
4009
- text-align: center;
4010
- list-style: none;
4011
- }
4012
- .pager li {
4013
- display: inline;
4014
- }
4015
- .pager li > a,
4016
- .pager li > span {
4017
- display: inline-block;
4018
- padding: 5px 14px;
4019
- background-color: #fff;
4020
- border: 1px solid #ddd;
4021
- border-radius: 15px;
4022
- }
4023
- .pager li > a:hover,
4024
- .pager li > a:focus {
4025
- text-decoration: none;
4026
- background-color: #eee;
4027
- }
4028
- .pager .next > a,
4029
- .pager .next > span {
4030
- float: right;
4031
- }
4032
- .pager .previous > a,
4033
- .pager .previous > span {
4034
- float: left;
4035
- }
4036
- .pager .disabled > a,
4037
- .pager .disabled > a:hover,
4038
- .pager .disabled > a:focus,
4039
- .pager .disabled > span {
4040
- color: #777;
4041
- cursor: not-allowed;
4042
- background-color: #fff;
4043
- }
4044
- .label {
4045
- display: inline;
4046
- padding: .2em .6em .3em;
4047
- font-size: 75%;
4048
- font-weight: bold;
4049
- line-height: 1;
4050
- color: #fff;
4051
- text-align: center;
4052
- white-space: nowrap;
4053
- vertical-align: baseline;
4054
- border-radius: .25em;
4055
- }
4056
- a.label:hover,
4057
- a.label:focus {
4058
- color: #fff;
4059
- text-decoration: none;
4060
- cursor: pointer;
4061
- }
4062
- .label:empty {
4063
- display: none;
4064
- }
4065
- .btn .label {
4066
- position: relative;
4067
- top: -1px;
4068
- }
4069
- .label-default {
4070
- background-color: #777;
4071
- }
4072
- .label-default[href]:hover,
4073
- .label-default[href]:focus {
4074
- background-color: #5e5e5e;
4075
- }
4076
- .label-primary {
4077
- background-color: #337ab7;
4078
- }
4079
- .label-primary[href]:hover,
4080
- .label-primary[href]:focus {
4081
- background-color: #286090;
4082
- }
4083
- .label-success {
4084
- background-color: #5cb85c;
4085
- }
4086
- .label-success[href]:hover,
4087
- .label-success[href]:focus {
4088
- background-color: #449d44;
4089
- }
4090
- .label-info {
4091
- background-color: #5bc0de;
4092
- }
4093
- .label-info[href]:hover,
4094
- .label-info[href]:focus {
4095
- background-color: #31b0d5;
4096
- }
4097
- .label-warning {
4098
- background-color: #f0ad4e;
4099
- }
4100
- .label-warning[href]:hover,
4101
- .label-warning[href]:focus {
4102
- background-color: #ec971f;
4103
- }
4104
- .label-danger {
4105
- background-color: #d9534f;
4106
- }
4107
- .label-danger[href]:hover,
4108
- .label-danger[href]:focus {
4109
- background-color: #c9302c;
4110
- }
4111
- .badge {
4112
- display: inline-block;
4113
- min-width: 10px;
4114
- padding: 3px 7px;
4115
- font-size: 12px;
4116
- font-weight: bold;
4117
- line-height: 1;
4118
- color: #fff;
4119
- text-align: center;
4120
- white-space: nowrap;
4121
- vertical-align: middle;
4122
- background-color: #777;
4123
- border-radius: 10px;
4124
- }
4125
- .badge:empty {
4126
- display: none;
4127
- }
4128
- .btn .badge {
4129
- position: relative;
4130
- top: -1px;
4131
- }
4132
- .btn-xs .badge,
4133
- .btn-group-xs > .btn .badge {
4134
- top: 0;
4135
- padding: 1px 5px;
4136
- }
4137
- a.badge:hover,
4138
- a.badge:focus {
4139
- color: #fff;
4140
- text-decoration: none;
4141
- cursor: pointer;
4142
- }
4143
- .list-group-item.active > .badge,
4144
- .nav-pills > .active > a > .badge {
4145
- color: #337ab7;
4146
- background-color: #fff;
4147
- }
4148
- .list-group-item > .badge {
4149
- float: right;
4150
- }
4151
- .list-group-item > .badge + .badge {
4152
- margin-right: 5px;
4153
- }
4154
- .nav-pills > li > a > .badge {
4155
- margin-left: 3px;
4156
- }
4157
- .jumbotron {
4158
- padding-top: 30px;
4159
- padding-bottom: 30px;
4160
- margin-bottom: 30px;
4161
- color: inherit;
4162
- background-color: #eee;
4163
- }
4164
- .jumbotron h1,
4165
- .jumbotron .h1 {
4166
- color: inherit;
4167
- }
4168
- .jumbotron p {
4169
- margin-bottom: 15px;
4170
- font-size: 21px;
4171
- font-weight: 200;
4172
- }
4173
- .jumbotron > hr {
4174
- border-top-color: #d5d5d5;
4175
- }
4176
- .container .jumbotron,
4177
- .container-fluid .jumbotron {
4178
- padding-right: 15px;
4179
- padding-left: 15px;
4180
- border-radius: 6px;
4181
- }
4182
- .jumbotron .container {
4183
- max-width: 100%;
4184
- }
4185
- @media screen and (min-width: 768px) {
4186
- .jumbotron {
4187
- padding-top: 48px;
4188
- padding-bottom: 48px;
4189
- }
4190
- .container .jumbotron,
4191
- .container-fluid .jumbotron {
4192
- padding-right: 60px;
4193
- padding-left: 60px;
4194
- }
4195
- .jumbotron h1,
4196
- .jumbotron .h1 {
4197
- font-size: 63px;
4198
- }
4199
- }
4200
- .thumbnail {
4201
- display: block;
4202
- padding: 4px;
4203
- margin-bottom: 20px;
4204
- line-height: 1.42857143;
4205
- background-color: #fff;
4206
- border: 1px solid #ddd;
4207
- border-radius: 4px;
4208
- -webkit-transition: border .2s ease-in-out;
4209
- -o-transition: border .2s ease-in-out;
4210
- transition: border .2s ease-in-out;
4211
- }
4212
- .thumbnail > img,
4213
- .thumbnail a > img {
4214
- margin-right: auto;
4215
- margin-left: auto;
4216
- }
4217
- a.thumbnail:hover,
4218
- a.thumbnail:focus,
4219
- a.thumbnail.active {
4220
- border-color: #337ab7;
4221
- }
4222
- .thumbnail .caption {
4223
- padding: 9px;
4224
- color: #333;
4225
- }
4226
- .alert {
4227
- padding: 15px;
4228
- margin-bottom: 20px;
4229
- border: 1px solid transparent;
4230
- border-radius: 4px;
4231
- }
4232
- .alert h4 {
4233
- margin-top: 0;
4234
- color: inherit;
4235
- }
4236
- .alert .alert-link {
4237
- font-weight: bold;
4238
- }
4239
- .alert > p,
4240
- .alert > ul {
4241
- margin-bottom: 0;
4242
- }
4243
- .alert > p + p {
4244
- margin-top: 5px;
4245
- }
4246
- .alert-dismissable,
4247
- .alert-dismissible {
4248
- padding-right: 35px;
4249
- }
4250
- .alert-dismissable .close,
4251
- .alert-dismissible .close {
4252
- position: relative;
4253
- top: -2px;
4254
- right: -21px;
4255
- color: inherit;
4256
- }
4257
- .alert-success {
4258
- color: #3c763d;
4259
- background-color: #dff0d8;
4260
- border-color: #d6e9c6;
4261
- }
4262
- .alert-success hr {
4263
- border-top-color: #c9e2b3;
4264
- }
4265
- .alert-success .alert-link {
4266
- color: #2b542c;
4267
- }
4268
- .alert-info {
4269
- color: #31708f;
4270
- background-color: #d9edf7;
4271
- border-color: #bce8f1;
4272
- }
4273
- .alert-info hr {
4274
- border-top-color: #a6e1ec;
4275
- }
4276
- .alert-info .alert-link {
4277
- color: #245269;
4278
- }
4279
- .alert-warning {
4280
- color: #8a6d3b;
4281
- background-color: #fcf8e3;
4282
- border-color: #faebcc;
4283
- }
4284
- .alert-warning hr {
4285
- border-top-color: #f7e1b5;
4286
- }
4287
- .alert-warning .alert-link {
4288
- color: #66512c;
4289
- }
4290
- .alert-danger {
4291
- color: #a94442;
4292
- background-color: #f2dede;
4293
- border-color: #ebccd1;
4294
- }
4295
- .alert-danger hr {
4296
- border-top-color: #e4b9c0;
4297
- }
4298
- .alert-danger .alert-link {
4299
- color: #843534;
4300
- }
4301
- @-webkit-keyframes progress-bar-stripes {
4302
- from {
4303
- background-position: 40px 0;
4304
- }
4305
- to {
4306
- background-position: 0 0;
4307
- }
4308
- }
4309
- @-o-keyframes progress-bar-stripes {
4310
- from {
4311
- background-position: 40px 0;
4312
- }
4313
- to {
4314
- background-position: 0 0;
4315
- }
4316
- }
4317
- @keyframes progress-bar-stripes {
4318
- from {
4319
- background-position: 40px 0;
4320
- }
4321
- to {
4322
- background-position: 0 0;
4323
- }
4324
- }
4325
- .progress {
4326
- height: 20px;
4327
- margin-bottom: 20px;
4328
- overflow: hidden;
4329
- background-color: #f5f5f5;
4330
- border-radius: 4px;
4331
- -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
4332
- box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
4333
- }
4334
- .progress-bar {
4335
- float: left;
4336
- width: 0;
4337
- height: 100%;
4338
- font-size: 12px;
4339
- line-height: 20px;
4340
- color: #fff;
4341
- text-align: center;
4342
- background-color: #337ab7;
4343
- -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4344
- box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
4345
- -webkit-transition: width .6s ease;
4346
- -o-transition: width .6s ease;
4347
- transition: width .6s ease;
4348
- }
4349
- .progress-striped .progress-bar,
4350
- .progress-bar-striped {
4351
- 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);
4352
- 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);
4353
- 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);
4354
- -webkit-background-size: 40px 40px;
4355
- background-size: 40px 40px;
4356
- }
4357
- .progress.active .progress-bar,
4358
- .progress-bar.active {
4359
- -webkit-animation: progress-bar-stripes 2s linear infinite;
4360
- -o-animation: progress-bar-stripes 2s linear infinite;
4361
- animation: progress-bar-stripes 2s linear infinite;
4362
- }
4363
- .progress-bar-success {
4364
- background-color: #5cb85c;
4365
- }
4366
- .progress-striped .progress-bar-success {
4367
- 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);
4368
- 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);
4369
- 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);
4370
- }
4371
- .progress-bar-info {
4372
- background-color: #5bc0de;
4373
- }
4374
- .progress-striped .progress-bar-info {
4375
- 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);
4376
- 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);
4377
- 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);
4378
- }
4379
- .progress-bar-warning {
4380
- background-color: #f0ad4e;
4381
- }
4382
- .progress-striped .progress-bar-warning {
4383
- 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);
4384
- 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);
4385
- 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);
4386
- }
4387
- .progress-bar-danger {
4388
- background-color: #d9534f;
4389
- }
4390
- .progress-striped .progress-bar-danger {
4391
- 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);
4392
- 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);
4393
- 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);
4394
- }
4395
- .media {
4396
- margin-top: 15px;
4397
- }
4398
- .media:first-child {
4399
- margin-top: 0;
4400
- }
4401
- .media,
4402
- .media-body {
4403
- overflow: hidden;
4404
- zoom: 1;
4405
- }
4406
- .media-body {
4407
- width: 10000px;
4408
- }
4409
- .media-object {
4410
- display: block;
4411
- }
4412
- .media-object.img-thumbnail {
4413
- max-width: none;
4414
- }
4415
- .media-right,
4416
- .media > .pull-right {
4417
- padding-left: 10px;
4418
- }
4419
- .media-left,
4420
- .media > .pull-left {
4421
- padding-right: 10px;
4422
- }
4423
- .media-left,
4424
- .media-right,
4425
- .media-body {
4426
- display: table-cell;
4427
- vertical-align: top;
4428
- }
4429
- .media-middle {
4430
- vertical-align: middle;
4431
- }
4432
- .media-bottom {
4433
- vertical-align: bottom;
4434
- }
4435
- .media-heading {
4436
- margin-top: 0;
4437
- margin-bottom: 5px;
4438
- }
4439
- .media-list {
4440
- padding-left: 0;
4441
- list-style: none;
4442
- }
4443
- .list-group {
4444
- padding-left: 0;
4445
- margin-bottom: 20px;
4446
- }
4447
- .list-group-item {
4448
- position: relative;
4449
- display: block;
4450
- padding: 10px 15px;
4451
- margin-bottom: -1px;
4452
- background-color: #fff;
4453
- border: 1px solid #ddd;
4454
- }
4455
- .list-group-item:first-child {
4456
- border-top-left-radius: 4px;
4457
- border-top-right-radius: 4px;
4458
- }
4459
- .list-group-item:last-child {
4460
- margin-bottom: 0;
4461
- border-bottom-right-radius: 4px;
4462
- border-bottom-left-radius: 4px;
4463
- }
4464
- a.list-group-item,
4465
- button.list-group-item {
4466
- color: #555;
4467
- }
4468
- a.list-group-item .list-group-item-heading,
4469
- button.list-group-item .list-group-item-heading {
4470
- color: #333;
4471
- }
4472
- a.list-group-item:hover,
4473
- button.list-group-item:hover,
4474
- a.list-group-item:focus,
4475
- button.list-group-item:focus {
4476
- color: #555;
4477
- text-decoration: none;
4478
- background-color: #f5f5f5;
4479
- }
4480
- button.list-group-item {
4481
- width: 100%;
4482
- text-align: left;
4483
- }
4484
- .list-group-item.disabled,
4485
- .list-group-item.disabled:hover,
4486
- .list-group-item.disabled:focus {
4487
- color: #777;
4488
- cursor: not-allowed;
4489
- background-color: #eee;
4490
- }
4491
- .list-group-item.disabled .list-group-item-heading,
4492
- .list-group-item.disabled:hover .list-group-item-heading,
4493
- .list-group-item.disabled:focus .list-group-item-heading {
4494
- color: inherit;
4495
- }
4496
- .list-group-item.disabled .list-group-item-text,
4497
- .list-group-item.disabled:hover .list-group-item-text,
4498
- .list-group-item.disabled:focus .list-group-item-text {
4499
- color: #777;
4500
- }
4501
- .list-group-item.active,
4502
- .list-group-item.active:hover,
4503
- .list-group-item.active:focus {
4504
- z-index: 2;
4505
- color: #fff;
4506
- background-color: #337ab7;
4507
- border-color: #337ab7;
4508
- }
4509
- .list-group-item.active .list-group-item-heading,
4510
- .list-group-item.active:hover .list-group-item-heading,
4511
- .list-group-item.active:focus .list-group-item-heading,
4512
- .list-group-item.active .list-group-item-heading > small,
4513
- .list-group-item.active:hover .list-group-item-heading > small,
4514
- .list-group-item.active:focus .list-group-item-heading > small,
4515
- .list-group-item.active .list-group-item-heading > .small,
4516
- .list-group-item.active:hover .list-group-item-heading > .small,
4517
- .list-group-item.active:focus .list-group-item-heading > .small {
4518
- color: inherit;
4519
- }
4520
- .list-group-item.active .list-group-item-text,
4521
- .list-group-item.active:hover .list-group-item-text,
4522
- .list-group-item.active:focus .list-group-item-text {
4523
- color: #c7ddef;
4524
- }
4525
- .list-group-item-success {
4526
- color: #3c763d;
4527
- background-color: #dff0d8;
4528
- }
4529
- a.list-group-item-success,
4530
- button.list-group-item-success {
4531
- color: #3c763d;
4532
- }
4533
- a.list-group-item-success .list-group-item-heading,
4534
- button.list-group-item-success .list-group-item-heading {
4535
- color: inherit;
4536
- }
4537
- a.list-group-item-success:hover,
4538
- button.list-group-item-success:hover,
4539
- a.list-group-item-success:focus,
4540
- button.list-group-item-success:focus {
4541
- color: #3c763d;
4542
- background-color: #d0e9c6;
4543
- }
4544
- a.list-group-item-success.active,
4545
- button.list-group-item-success.active,
4546
- a.list-group-item-success.active:hover,
4547
- button.list-group-item-success.active:hover,
4548
- a.list-group-item-success.active:focus,
4549
- button.list-group-item-success.active:focus {
4550
- color: #fff;
4551
- background-color: #3c763d;
4552
- border-color: #3c763d;
4553
- }
4554
- .list-group-item-info {
4555
- color: #31708f;
4556
- background-color: #d9edf7;
4557
- }
4558
- a.list-group-item-info,
4559
- button.list-group-item-info {
4560
- color: #31708f;
4561
- }
4562
- a.list-group-item-info .list-group-item-heading,
4563
- button.list-group-item-info .list-group-item-heading {
4564
- color: inherit;
4565
- }
4566
- a.list-group-item-info:hover,
4567
- button.list-group-item-info:hover,
4568
- a.list-group-item-info:focus,
4569
- button.list-group-item-info:focus {
4570
- color: #31708f;
4571
- background-color: #c4e3f3;
4572
- }
4573
- a.list-group-item-info.active,
4574
- button.list-group-item-info.active,
4575
- a.list-group-item-info.active:hover,
4576
- button.list-group-item-info.active:hover,
4577
- a.list-group-item-info.active:focus,
4578
- button.list-group-item-info.active:focus {
4579
- color: #fff;
4580
- background-color: #31708f;
4581
- border-color: #31708f;
4582
- }
4583
- .list-group-item-warning {
4584
- color: #8a6d3b;
4585
- background-color: #fcf8e3;
4586
- }
4587
- a.list-group-item-warning,
4588
- button.list-group-item-warning {
4589
- color: #8a6d3b;
4590
- }
4591
- a.list-group-item-warning .list-group-item-heading,
4592
- button.list-group-item-warning .list-group-item-heading {
4593
- color: inherit;
4594
- }
4595
- a.list-group-item-warning:hover,
4596
- button.list-group-item-warning:hover,
4597
- a.list-group-item-warning:focus,
4598
- button.list-group-item-warning:focus {
4599
- color: #8a6d3b;
4600
- background-color: #faf2cc;
4601
- }
4602
- a.list-group-item-warning.active,
4603
- button.list-group-item-warning.active,
4604
- a.list-group-item-warning.active:hover,
4605
- button.list-group-item-warning.active:hover,
4606
- a.list-group-item-warning.active:focus,
4607
- button.list-group-item-warning.active:focus {
4608
- color: #fff;
4609
- background-color: #8a6d3b;
4610
- border-color: #8a6d3b;
4611
- }
4612
- .list-group-item-danger {
4613
- color: #a94442;
4614
- background-color: #f2dede;
4615
- }
4616
- a.list-group-item-danger,
4617
- button.list-group-item-danger {
4618
- color: #a94442;
4619
- }
4620
- a.list-group-item-danger .list-group-item-heading,
4621
- button.list-group-item-danger .list-group-item-heading {
4622
- color: inherit;
4623
- }
4624
- a.list-group-item-danger:hover,
4625
- button.list-group-item-danger:hover,
4626
- a.list-group-item-danger:focus,
4627
- button.list-group-item-danger:focus {
4628
- color: #a94442;
4629
- background-color: #ebcccc;
4630
- }
4631
- a.list-group-item-danger.active,
4632
- button.list-group-item-danger.active,
4633
- a.list-group-item-danger.active:hover,
4634
- button.list-group-item-danger.active:hover,
4635
- a.list-group-item-danger.active:focus,
4636
- button.list-group-item-danger.active:focus {
4637
- color: #fff;
4638
- background-color: #a94442;
4639
- border-color: #a94442;
4640
- }
4641
- .list-group-item-heading {
4642
- margin-top: 0;
4643
- margin-bottom: 5px;
4644
- }
4645
- .list-group-item-text {
4646
- margin-bottom: 0;
4647
- line-height: 1.3;
4648
- }
4649
- .panel {
4650
- margin-bottom: 20px;
4651
- background-color: #fff;
4652
- border: 1px solid transparent;
4653
- border-radius: 4px;
4654
- -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
4655
- box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
4656
- }
4657
- .panel-body {
4658
- padding: 15px;
4659
- }
4660
- .panel-heading {
4661
- padding: 10px 15px;
4662
- border-bottom: 1px solid transparent;
4663
- border-top-left-radius: 3px;
4664
- border-top-right-radius: 3px;
4665
- }
4666
- .panel-heading > .dropdown .dropdown-toggle {
4667
- color: inherit;
4668
- }
4669
- .panel-title {
4670
- margin-top: 0;
4671
- margin-bottom: 0;
4672
- font-size: 16px;
4673
- color: inherit;
4674
- }
4675
- .panel-title > a,
4676
- .panel-title > small,
4677
- .panel-title > .small,
4678
- .panel-title > small > a,
4679
- .panel-title > .small > a {
4680
- color: inherit;
4681
- }
4682
- .panel-footer {
4683
- padding: 10px 15px;
4684
- background-color: #f5f5f5;
4685
- border-top: 1px solid #ddd;
4686
- border-bottom-right-radius: 3px;
4687
- border-bottom-left-radius: 3px;
4688
- }
4689
- .panel > .list-group,
4690
- .panel > .panel-collapse > .list-group {
4691
- margin-bottom: 0;
4692
- }
4693
- .panel > .list-group .list-group-item,
4694
- .panel > .panel-collapse > .list-group .list-group-item {
4695
- border-width: 1px 0;
4696
- border-radius: 0;
4697
- }
4698
- .panel > .list-group:first-child .list-group-item:first-child,
4699
- .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
4700
- border-top: 0;
4701
- border-top-left-radius: 3px;
4702
- border-top-right-radius: 3px;
4703
- }
4704
- .panel > .list-group:last-child .list-group-item:last-child,
4705
- .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
4706
- border-bottom: 0;
4707
- border-bottom-right-radius: 3px;
4708
- border-bottom-left-radius: 3px;
4709
- }
4710
- .panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
4711
- border-top-left-radius: 0;
4712
- border-top-right-radius: 0;
4713
- }
4714
- .panel-heading + .list-group .list-group-item:first-child {
4715
- border-top-width: 0;
4716
- }
4717
- .list-group + .panel-footer {
4718
- border-top-width: 0;
4719
- }
4720
- .panel > .table,
4721
- .panel > .table-responsive > .table,
4722
- .panel > .panel-collapse > .table {
4723
- margin-bottom: 0;
4724
- }
4725
- .panel > .table caption,
4726
- .panel > .table-responsive > .table caption,
4727
- .panel > .panel-collapse > .table caption {
4728
- padding-right: 15px;
4729
- padding-left: 15px;
4730
- }
4731
- .panel > .table:first-child,
4732
- .panel > .table-responsive:first-child > .table:first-child {
4733
- border-top-left-radius: 3px;
4734
- border-top-right-radius: 3px;
4735
- }
4736
- .panel > .table:first-child > thead:first-child > tr:first-child,
4737
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child,
4738
- .panel > .table:first-child > tbody:first-child > tr:first-child,
4739
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
4740
- border-top-left-radius: 3px;
4741
- border-top-right-radius: 3px;
4742
- }
4743
- .panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
4744
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
4745
- .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4746
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
4747
- .panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
4748
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
4749
- .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
4750
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
4751
- border-top-left-radius: 3px;
4752
- }
4753
- .panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
4754
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
4755
- .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4756
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
4757
- .panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
4758
- .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
4759
- .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
4760
- .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
4761
- border-top-right-radius: 3px;
4762
- }
4763
- .panel > .table:last-child,
4764
- .panel > .table-responsive:last-child > .table:last-child {
4765
- border-bottom-right-radius: 3px;
4766
- border-bottom-left-radius: 3px;
4767
- }
4768
- .panel > .table:last-child > tbody:last-child > tr:last-child,
4769
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child,
4770
- .panel > .table:last-child > tfoot:last-child > tr:last-child,
4771
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
4772
- border-bottom-right-radius: 3px;
4773
- border-bottom-left-radius: 3px;
4774
- }
4775
- .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4776
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
4777
- .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4778
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
4779
- .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4780
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
4781
- .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
4782
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
4783
- border-bottom-left-radius: 3px;
4784
- }
4785
- .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4786
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
4787
- .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4788
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
4789
- .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4790
- .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
4791
- .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
4792
- .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
4793
- border-bottom-right-radius: 3px;
4794
- }
4795
- .panel > .panel-body + .table,
4796
- .panel > .panel-body + .table-responsive,
4797
- .panel > .table + .panel-body,
4798
- .panel > .table-responsive + .panel-body {
4799
- border-top: 1px solid #ddd;
4800
- }
4801
- .panel > .table > tbody:first-child > tr:first-child th,
4802
- .panel > .table > tbody:first-child > tr:first-child td {
4803
- border-top: 0;
4804
- }
4805
- .panel > .table-bordered,
4806
- .panel > .table-responsive > .table-bordered {
4807
- border: 0;
4808
- }
4809
- .panel > .table-bordered > thead > tr > th:first-child,
4810
- .panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
4811
- .panel > .table-bordered > tbody > tr > th:first-child,
4812
- .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
4813
- .panel > .table-bordered > tfoot > tr > th:first-child,
4814
- .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
4815
- .panel > .table-bordered > thead > tr > td:first-child,
4816
- .panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
4817
- .panel > .table-bordered > tbody > tr > td:first-child,
4818
- .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
4819
- .panel > .table-bordered > tfoot > tr > td:first-child,
4820
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
4821
- border-left: 0;
4822
- }
4823
- .panel > .table-bordered > thead > tr > th:last-child,
4824
- .panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
4825
- .panel > .table-bordered > tbody > tr > th:last-child,
4826
- .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
4827
- .panel > .table-bordered > tfoot > tr > th:last-child,
4828
- .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
4829
- .panel > .table-bordered > thead > tr > td:last-child,
4830
- .panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
4831
- .panel > .table-bordered > tbody > tr > td:last-child,
4832
- .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
4833
- .panel > .table-bordered > tfoot > tr > td:last-child,
4834
- .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
4835
- border-right: 0;
4836
- }
4837
- .panel > .table-bordered > thead > tr:first-child > td,
4838
- .panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
4839
- .panel > .table-bordered > tbody > tr:first-child > td,
4840
- .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
4841
- .panel > .table-bordered > thead > tr:first-child > th,
4842
- .panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
4843
- .panel > .table-bordered > tbody > tr:first-child > th,
4844
- .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
4845
- border-bottom: 0;
4846
- }
4847
- .panel > .table-bordered > tbody > tr:last-child > td,
4848
- .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
4849
- .panel > .table-bordered > tfoot > tr:last-child > td,
4850
- .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
4851
- .panel > .table-bordered > tbody > tr:last-child > th,
4852
- .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
4853
- .panel > .table-bordered > tfoot > tr:last-child > th,
4854
- .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
4855
- border-bottom: 0;
4856
- }
4857
- .panel > .table-responsive {
4858
- margin-bottom: 0;
4859
- border: 0;
4860
- }
4861
- .panel-group {
4862
- margin-bottom: 20px;
4863
- }
4864
- .panel-group .panel {
4865
- margin-bottom: 0;
4866
- border-radius: 4px;
4867
- }
4868
- .panel-group .panel + .panel {
4869
- margin-top: 5px;
4870
- }
4871
- .panel-group .panel-heading {
4872
- border-bottom: 0;
4873
- }
4874
- .panel-group .panel-heading + .panel-collapse > .panel-body,
4875
- .panel-group .panel-heading + .panel-collapse > .list-group {
4876
- border-top: 1px solid #ddd;
4877
- }
4878
- .panel-group .panel-footer {
4879
- border-top: 0;
4880
- }
4881
- .panel-group .panel-footer + .panel-collapse .panel-body {
4882
- border-bottom: 1px solid #ddd;
4883
- }
4884
- .panel-default {
4885
- border-color: #ddd;
4886
- }
4887
- .panel-default > .panel-heading {
4888
- color: #333;
4889
- background-color: #f5f5f5;
4890
- border-color: #ddd;
4891
- }
4892
- .panel-default > .panel-heading + .panel-collapse > .panel-body {
4893
- border-top-color: #ddd;
4894
- }
4895
- .panel-default > .panel-heading .badge {
4896
- color: #f5f5f5;
4897
- background-color: #333;
4898
- }
4899
- .panel-default > .panel-footer + .panel-collapse > .panel-body {
4900
- border-bottom-color: #ddd;
4901
- }
4902
- .panel-primary {
4903
- border-color: #337ab7;
4904
- }
4905
- .panel-primary > .panel-heading {
4906
- color: #fff;
4907
- background-color: #337ab7;
4908
- border-color: #337ab7;
4909
- }
4910
- .panel-primary > .panel-heading + .panel-collapse > .panel-body {
4911
- border-top-color: #337ab7;
4912
- }
4913
- .panel-primary > .panel-heading .badge {
4914
- color: #337ab7;
4915
- background-color: #fff;
4916
- }
4917
- .panel-primary > .panel-footer + .panel-collapse > .panel-body {
4918
- border-bottom-color: #337ab7;
4919
- }
4920
- .panel-success {
4921
- border-color: #d6e9c6;
4922
- }
4923
- .panel-success > .panel-heading {
4924
- color: #3c763d;
4925
- background-color: #dff0d8;
4926
- border-color: #d6e9c6;
4927
- }
4928
- .panel-success > .panel-heading + .panel-collapse > .panel-body {
4929
- border-top-color: #d6e9c6;
4930
- }
4931
- .panel-success > .panel-heading .badge {
4932
- color: #dff0d8;
4933
- background-color: #3c763d;
4934
- }
4935
- .panel-success > .panel-footer + .panel-collapse > .panel-body {
4936
- border-bottom-color: #d6e9c6;
4937
- }
4938
- .panel-info {
4939
- border-color: #bce8f1;
4940
- }
4941
- .panel-info > .panel-heading {
4942
- color: #31708f;
4943
- background-color: #d9edf7;
4944
- border-color: #bce8f1;
4945
- }
4946
- .panel-info > .panel-heading + .panel-collapse > .panel-body {
4947
- border-top-color: #bce8f1;
4948
- }
4949
- .panel-info > .panel-heading .badge {
4950
- color: #d9edf7;
4951
- background-color: #31708f;
4952
- }
4953
- .panel-info > .panel-footer + .panel-collapse > .panel-body {
4954
- border-bottom-color: #bce8f1;
4955
- }
4956
- .panel-warning {
4957
- border-color: #faebcc;
4958
- }
4959
- .panel-warning > .panel-heading {
4960
- color: #8a6d3b;
4961
- background-color: #fcf8e3;
4962
- border-color: #faebcc;
4963
- }
4964
- .panel-warning > .panel-heading + .panel-collapse > .panel-body {
4965
- border-top-color: #faebcc;
4966
- }
4967
- .panel-warning > .panel-heading .badge {
4968
- color: #fcf8e3;
4969
- background-color: #8a6d3b;
4970
- }
4971
- .panel-warning > .panel-footer + .panel-collapse > .panel-body {
4972
- border-bottom-color: #faebcc;
4973
- }
4974
- .panel-danger {
4975
- border-color: #ebccd1;
4976
- }
4977
- .panel-danger > .panel-heading {
4978
- color: #a94442;
4979
- background-color: #f2dede;
4980
- border-color: #ebccd1;
4981
- }
4982
- .panel-danger > .panel-heading + .panel-collapse > .panel-body {
4983
- border-top-color: #ebccd1;
4984
- }
4985
- .panel-danger > .panel-heading .badge {
4986
- color: #f2dede;
4987
- background-color: #a94442;
4988
- }
4989
- .panel-danger > .panel-footer + .panel-collapse > .panel-body {
4990
- border-bottom-color: #ebccd1;
4991
- }
4992
- .embed-responsive {
4993
- position: relative;
4994
- display: block;
4995
- height: 0;
4996
- padding: 0;
4997
- overflow: hidden;
4998
- }
4999
- .embed-responsive .embed-responsive-item,
5000
- .embed-responsive iframe,
5001
- .embed-responsive embed,
5002
- .embed-responsive object,
5003
- .embed-responsive video {
5004
- position: absolute;
5005
- top: 0;
5006
- bottom: 0;
5007
- left: 0;
5008
- width: 100%;
5009
- height: 100%;
5010
- border: 0;
5011
- }
5012
- .embed-responsive-16by9 {
5013
- padding-bottom: 56.25%;
5014
- }
5015
- .embed-responsive-4by3 {
5016
- padding-bottom: 75%;
5017
- }
5018
- .well {
5019
- min-height: 20px;
5020
- padding: 19px;
5021
- margin-bottom: 20px;
5022
- background-color: #f5f5f5;
5023
- border: 1px solid #e3e3e3;
5024
- border-radius: 4px;
5025
- -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5026
- box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
5027
- }
5028
- .well blockquote {
5029
- border-color: #ddd;
5030
- border-color: rgba(0, 0, 0, .15);
5031
- }
5032
- .well-lg {
5033
- padding: 24px;
5034
- border-radius: 6px;
5035
- }
5036
- .well-sm {
5037
- padding: 9px;
5038
- border-radius: 3px;
5039
- }
5040
- .close {
5041
- float: right;
5042
- font-size: 21px;
5043
- font-weight: bold;
5044
- line-height: 1;
5045
- color: #000;
5046
- text-shadow: 0 1px 0 #fff;
5047
- filter: alpha(opacity=20);
5048
- opacity: .2;
5049
- }
5050
- .close:hover,
5051
- .close:focus {
5052
- color: #000;
5053
- text-decoration: none;
5054
- cursor: pointer;
5055
- filter: alpha(opacity=50);
5056
- opacity: .5;
5057
- }
5058
- button.close {
5059
- -webkit-appearance: none;
5060
- padding: 0;
5061
- cursor: pointer;
5062
- background: transparent;
5063
- border: 0;
5064
- }
5065
- .modal-open {
5066
- overflow: hidden;
5067
- }
5068
- .modal {
5069
- position: fixed;
5070
- top: 0;
5071
- right: 0;
5072
- bottom: 0;
5073
- left: 0;
5074
- z-index: 1050;
5075
- display: none;
5076
- overflow: hidden;
5077
- -webkit-overflow-scrolling: touch;
5078
- outline: 0;
5079
- }
5080
- .modal.fade .modal-dialog {
5081
- -webkit-transition: -webkit-transform .3s ease-out;
5082
- -o-transition: -o-transform .3s ease-out;
5083
- transition: transform .3s ease-out;
5084
- -webkit-transform: translate(0, -25%);
5085
- -ms-transform: translate(0, -25%);
5086
- -o-transform: translate(0, -25%);
5087
- transform: translate(0, -25%);
5088
- }
5089
- .modal.in .modal-dialog {
5090
- -webkit-transform: translate(0, 0);
5091
- -ms-transform: translate(0, 0);
5092
- -o-transform: translate(0, 0);
5093
- transform: translate(0, 0);
5094
- }
5095
- .modal-open .modal {
5096
- overflow-x: hidden;
5097
- overflow-y: auto;
5098
- }
5099
- .modal-dialog {
5100
- position: relative;
5101
- width: auto;
5102
- margin: 10px;
5103
- }
5104
- .modal-content {
5105
- position: relative;
5106
- background-color: #fff;
5107
- -webkit-background-clip: padding-box;
5108
- background-clip: padding-box;
5109
- border: 1px solid #999;
5110
- border: 1px solid rgba(0, 0, 0, .2);
5111
- border-radius: 6px;
5112
- outline: 0;
5113
- -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5114
- box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
5115
- }
5116
- .modal-backdrop {
5117
- position: fixed;
5118
- top: 0;
5119
- right: 0;
5120
- bottom: 0;
5121
- left: 0;
5122
- z-index: 1040;
5123
- background-color: #000;
5124
- }
5125
- .modal-backdrop.fade {
5126
- filter: alpha(opacity=0);
5127
- opacity: 0;
5128
- }
5129
- .modal-backdrop.in {
5130
- filter: alpha(opacity=50);
5131
- opacity: .5;
5132
- }
5133
- .modal-header {
5134
- padding: 15px;
5135
- border-bottom: 1px solid #e5e5e5;
5136
- }
5137
- .modal-header .close {
5138
- margin-top: -2px;
5139
- }
5140
- .modal-title {
5141
- margin: 0;
5142
- line-height: 1.42857143;
5143
- }
5144
- .modal-body {
5145
- position: relative;
5146
- padding: 15px;
5147
- }
5148
- .modal-footer {
5149
- padding: 15px;
5150
- text-align: right;
5151
- border-top: 1px solid #e5e5e5;
5152
- }
5153
- .modal-footer .btn + .btn {
5154
- margin-bottom: 0;
5155
- margin-left: 5px;
5156
- }
5157
- .modal-footer .btn-group .btn + .btn {
5158
- margin-left: -1px;
5159
- }
5160
- .modal-footer .btn-block + .btn-block {
5161
- margin-left: 0;
5162
- }
5163
- .modal-scrollbar-measure {
5164
- position: absolute;
5165
- top: -9999px;
5166
- width: 50px;
5167
- height: 50px;
5168
- overflow: scroll;
5169
- }
5170
- @media (min-width: 768px) {
5171
- .modal-dialog {
5172
- width: 600px;
5173
- margin: 30px auto;
5174
- }
5175
- .modal-content {
5176
- -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5177
- box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
5178
- }
5179
- .modal-sm {
5180
- width: 300px;
5181
- }
5182
- }
5183
- @media (min-width: 992px) {
5184
- .modal-lg {
5185
- width: 900px;
5186
- }
5187
- }
5188
- .tooltip {
5189
- position: absolute;
5190
- z-index: 1070;
5191
- display: block;
5192
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5193
- font-size: 12px;
5194
- font-style: normal;
5195
- font-weight: normal;
5196
- line-height: 1.42857143;
5197
- text-align: left;
5198
- text-align: start;
5199
- text-decoration: none;
5200
- text-shadow: none;
5201
- text-transform: none;
5202
- letter-spacing: normal;
5203
- word-break: normal;
5204
- word-spacing: normal;
5205
- word-wrap: normal;
5206
- white-space: normal;
5207
- filter: alpha(opacity=0);
5208
- opacity: 0;
5209
-
5210
- line-break: auto;
5211
- }
5212
- .tooltip.in {
5213
- filter: alpha(opacity=90);
5214
- opacity: .9;
5215
- }
5216
- .tooltip.top {
5217
- padding: 5px 0;
5218
- margin-top: -3px;
5219
- }
5220
- .tooltip.right {
5221
- padding: 0 5px;
5222
- margin-left: 3px;
5223
- }
5224
- .tooltip.bottom {
5225
- padding: 5px 0;
5226
- margin-top: 3px;
5227
- }
5228
- .tooltip.left {
5229
- padding: 0 5px;
5230
- margin-left: -3px;
5231
- }
5232
- .tooltip-inner {
5233
- max-width: 200px;
5234
- padding: 3px 8px;
5235
- color: #fff;
5236
- text-align: center;
5237
- background-color: #000;
5238
- border-radius: 4px;
5239
- }
5240
- .tooltip-arrow {
5241
- position: absolute;
5242
- width: 0;
5243
- height: 0;
5244
- border-color: transparent;
5245
- border-style: solid;
5246
- }
5247
- .tooltip.top .tooltip-arrow {
5248
- bottom: 0;
5249
- left: 50%;
5250
- margin-left: -5px;
5251
- border-width: 5px 5px 0;
5252
- border-top-color: #000;
5253
- }
5254
- .tooltip.top-left .tooltip-arrow {
5255
- right: 5px;
5256
- bottom: 0;
5257
- margin-bottom: -5px;
5258
- border-width: 5px 5px 0;
5259
- border-top-color: #000;
5260
- }
5261
- .tooltip.top-right .tooltip-arrow {
5262
- bottom: 0;
5263
- left: 5px;
5264
- margin-bottom: -5px;
5265
- border-width: 5px 5px 0;
5266
- border-top-color: #000;
5267
- }
5268
- .tooltip.right .tooltip-arrow {
5269
- top: 50%;
5270
- left: 0;
5271
- margin-top: -5px;
5272
- border-width: 5px 5px 5px 0;
5273
- border-right-color: #000;
5274
- }
5275
- .tooltip.left .tooltip-arrow {
5276
- top: 50%;
5277
- right: 0;
5278
- margin-top: -5px;
5279
- border-width: 5px 0 5px 5px;
5280
- border-left-color: #000;
5281
- }
5282
- .tooltip.bottom .tooltip-arrow {
5283
- top: 0;
5284
- left: 50%;
5285
- margin-left: -5px;
5286
- border-width: 0 5px 5px;
5287
- border-bottom-color: #000;
5288
- }
5289
- .tooltip.bottom-left .tooltip-arrow {
5290
- top: 0;
5291
- right: 5px;
5292
- margin-top: -5px;
5293
- border-width: 0 5px 5px;
5294
- border-bottom-color: #000;
5295
- }
5296
- .tooltip.bottom-right .tooltip-arrow {
5297
- top: 0;
5298
- left: 5px;
5299
- margin-top: -5px;
5300
- border-width: 0 5px 5px;
5301
- border-bottom-color: #000;
5302
- }
5303
- .popover {
5304
- position: absolute;
5305
- top: 0;
5306
- left: 0;
5307
- z-index: 1060;
5308
- display: none;
5309
- max-width: 276px;
5310
- padding: 1px;
5311
- font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
5312
- font-size: 14px;
5313
- font-style: normal;
5314
- font-weight: normal;
5315
- line-height: 1.42857143;
5316
- text-align: left;
5317
- text-align: start;
5318
- text-decoration: none;
5319
- text-shadow: none;
5320
- text-transform: none;
5321
- letter-spacing: normal;
5322
- word-break: normal;
5323
- word-spacing: normal;
5324
- word-wrap: normal;
5325
- white-space: normal;
5326
- background-color: #fff;
5327
- -webkit-background-clip: padding-box;
5328
- background-clip: padding-box;
5329
- border: 1px solid #ccc;
5330
- border: 1px solid rgba(0, 0, 0, .2);
5331
- border-radius: 6px;
5332
- -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
5333
- box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
5334
-
5335
- line-break: auto;
5336
- }
5337
- .popover.top {
5338
- margin-top: -10px;
5339
- }
5340
- .popover.right {
5341
- margin-left: 10px;
5342
- }
5343
- .popover.bottom {
5344
- margin-top: 10px;
5345
- }
5346
- .popover.left {
5347
- margin-left: -10px;
5348
- }
5349
- .popover-title {
5350
- padding: 8px 14px;
5351
- margin: 0;
5352
- font-size: 14px;
5353
- background-color: #f7f7f7;
5354
- border-bottom: 1px solid #ebebeb;
5355
- border-radius: 5px 5px 0 0;
5356
- }
5357
- .popover-content {
5358
- padding: 9px 14px;
5359
- }
5360
- .popover > .arrow,
5361
- .popover > .arrow:after {
5362
- position: absolute;
5363
- display: block;
5364
- width: 0;
5365
- height: 0;
5366
- border-color: transparent;
5367
- border-style: solid;
5368
- }
5369
- .popover > .arrow {
5370
- border-width: 11px;
5371
- }
5372
- .popover > .arrow:after {
5373
- content: "";
5374
- border-width: 10px;
5375
- }
5376
- .popover.top > .arrow {
5377
- bottom: -11px;
5378
- left: 50%;
5379
- margin-left: -11px;
5380
- border-top-color: #999;
5381
- border-top-color: rgba(0, 0, 0, .25);
5382
- border-bottom-width: 0;
5383
- }
5384
- .popover.top > .arrow:after {
5385
- bottom: 1px;
5386
- margin-left: -10px;
5387
- content: " ";
5388
- border-top-color: #fff;
5389
- border-bottom-width: 0;
5390
- }
5391
- .popover.right > .arrow {
5392
- top: 50%;
5393
- left: -11px;
5394
- margin-top: -11px;
5395
- border-right-color: #999;
5396
- border-right-color: rgba(0, 0, 0, .25);
5397
- border-left-width: 0;
5398
- }
5399
- .popover.right > .arrow:after {
5400
- bottom: -10px;
5401
- left: 1px;
5402
- content: " ";
5403
- border-right-color: #fff;
5404
- border-left-width: 0;
5405
- }
5406
- .popover.bottom > .arrow {
5407
- top: -11px;
5408
- left: 50%;
5409
- margin-left: -11px;
5410
- border-top-width: 0;
5411
- border-bottom-color: #999;
5412
- border-bottom-color: rgba(0, 0, 0, .25);
5413
- }
5414
- .popover.bottom > .arrow:after {
5415
- top: 1px;
5416
- margin-left: -10px;
5417
- content: " ";
5418
- border-top-width: 0;
5419
- border-bottom-color: #fff;
5420
- }
5421
- .popover.left > .arrow {
5422
- top: 50%;
5423
- right: -11px;
5424
- margin-top: -11px;
5425
- border-right-width: 0;
5426
- border-left-color: #999;
5427
- border-left-color: rgba(0, 0, 0, .25);
5428
- }
5429
- .popover.left > .arrow:after {
5430
- right: 1px;
5431
- bottom: -10px;
5432
- content: " ";
5433
- border-right-width: 0;
5434
- border-left-color: #fff;
5435
- }
5436
- .carousel {
5437
- position: relative;
5438
- }
5439
- .carousel-inner {
5440
- position: relative;
5441
- width: 100%;
5442
- overflow: hidden;
5443
- }
5444
- .carousel-inner > .item {
5445
- position: relative;
5446
- display: none;
5447
- -webkit-transition: .6s ease-in-out left;
5448
- -o-transition: .6s ease-in-out left;
5449
- transition: .6s ease-in-out left;
5450
- }
5451
- .carousel-inner > .item > img,
5452
- .carousel-inner > .item > a > img {
5453
- line-height: 1;
5454
- }
5455
- @media all and (transform-3d), (-webkit-transform-3d) {
5456
- .carousel-inner > .item {
5457
- -webkit-transition: -webkit-transform .6s ease-in-out;
5458
- -o-transition: -o-transform .6s ease-in-out;
5459
- transition: transform .6s ease-in-out;
5460
-
5461
- -webkit-backface-visibility: hidden;
5462
- backface-visibility: hidden;
5463
- -webkit-perspective: 1000px;
5464
- perspective: 1000px;
5465
- }
5466
- .carousel-inner > .item.next,
5467
- .carousel-inner > .item.active.right {
5468
- left: 0;
5469
- -webkit-transform: translate3d(100%, 0, 0);
5470
- transform: translate3d(100%, 0, 0);
5471
- }
5472
- .carousel-inner > .item.prev,
5473
- .carousel-inner > .item.active.left {
5474
- left: 0;
5475
- -webkit-transform: translate3d(-100%, 0, 0);
5476
- transform: translate3d(-100%, 0, 0);
5477
- }
5478
- .carousel-inner > .item.next.left,
5479
- .carousel-inner > .item.prev.right,
5480
- .carousel-inner > .item.active {
5481
- left: 0;
5482
- -webkit-transform: translate3d(0, 0, 0);
5483
- transform: translate3d(0, 0, 0);
5484
- }
5485
- }
5486
- .carousel-inner > .active,
5487
- .carousel-inner > .next,
5488
- .carousel-inner > .prev {
5489
- display: block;
5490
- }
5491
- .carousel-inner > .active {
5492
- left: 0;
5493
- }
5494
- .carousel-inner > .next,
5495
- .carousel-inner > .prev {
5496
- position: absolute;
5497
- top: 0;
5498
- width: 100%;
5499
- }
5500
- .carousel-inner > .next {
5501
- left: 100%;
5502
- }
5503
- .carousel-inner > .prev {
5504
- left: -100%;
5505
- }
5506
- .carousel-inner > .next.left,
5507
- .carousel-inner > .prev.right {
5508
- left: 0;
5509
- }
5510
- .carousel-inner > .active.left {
5511
- left: -100%;
5512
- }
5513
- .carousel-inner > .active.right {
5514
- left: 100%;
5515
- }
5516
- .carousel-control {
5517
- position: absolute;
5518
- top: 0;
5519
- bottom: 0;
5520
- left: 0;
5521
- width: 15%;
5522
- font-size: 20px;
5523
- color: #fff;
5524
- text-align: center;
5525
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
5526
- background-color: rgba(0, 0, 0, 0);
5527
- filter: alpha(opacity=50);
5528
- opacity: .5;
5529
- }
5530
- .carousel-control.left {
5531
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5532
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5533
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
5534
- background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0%, rgba(0, 0, 0, .0001) 100%);
5535
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
5536
- background-repeat: repeat-x;
5537
- }
5538
- .carousel-control.right {
5539
- right: 0;
5540
- left: auto;
5541
- background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5542
- background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5543
- background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
5544
- background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0%, rgba(0, 0, 0, .5) 100%);
5545
- filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
5546
- background-repeat: repeat-x;
5547
- }
5548
- .carousel-control:hover,
5549
- .carousel-control:focus {
5550
- color: #fff;
5551
- text-decoration: none;
5552
- filter: alpha(opacity=90);
5553
- outline: 0;
5554
- opacity: .9;
5555
- }
5556
- .carousel-control .icon-prev,
5557
- .carousel-control .icon-next,
5558
- .carousel-control .glyphicon-chevron-left,
5559
- .carousel-control .glyphicon-chevron-right {
5560
- position: absolute;
5561
- top: 50%;
5562
- z-index: 5;
5563
- display: inline-block;
5564
- margin-top: -10px;
5565
- }
5566
- .carousel-control .icon-prev,
5567
- .carousel-control .glyphicon-chevron-left {
5568
- left: 50%;
5569
- margin-left: -10px;
5570
- }
5571
- .carousel-control .icon-next,
5572
- .carousel-control .glyphicon-chevron-right {
5573
- right: 50%;
5574
- margin-right: -10px;
5575
- }
5576
- .carousel-control .icon-prev,
5577
- .carousel-control .icon-next {
5578
- width: 20px;
5579
- height: 20px;
5580
- font-family: serif;
5581
- line-height: 1;
5582
- }
5583
- .carousel-control .icon-prev:before {
5584
- content: '\2039';
5585
- }
5586
- .carousel-control .icon-next:before {
5587
- content: '\203a';
5588
- }
5589
- .carousel-indicators {
5590
- position: absolute;
5591
- bottom: 10px;
5592
- left: 50%;
5593
- z-index: 15;
5594
- width: 60%;
5595
- padding-left: 0;
5596
- margin-left: -30%;
5597
- text-align: center;
5598
- list-style: none;
5599
- }
5600
- .carousel-indicators li {
5601
- display: inline-block;
5602
- width: 10px;
5603
- height: 10px;
5604
- margin: 1px;
5605
- text-indent: -999px;
5606
- cursor: pointer;
5607
- background-color: #000 \9;
5608
- background-color: rgba(0, 0, 0, 0);
5609
- border: 1px solid #fff;
5610
- border-radius: 10px;
5611
- }
5612
- .carousel-indicators .active {
5613
- width: 12px;
5614
- height: 12px;
5615
- margin: 0;
5616
- background-color: #fff;
5617
- }
5618
- .carousel-caption {
5619
- position: absolute;
5620
- right: 15%;
5621
- bottom: 20px;
5622
- left: 15%;
5623
- z-index: 10;
5624
- padding-top: 20px;
5625
- padding-bottom: 20px;
5626
- color: #fff;
5627
- text-align: center;
5628
- text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
5629
- }
5630
- .carousel-caption .btn {
5631
- text-shadow: none;
5632
- }
5633
- @media screen and (min-width: 768px) {
5634
- .carousel-control .glyphicon-chevron-left,
5635
- .carousel-control .glyphicon-chevron-right,
5636
- .carousel-control .icon-prev,
5637
- .carousel-control .icon-next {
5638
- width: 30px;
5639
- height: 30px;
5640
- margin-top: -10px;
5641
- font-size: 30px;
5642
- }
5643
- .carousel-control .glyphicon-chevron-left,
5644
- .carousel-control .icon-prev {
5645
- margin-left: -10px;
5646
- }
5647
- .carousel-control .glyphicon-chevron-right,
5648
- .carousel-control .icon-next {
5649
- margin-right: -10px;
5650
- }
5651
- .carousel-caption {
5652
- right: 20%;
5653
- left: 20%;
5654
- padding-bottom: 30px;
5655
- }
5656
- .carousel-indicators {
5657
- bottom: 20px;
5658
- }
5659
- }
5660
- .tinv-wishlist-clearfix:before,
5661
- .tinv-wishlist-clearfix:after,
5662
- .dl-horizontal dd:before,
5663
- .dl-horizontal dd:after,
5664
- .container:before,
5665
- .container:after,
5666
- .container-fluid:before,
5667
- .container-fluid:after,
5668
- .row:before,
5669
- .row:after,
5670
- .form-horizontal .form-group:before,
5671
- .form-horizontal .form-group:after,
5672
- .btn-toolbar:before,
5673
- .btn-toolbar:after,
5674
- .btn-group-vertical > .btn-group:before,
5675
- .btn-group-vertical > .btn-group:after,
5676
- .nav:before,
5677
- .nav:after,
5678
- .navbar:before,
5679
- .navbar:after,
5680
- .navbar-header:before,
5681
- .navbar-header:after,
5682
- .navbar-collapse:before,
5683
- .navbar-collapse:after,
5684
- .pager:before,
5685
- .pager:after,
5686
- .panel-body:before,
5687
- .panel-body:after,
5688
- .modal-header:before,
5689
- .modal-header:after,
5690
- .modal-footer:before,
5691
- .modal-footer:after {
5692
- display: table;
5693
- content: " ";
5694
- }
5695
- .tinv-wishlist-clearfix:after,
5696
- .dl-horizontal dd:after,
5697
- .container:after,
5698
- .container-fluid:after,
5699
- .row:after,
5700
- .form-horizontal .form-group:after,
5701
- .btn-toolbar:after,
5702
- .btn-group-vertical > .btn-group:after,
5703
- .nav:after,
5704
- .navbar:after,
5705
- .navbar-header:after,
5706
- .navbar-collapse:after,
5707
- .pager:after,
5708
- .panel-body:after,
5709
- .modal-header:after,
5710
- .modal-footer:after {
5711
- clear: both;
5712
- }
5713
- .center-block {
5714
- display: block;
5715
- margin-right: auto;
5716
- margin-left: auto;
5717
- }
5718
- .pull-right {
5719
- float: right !important;
5720
- }
5721
- .pull-left {
5722
- float: left !important;
5723
- }
5724
- .hide {
5725
- display: none !important;
5726
- }
5727
- .show {
5728
- display: block !important;
5729
- }
5730
- .invisible {
5731
- visibility: hidden;
5732
- }
5733
- .text-hide {
5734
- font: 0/0 a;
5735
- color: transparent;
5736
- text-shadow: none;
5737
- background-color: transparent;
5738
- border: 0;
5739
- }
5740
- .hidden {
5741
- display: none !important;
5742
- }
5743
- .affix {
5744
- position: fixed;
5745
- }
5746
- @-ms-viewport {
5747
- width: device-width;
5748
- }
5749
- .visible-xs,
5750
- .visible-sm,
5751
- .visible-md,
5752
- .visible-lg {
5753
- display: none !important;
5754
- }
5755
- .visible-xs-block,
5756
- .visible-xs-inline,
5757
- .visible-xs-inline-block,
5758
- .visible-sm-block,
5759
- .visible-sm-inline,
5760
- .visible-sm-inline-block,
5761
- .visible-md-block,
5762
- .visible-md-inline,
5763
- .visible-md-inline-block,
5764
- .visible-lg-block,
5765
- .visible-lg-inline,
5766
- .visible-lg-inline-block {
5767
- display: none !important;
5768
- }
5769
- @media (max-width: 767px) {
5770
- .visible-xs {
5771
- display: block !important;
5772
- }
5773
- table.visible-xs {
5774
- display: table !important;
5775
- }
5776
- tr.visible-xs {
5777
- display: table-row !important;
5778
- }
5779
- th.visible-xs,
5780
- td.visible-xs {
5781
- display: table-cell !important;
5782
- }
5783
- }
5784
- @media (max-width: 767px) {
5785
- .visible-xs-block {
5786
- display: block !important;
5787
- }
5788
- }
5789
- @media (max-width: 767px) {
5790
- .visible-xs-inline {
5791
- display: inline !important;
5792
- }
5793
- }
5794
- @media (max-width: 767px) {
5795
- .visible-xs-inline-block {
5796
- display: inline-block !important;
5797
- }
5798
- }
5799
- @media (min-width: 768px) and (max-width: 991px) {
5800
- .visible-sm {
5801
- display: block !important;
5802
- }
5803
- table.visible-sm {
5804
- display: table !important;
5805
- }
5806
- tr.visible-sm {
5807
- display: table-row !important;
5808
- }
5809
- th.visible-sm,
5810
- td.visible-sm {
5811
- display: table-cell !important;
5812
- }
5813
- }
5814
- @media (min-width: 768px) and (max-width: 991px) {
5815
- .visible-sm-block {
5816
- display: block !important;
5817
- }
5818
- }
5819
- @media (min-width: 768px) and (max-width: 991px) {
5820
- .visible-sm-inline {
5821
- display: inline !important;
5822
- }
5823
- }
5824
- @media (min-width: 768px) and (max-width: 991px) {
5825
- .visible-sm-inline-block {
5826
- display: inline-block !important;
5827
- }
5828
- }
5829
- @media (min-width: 992px) and (max-width: 1199px) {
5830
- .visible-md {
5831
- display: block !important;
5832
- }
5833
- table.visible-md {
5834
- display: table !important;
5835
- }
5836
- tr.visible-md {
5837
- display: table-row !important;
5838
- }
5839
- th.visible-md,
5840
- td.visible-md {
5841
- display: table-cell !important;
5842
- }
5843
- }
5844
- @media (min-width: 992px) and (max-width: 1199px) {
5845
- .visible-md-block {
5846
- display: block !important;
5847
- }
5848
- }
5849
- @media (min-width: 992px) and (max-width: 1199px) {
5850
- .visible-md-inline {
5851
- display: inline !important;
5852
- }
5853
- }
5854
- @media (min-width: 992px) and (max-width: 1199px) {
5855
- .visible-md-inline-block {
5856
- display: inline-block !important;
5857
- }
5858
- }
5859
- @media (min-width: 1200px) {
5860
- .visible-lg {
5861
- display: block !important;
5862
- }
5863
- table.visible-lg {
5864
- display: table !important;
5865
- }
5866
- tr.visible-lg {
5867
- display: table-row !important;
5868
- }
5869
- th.visible-lg,
5870
- td.visible-lg {
5871
- display: table-cell !important;
5872
- }
5873
- }
5874
- @media (min-width: 1200px) {
5875
- .visible-lg-block {
5876
- display: block !important;
5877
- }
5878
- }
5879
- @media (min-width: 1200px) {
5880
- .visible-lg-inline {
5881
- display: inline !important;
5882
- }
5883
- }
5884
- @media (min-width: 1200px) {
5885
- .visible-lg-inline-block {
5886
- display: inline-block !important;
5887
- }
5888
- }
5889
- @media (max-width: 767px) {
5890
- .hidden-xs {
5891
- display: none !important;
5892
- }
5893
- }
5894
- @media (min-width: 768px) and (max-width: 991px) {
5895
- .hidden-sm {
5896
- display: none !important;
5897
- }
5898
- }
5899
- @media (min-width: 992px) and (max-width: 1199px) {
5900
- .hidden-md {
5901
- display: none !important;
5902
- }
5903
- }
5904
- @media (min-width: 1200px) {
5905
- .hidden-lg {
5906
- display: none !important;
5907
- }
5908
- }
5909
- .visible-print {
5910
- display: none !important;
5911
- }
5912
- @media print {
5913
- .visible-print {
5914
- display: block !important;
5915
- }
5916
- table.visible-print {
5917
- display: table !important;
5918
- }
5919
- tr.visible-print {
5920
- display: table-row !important;
5921
- }
5922
- th.visible-print,
5923
- td.visible-print {
5924
- display: table-cell !important;
5925
- }
5926
- }
5927
- .visible-print-block {
5928
- display: none !important;
5929
- }
5930
- @media print {
5931
- .visible-print-block {
5932
- display: block !important;
5933
- }
5934
- }
5935
- .visible-print-inline {
5936
- display: none !important;
5937
- }
5938
- @media print {
5939
- .visible-print-inline {
5940
- display: inline !important;
5941
- }
5942
- }
5943
- .visible-print-inline-block {
5944
- display: none !important;
5945
- }
5946
- @media print {
5947
- .visible-print-inline-block {
5948
- display: inline-block !important;
5949
- }
5950
- }
5951
- @media print {
5952
- .hidden-print {
5953
- display: none !important;
5954
- }
5955
- }
5956
- /*# sourceMappingURL=bootstrap.css.map */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
assets/css/bootstrap.min.css DELETED
@@ -1,5 +0,0 @@
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
- *//*! 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:700}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 silver}legend{padding:0;border:0}textarea{overflow:auto}optgroup{font-weight:700}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{*,:after,:before{color:#000!important;text-shadow:none!important;background:0 0!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:""}blockquote,pre{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}img,tr{page-break-inside:avoid}img{max-width:100%!important}h2,h3,p{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 td,.table-bordered th{border:1px solid #ddd!important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}:after,:before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:10px;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857143;color:#333;background-color:#fff}button,input,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#337ab7;text-decoration:none}a:focus,a:hover{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}.carousel-inner>.item>a>img,.carousel-inner>.item>img,.img-responsive,.thumbnail a>img,.thumbnail>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,.h1 small,.h2 .small,.h2 small,.h3 .small,.h3 small,.h4 .small,.h4 small,.h5 .small,.h5 small,.h6 .small,.h6 small,h1 .small,h1 small,h2 .small,h2 small,h3 .small,h3 small,h4 .small,h4 small,h5 .small,h5 small,h6 .small,h6 small{font-weight:400;line-height:1;color:#777}.h1,.h2,.h3,h1,h2,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,.h5,.h6,h4,h5,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:focus,a.text-primary:hover{color:#286090}.text-success{color:#3c763d}a.text-success:focus,a.text-success:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:focus,a.text-info:hover{color:#245269}.text-warning{color:#8a6d3b}a.text-warning:focus,a.text-warning:hover{color:#66512c}.text-danger{color:#a94442}a.text-danger:focus,a.text-danger:hover{color:#843534}.bg-primary{color:#fff;background-color:#337ab7}a.bg-primary:focus,a.bg-primary:hover{background-color:#286090}.bg-success{background-color:#dff0d8}a.bg-success:focus,a.bg-success:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:focus,a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:focus,a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:focus,a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ol,ul{margin-top:0;margin-bottom:10px}ol ol,ol ul,ul ol,ul ul{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}dd,dt{line-height:1.42857143}dt{font-weight:700}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[data-original-title],abbr[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 ol:last-child,blockquote p:last-child,blockquote ul:last-child{margin-bottom:0}blockquote .small,blockquote footer,blockquote small{display:block;font-size:80%;line-height:1.42857143;color:#777}blockquote .small:before,blockquote footer: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 .small:before,.blockquote-reverse footer:before,.blockquote-reverse small:before,blockquote.pull-right .small:before,blockquote.pull-right footer:before,blockquote.pull-right small:before{content:''}.blockquote-reverse .small:after,.blockquote-reverse footer:after,.blockquote-reverse small:after,blockquote.pull-right .small:after,blockquote.pull-right footer: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:700;-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-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.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-md-1,.col-md-10,.col-md-11,.col-md-12,.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-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{position:relative;min-height:1px;padding-right:15px;padding-left:15px}.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9{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-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9{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-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9{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-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9{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>tbody>tr>td,.table>tbody>tr>th,.table>tfoot>tr>td,.table>tfoot>tr>th,.table>thead>tr>td,.table>thead>tr>th{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>td,.table>caption+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>thead:first-child>tr:first-child>td,.table>thead:first-child>tr:first-child>th{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>tbody>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tfoot>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>thead>tr>td,.table-condensed>thead>tr>th{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>tbody>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tfoot>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{border:1px solid #ddd}.table-bordered>thead>tr>td,.table-bordered>thead>tr>th{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>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>thead>tr>td.active,.table>thead>tr>th.active{background-color:#f5f5f5}.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th,.table-hover>tbody>tr:hover>.active,.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}.table>tbody>tr.success>td,.table>tbody>tr.success>th,.table>tbody>tr>td.success,.table>tbody>tr>th.success,.table>tfoot>tr.success>td,.table>tfoot>tr.success>th,.table>tfoot>tr>td.success,.table>tfoot>tr>th.success,.table>thead>tr.success>td,.table>thead>tr.success>th,.table>thead>tr>td.success,.table>thead>tr>th.success{background-color:#dff0d8}.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr:hover>.success,.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>thead>tr>td.info,.table>thead>tr>th.info{background-color:#d9edf7}.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th,.table-hover>tbody>tr:hover>.info,.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}.table>tbody>tr.warning>td,.table>tbody>tr.warning>th,.table>tbody>tr>td.warning,.table>tbody>tr>th.warning,.table>tfoot>tr.warning>td,.table>tfoot>tr.warning>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>th.warning,.table>thead>tr.warning>td,.table>thead>tr.warning>th,.table>thead>tr>td.warning,.table>thead>tr>th.warning{background-color:#fcf8e3}.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr:hover>.warning,.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}.table>tbody>tr.danger>td,.table>tbody>tr.danger>th,.table>tbody>tr>td.danger,.table>tbody>tr>th.danger,.table>tfoot>tr.danger>td,.table>tfoot>tr.danger>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>th.danger,.table>thead>tr.danger>td,.table>thead>tr.danger>th,.table>thead>tr>td.danger,.table>thead>tr>th.danger{background-color:#f2dede}.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr:hover>.danger,.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>th.danger:hover{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>tbody>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tfoot>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>thead>tr>th{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th{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:700}input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type=checkbox],input[type=radio]{margin:4px 0 0;line-height:normal}input[type=file]{display:block}input[type=range]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type=checkbox]:focus,input[type=file]:focus,input[type=radio]: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=datetime-local].form-control,input[type=month].form-control,input[type=time].form-control{line-height:34px}.input-group-sm input[type=date],.input-group-sm input[type=datetime-local],.input-group-sm input[type=month],.input-group-sm input[type=time],input[type=date].input-sm,input[type=datetime-local].input-sm,input[type=month].input-sm,input[type=time].input-sm{line-height:30px}.input-group-lg input[type=date],.input-group-lg input[type=datetime-local],.input-group-lg input[type=month],.input-group-lg input[type=time],input[type=date].input-lg,input[type=datetime-local].input-lg,input[type=month].input-lg,input[type=time].input-lg{line-height:46px}}.form-group{margin-bottom:15px}.checkbox,.radio{position:relative;display:block;margin-top:10px;margin-bottom:10px}.checkbox label,.radio label{min-height:20px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}.checkbox input[type=checkbox],.checkbox-inline input[type=checkbox],.radio input[type=radio],.radio-inline input[type=radio]{position:absolute;margin-left:-20px}.checkbox+.checkbox,.radio+.radio{margin-top:-5px}.checkbox-inline,.radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}.checkbox-inline+.checkbox-inline,.radio-inline+.radio-inline{margin-top:0;margin-left:10px}fieldset[disabled] input[type=checkbox],fieldset[disabled] input[type=radio],input[type=checkbox].disabled,input[type=checkbox][disabled],input[type=radio].disabled,input[type=radio][disabled]{cursor:not-allowed}.checkbox-inline.disabled,.radio-inline.disabled,fieldset[disabled] .checkbox-inline,fieldset[disabled] .radio-inline{cursor:not-allowed}.checkbox.disabled label,.radio.disabled label,fieldset[disabled] .checkbox label,fieldset[disabled] .radio 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}select[multiple].input-sm,textarea.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 select[multiple].form-control,.form-group-sm textarea.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}select[multiple].input-lg,textarea.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 select[multiple].form-control,.form-group-lg textarea.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}.form-group-lg .form-control+.form-control-feedback,.input-group-lg+.form-control-feedback,.input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}.form-group-sm .form-control+.form-control-feedback,.input-group-sm+.form-control-feedback,.input-sm+.form-control-feedback{width:30px;height:30px;line-height:30px}.has-success .checkbox,.has-success .checkbox-inline,.has-success .control-label,.has-success .help-block,.has-success .radio,.has-success .radio-inline,.has-success.checkbox label,.has-success.checkbox-inline label,.has-success.radio label,.has-success.radio-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 .checkbox,.has-warning .checkbox-inline,.has-warning .control-label,.has-warning .help-block,.has-warning .radio,.has-warning .radio-inline,.has-warning.checkbox label,.has-warning.checkbox-inline label,.has-warning.radio label,.has-warning.radio-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 .checkbox,.has-error .checkbox-inline,.has-error .control-label,.has-error .help-block,.has-error .radio,.has-error .radio-inline,.has-error.checkbox label,.has-error.checkbox-inline label,.has-error.radio label,.has-error.radio-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 .form-control,.form-inline .input-group .input-group-addon,.form-inline .input-group .input-group-btn{width:auto}.form-inline .input-group>.form-control{width:100%}.form-inline .control-label{margin-bottom:0;vertical-align:middle}.form-inline .checkbox,.form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.form-inline .checkbox label,.form-inline .radio label{padding-left:0}.form-inline .checkbox input[type=checkbox],.form-inline .radio input[type=radio]{position:relative;margin-left:0}.form-inline .has-feedback .form-control-feedback{top:0}}.form-horizontal .checkbox,.form-horizontal .checkbox-inline,.form-horizontal .radio,.form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}.form-horizontal .checkbox,.form-horizontal .radio{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:400;line-height:1.42857143;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}.btn.active.focus,.btn.active:focus,.btn.focus,.btn:active.focus,.btn:active:focus,.btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn.focus,.btn:focus,.btn:hover{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;-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.focus,.btn-default.active:focus,.btn-default.active:hover,.btn-default:active.focus,.btn-default:active:focus,.btn-default:active:hover,.open>.dropdown-toggle.btn-default.focus,.open>.dropdown-toggle.btn-default:focus,.open>.dropdown-toggle.btn-default:hover{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.focus,.btn-default.disabled:focus,.btn-default.disabled:hover,.btn-default[disabled].focus,.btn-default[disabled]:focus,.btn-default[disabled]:hover,fieldset[disabled] .btn-default.focus,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:hover{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.focus,.btn-primary.active:focus,.btn-primary.active:hover,.btn-primary:active.focus,.btn-primary:active:focus,.btn-primary:active:hover,.open>.dropdown-toggle.btn-primary.focus,.open>.dropdown-toggle.btn-primary:focus,.open>.dropdown-toggle.btn-primary:hover{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.focus,.btn-primary.disabled:focus,.btn-primary.disabled:hover,.btn-primary[disabled].focus,.btn-primary[disabled]:focus,.btn-primary[disabled]:hover,fieldset[disabled] .btn-primary.focus,fieldset[disabled] .btn-primary:focus,fieldset[disabled] .btn-primary:hover{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.focus,.btn-success.active:focus,.btn-success.active:hover,.btn-success:active.focus,.btn-success:active:focus,.btn-success:active:hover,.open>.dropdown-toggle.btn-success.focus,.open>.dropdown-toggle.btn-success:focus,.open>.dropdown-toggle.btn-success:hover{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.focus,.btn-success.disabled:focus,.btn-success.disabled:hover,.btn-success[disabled].focus,.btn-success[disabled]:focus,.btn-success[disabled]:hover,fieldset[disabled] .btn-success.focus,fieldset[disabled] .btn-success:focus,fieldset[disabled] .btn-success:hover{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.focus,.btn-info.active:focus,.btn-info.active:hover,.btn-info:active.focus,.btn-info:active:focus,.btn-info:active:hover,.open>.dropdown-toggle.btn-info.focus,.open>.dropdown-toggle.btn-info:focus,.open>.dropdown-toggle.btn-info:hover{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.focus,.btn-info.disabled:focus,.btn-info.disabled:hover,.btn-info[disabled].focus,.btn-info[disabled]:focus,.btn-info[disabled]:hover,fieldset[disabled] .btn-info.focus,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:hover{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.focus,.btn-warning.active:focus,.btn-warning.active:hover,.btn-warning:active.focus,.btn-warning:active:focus,.btn-warning:active:hover,.open>.dropdown-toggle.btn-warning.focus,.open>.dropdown-toggle.btn-warning:focus,.open>.dropdown-toggle.btn-warning:hover{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.focus,.btn-warning.disabled:focus,.btn-warning.disabled:hover,.btn-warning[disabled].focus,.btn-warning[disabled]:focus,.btn-warning[disabled]:hover,fieldset[disabled] .btn-warning.focus,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .btn-warning:hover{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.focus,.btn-danger.active:focus,.btn-danger.active:hover,.btn-danger:active.focus,.btn-danger:active:focus,.btn-danger:active:hover,.open>.dropdown-toggle.btn-danger.focus,.open>.dropdown-toggle.btn-danger:focus,.open>.dropdown-toggle.btn-danger:hover{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.focus,.btn-danger.disabled:focus,.btn-danger.disabled:hover,.btn-danger[disabled].focus,.btn-danger[disabled]:focus,.btn-danger[disabled]:hover,fieldset[disabled] .btn-danger.focus,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{font-weight:400;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:active,.btn-link:focus,.btn-link:hover{border-color:transparent}.btn-link:focus,.btn-link:hover{color:#23527c;text-decoration:underline;background-color:transparent}.btn-link[disabled]:focus,.btn-link[disabled]:hover,fieldset[disabled] .btn-link:focus,fieldset[disabled] .btn-link:hover{color:#777;text-decoration:none}.btn-group-lg>.btn,.btn-lg{padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.btn-group-sm>.btn,.btn-sm{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-group-xs>.btn,.btn-xs{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=button].btn-block,input[type=reset].btn-block,input[type=submit].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-right:4px solid transparent;border-left:4px solid transparent}.dropdown,.dropup{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:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>a:focus,.dropdown-menu>li>a:hover{color:#262626;text-decoration:none;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:focus,.dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#337ab7;outline:0}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{color:#777}.dropdown-menu>.disabled>a:focus,.dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.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}.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-vertical>.btn,.btn-group>.btn{position:relative;float:left}.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{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=checkbox],[data-toggle=buttons]>.btn input[type=radio],[data-toggle=buttons]>.btn-group>.btn input[type=checkbox],[data-toggle=buttons]>.btn-group>.btn input[type=radio]{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}select[multiple].input-group-lg>.form-control,select[multiple].input-group-lg>.input-group-addon,select[multiple].input-group-lg>.input-group-btn>.btn,textarea.input-group-lg>.form-control,textarea.input-group-lg>.input-group-addon,textarea.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}select[multiple].input-group-sm>.form-control,select[multiple].input-group-sm>.input-group-addon,select[multiple].input-group-sm>.input-group-btn>.btn,textarea.input-group-sm>.form-control,textarea.input-group-sm>.input-group-addon,textarea.input-group-sm>.input-group-btn>.btn{height:auto}.input-group .form-control,.input-group-addon,.input-group-btn{display:table-cell}.input-group .form-control:not(:first-child):not(:last-child),.input-group-addon:not(:first-child):not(:last-child),.input-group-btn: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:400;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=checkbox],.input-group-addon input[type=radio]{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-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){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:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.dropdown-toggle{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:active,.input-group-btn>.btn:focus,.input-group-btn>.btn:hover{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:focus,.nav>li>a:hover{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#777}.nav>li.disabled>a:focus,.nav>li.disabled>a:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{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:focus,.nav-tabs>li.active>a:hover{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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-tabs.nav-justified>.active>a:hover{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:focus,.nav-pills>li.active>a:hover{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:focus,.nav-tabs-justified>.active>a:hover{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:focus,.nav-tabs-justified>.active>a:hover{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-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse,.navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){.navbar-fixed-bottom .navbar-collapse,.navbar-fixed-top .navbar-collapse{max-height:200px}}.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{margin-right:-15px;margin-left:-15px}@media (min-width:768px){.container-fluid>.navbar-collapse,.container-fluid>.navbar-header,.container>.navbar-collapse,.container>.navbar-header{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-bottom,.navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){.navbar-fixed-bottom,.navbar-fixed-top{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:focus,.navbar-brand:hover{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 .dropdown-header,.navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}.navbar-nav .open .dropdown-menu>li>a{line-height:20px}.navbar-nav .open .dropdown-menu>li>a:focus,.navbar-nav .open .dropdown-menu>li>a:hover{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 .form-control,.navbar-form .input-group .input-group-addon,.navbar-form .input-group .input-group-btn{width:auto}.navbar-form .input-group>.form-control{width:100%}.navbar-form .control-label{margin-bottom:0;vertical-align:middle}.navbar-form .checkbox,.navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}.navbar-form .checkbox label,.navbar-form .radio label{padding-left:0}.navbar-form .checkbox input[type=checkbox],.navbar-form .radio input[type=radio]{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:focus,.navbar-default .navbar-brand:hover{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:focus,.navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav>.active>a,.navbar-default .navbar-nav>.active>a:focus,.navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav>.disabled>a,.navbar-default .navbar-nav>.disabled>a:focus,.navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}.navbar-default .navbar-toggle{border-color:#ddd}.navbar-default .navbar-toggle:focus,.navbar-default .navbar-toggle:hover{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:focus,.navbar-default .navbar-nav>.open>a:hover{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:focus,.navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}.navbar-default .navbar-nav .open .dropdown-menu>.active>a,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-default .btn-link:hover{color:#333}.navbar-default .btn-link[disabled]:focus,.navbar-default .btn-link[disabled]:hover,fieldset[disabled] .navbar-default .btn-link:focus,fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}.navbar-inverse{background-color:#222;border-color:#080808}.navbar-inverse .navbar-brand{color:#9d9d9d}.navbar-inverse .navbar-brand:focus,.navbar-inverse .navbar-brand:hover{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:focus,.navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav>.active>a,.navbar-inverse .navbar-nav>.active>a:focus,.navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav>.disabled>a,.navbar-inverse .navbar-nav>.disabled>a:focus,.navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}.navbar-inverse .navbar-toggle{border-color:#333}.navbar-inverse .navbar-toggle:focus,.navbar-inverse .navbar-toggle:hover{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:focus,.navbar-inverse .navbar-nav>.open>a:hover{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:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,.navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{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:focus,.navbar-inverse .btn-link:hover{color:#fff}.navbar-inverse .btn-link[disabled]:focus,.navbar-inverse .btn-link[disabled]:hover,fieldset[disabled] .navbar-inverse .btn-link:focus,fieldset[disabled] .navbar-inverse .btn-link:hover{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:focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover{z-index:2;color:#23527c;background-color:#eee;border-color:#ddd}.pagination>.active>a,.pagination>.active>a:focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#337ab7;border-color:#337ab7}.pagination>.disabled>a,.pagination>.disabled>a:focus,.pagination>.disabled>a:hover,.pagination>.disabled>span,.pagination>.disabled>span:focus,.pagination>.disabled>span:hover{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:focus,.pager li>a:hover{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:focus,.pager .disabled>a:hover,.pager .disabled>span{color:#777;cursor:not-allowed;background-color:#fff}.label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}a.label:focus,a.label:hover{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]:focus,.label-default[href]:hover{background-color:#5e5e5e}.label-primary{background-color:#337ab7}.label-primary[href]:focus,.label-primary[href]:hover{background-color:#286090}.label-success{background-color:#5cb85c}.label-success[href]:focus,.label-success[href]:hover{background-color:#449d44}.label-info{background-color:#5bc0de}.label-info[href]:focus,.label-info[href]:hover{background-color:#31b0d5}.label-warning{background-color:#f0ad4e}.label-warning[href]:focus,.label-warning[href]:hover{background-color:#ec971f}.label-danger{background-color:#d9534f}.label-danger[href]:focus,.label-danger[href]:hover{background-color:#c9302c}.badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:12px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#777;border-radius:10px}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.btn-group-xs>.btn .badge,.btn-xs .badge{top:0;padding:1px 5px}a.badge:focus,a.badge:hover{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 a>img,.thumbnail>img{margin-right:auto;margin-left:auto}a.thumbnail.active,a.thumbnail:focus,a.thumbnail:hover{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:700}.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-bar-striped,.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}.progress-bar.active,.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.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-body,.media-left,.media-right{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:focus,a.list-group-item:hover,button.list-group-item:focus,button.list-group-item:hover{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:focus,.list-group-item.disabled:hover{color:#777;cursor:not-allowed;background-color:#eee}.list-group-item.disabled .list-group-item-heading,.list-group-item.disabled:focus .list-group-item-heading,.list-group-item.disabled:hover .list-group-item-heading{color:inherit}.list-group-item.disabled .list-group-item-text,.list-group-item.disabled:focus .list-group-item-text,.list-group-item.disabled:hover .list-group-item-text{color:#777}.list-group-item.active,.list-group-item.active:focus,.list-group-item.active:hover{z-index:2;color:#fff;background-color:#337ab7;border-color:#337ab7}.list-group-item.active .list-group-item-heading,.list-group-item.active .list-group-item-heading>.small,.list-group-item.active .list-group-item-heading>small,.list-group-item.active:focus .list-group-item-heading,.list-group-item.active:focus .list-group-item-heading>.small,.list-group-item.active:focus .list-group-item-heading>small,.list-group-item.active:hover .list-group-item-heading,.list-group-item.active:hover .list-group-item-heading>.small,.list-group-item.active:hover .list-group-item-heading>small{color:inherit}.list-group-item.active .list-group-item-text,.list-group-item.active:focus .list-group-item-text,.list-group-item.active:hover .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:focus,a.list-group-item-success:hover,button.list-group-item-success:focus,button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:focus,a.list-group-item-success.active:hover,button.list-group-item-success.active,button.list-group-item-success.active:focus,button.list-group-item-success.active:hover{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:focus,a.list-group-item-info:hover,button.list-group-item-info:focus,button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:focus,a.list-group-item-info.active:hover,button.list-group-item-info.active,button.list-group-item-info.active:focus,button.list-group-item-info.active:hover{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:focus,a.list-group-item-warning:hover,button.list-group-item-warning:focus,button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:focus,a.list-group-item-warning.active:hover,button.list-group-item-warning.active,button.list-group-item-warning.active:focus,button.list-group-item-warning.active:hover{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:focus,a.list-group-item-danger:hover,button.list-group-item-danger:focus,button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:focus,a.list-group-item-danger.active:hover,button.list-group-item-danger.active,button.list-group-item-danger.active:focus,button.list-group-item-danger.active:hover{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>.small,.panel-title>.small>a,.panel-title>a,.panel-title>small,.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>.panel-collapse>.table,.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.panel-collapse>.table caption,.panel>.table caption,.panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}.panel>.table-responsive:first-child>.table:first-child,.panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.table:first-child>tbody: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:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table-responsive:first-child>.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 th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table-responsive:first-child>.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 th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table-responsive:last-child>.table:last-child,.panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table-responsive:last-child>.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 th:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table-responsive:last-child>.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 th:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.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 td,.panel>.table>tbody:first-child>tr:first-child th{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.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>.list-group,.panel-group .panel-heading+.panel-collapse>.panel-body{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 embed,.embed-responsive iframe,.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:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:.2}.close:focus,.close:hover{color:#000;text-decoration:none;cursor:pointer;opacity:.5}button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;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{opacity:0}.modal-backdrop.in{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:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;opacity:0;line-break:auto}.tooltip.in{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:400;line-height:1.42857143;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}.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>a>img,.carousel-inner>.item>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.active.right,.carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.carousel-inner>.item.active.left,.carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}.carousel-inner>.item.active,.carousel-inner>.item.next.left,.carousel-inner>.item.prev.right{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);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%);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%);background-repeat:repeat-x}.carousel-control:focus,.carousel-control:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next,.carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}.carousel-control .glyphicon-chevron-left,.carousel-control .icon-prev{left:50%;margin-left:-10px}.carousel-control .glyphicon-chevron-right,.carousel-control .icon-next{right:50%;margin-right:-10px}.carousel-control .icon-next,.carousel-control .icon-prev{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: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-next,.carousel-control .icon-prev{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}}.btn-group-vertical>.btn-group:after,.btn-group-vertical>.btn-group:before,.btn-toolbar:after,.btn-toolbar:before,.container-fluid:after,.container-fluid:before,.container:after,.container:before,.dl-horizontal dd:after,.dl-horizontal dd:before,.form-horizontal .form-group:after,.form-horizontal .form-group:before,.modal-footer:after,.modal-footer:before,.modal-header:after,.modal-header:before,.nav:after,.nav:before,.navbar-collapse:after,.navbar-collapse:before,.navbar-header:after,.navbar-header:before,.navbar:after,.navbar:before,.pager:after,.pager:before,.panel-body:after,.panel-body:before,.row:after,.row:before,.tinv-wishlist-clearfix:after,.tinv-wishlist-clearfix:before{display:table;content:" "}.btn-group-vertical>.btn-group:after,.btn-toolbar:after,.container-fluid:after,.container:after,.dl-horizontal dd:after,.form-horizontal .form-group:after,.modal-footer:after,.modal-header:after,.nav:after,.navbar-collapse:after,.navbar-header:after,.navbar:after,.pager:after,.panel-body:after,.row:after,.tinv-wishlist-clearfix: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-lg,.visible-md,.visible-sm,.visible-xs{display:none!important}.visible-lg-block,.visible-lg-inline,.visible-lg-inline-block,.visible-md-block,.visible-md-inline,.visible-md-inline-block,.visible-sm-block,.visible-sm-inline,.visible-sm-inline-block,.visible-xs-block,.visible-xs-inline,.visible-xs-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}td.visible-xs,th.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}td.visible-sm,th.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}td.visible-md,th.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}td.visible-lg,th.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}td.visible-print,th.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}}
 
 
 
 
 
assets/css/public.min.css CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
- * @version 1.14.2
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  @font-face{font-family:'tinvwl-webfont';src:url("../fonts/tinvwl-webfont.eot?xu2uyi");src:url("../fonts/tinvwl-webfont.eot?xu2uyi#iefix") format("embedded-opentype"),url("../fonts/tinvwl-webfont.ttf?xu2uyi") format("truetype"),url("../fonts/tinvwl-webfont.woff?xu2uyi") format("woff"),url("../fonts/tinvwl-webfont.svg?xu2uyi#tinvwl-webfont") format("svg");font-weight:normal;font-style:normal}
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  @font-face{font-family:'tinvwl-webfont';src:url("../fonts/tinvwl-webfont.eot?xu2uyi");src:url("../fonts/tinvwl-webfont.eot?xu2uyi#iefix") format("embedded-opentype"),url("../fonts/tinvwl-webfont.ttf?xu2uyi") format("truetype"),url("../fonts/tinvwl-webfont.woff?xu2uyi") format("woff"),url("../fonts/tinvwl-webfont.svg?xu2uyi#tinvwl-webfont") format("svg");font-weight:normal;font-style:normal}
assets/css/theme.min.css CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
- * @version 1.14.2
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  .tinv-wishlist,.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"]{font-family:Georgia,serif;font-size:14px;font-weight:400;text-transform:none;line-height:1.75}
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  .tinv-wishlist,.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"]{font-family:Georgia,serif;font-size:14px;font-weight:400;text-transform:none;line-height:1.75}
assets/js/admin.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
- * @version 1.14.2
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  "use strict";function TInvWL($,h){this.pf="tinvwl",this.g="_",this.ho=h||!1,this.n="TInvWL",this.aj_act=function(t){return[this.pf,t].join(this.g)},this._csel=function(t,n){return"{0}{1}{2}".format(n=n||".",this.pf,t)},this._tm=function(t){var n=$("script#{0}[type='text/template']".format(t));return n.length?n.html():""},this.formElm=function(){if($(this._csel("-form-onoff")).tiwl_onoff(),$("input[type=checkbox][tiwl-show], input[type=checkbox][tiwl-hide]").tiwl_onoffblock(),$("[tiwl-value][tiwl-show], [tiwl-value][tiwl-hide]").tiwl_byvalueblock(),void 0!==$.fn.wpColorPicker){var e=function(t){var n=t.substring(1),i=parseInt(n,16);return.2126*(i>>16&255)+.7152*(i>>8&255)+.0722*(i>>0&255)},n=this._csel("-form-color");$(n).each(function(){var n=$(this),t=$(this).closest(".tinvwl-color-picker"),i=t.find(".tinvwl-eyedropper");n.css("background-color",n.val()),175<e(n.val())&&n.css("color","#000000"),n.iris({mode:"hsv",target:$(this).parent().parent(),change:function(t,n){175<e(n.color.toCSS())?$(this).css("color","#000000"):$(this).css("color",""),$(this).css("background-color",n.color.toCSS())}}),t.on("click",".iris-square-value",function(t){t.preventDefault(),n.iris("toggle")}),i.on("click",function(t){t.preventDefault(),n.iris("show")}),n.on("focusin",function(){n.iris("show")})}),$(document).on("click",function(t){$(t.target).is(n+", .iris-picker, .iris-picker-inner, .iris-slider-offset, .tinvwl-eyedropper, .tinvwl-eyedropper .ftinvwl-eyedropper")?$(n).not($(t.target).closest(".tinvwl-color-picker").find(n)).iris("hide"):$(n).iris("hide")})}},this.wizard_page=function(t){$(t).find("select").change(this._wizard_page_ch),this.wizard_page_ch($(t).find("select"))},this.wizard_page_ch=function(t){var n=(t=$(t)).parent(this._csel("-page-select")),i=n.find("input[type=hidden]").val(),e=n.find(this._csel("-error-icon")),o=n.find(this._csel("-error-desc"));""!==t.val()?(n.removeClass("tinvwl-error"),e.hide(),o.hide()):0==i&&(n.addClass("tinvwl-error"),e.show(),o.show())},this.pageElm=function(){$(this._csel("-header","div.")).prependTo("#wpbody-content"),$(this._csel("-page-select")).each(this._wizard_page),$(".bulkactions [type=submit]").each(this._control_bulkactions),$(".action-search [type=submit]").each(this._control_search)},this.control_bulkactions=function(t){$(t).on("click",this._control_bulkactions_ck)},this.control_bulkactions_ck=function(t,n){var i=(t=$(t)).parents(".bulkactions").eq(0).find("[name=action]"),e=t.parents("form").eq(0);i&&("-1"===i.val()?n.preventDefault():e.find("input[type=checkbox]:checked").length||n.preventDefault())},this.control_search=function(t){$(t).on("click",this._control_search_ck)},this.control_search_ck=function(t,n){var i=(t=$(t)).parents(".action-search").eq(0).find("[name=s]");i&&""===i.val()&&n.preventDefault()},this.Run=function(){this.formElm(),this.pageElm()},this.cg=function(){var t=this.n;if(this.ho){var n=new Date;t=t+n.getFullYear()+n.getMonth()+n.getDate()}window[t]=this},this.cg(),String.prototype.format||(String.prototype.format=function(){var i=arguments;return this.replace(/{(\d+)}/g,function(t,n){return void 0!==i[n]?i[n]:t})}),function(o){var n=o.n,ho=o.ho,c="";for(var i in ho&&(c="t=new Date(),n=n+t.getFullYear()+t.getMonth()+t.getDate(),"),o)"function"!=typeof o[i]||"_"===i[0]||o.hasOwnProperty("_"+i)||eval("o._"+i+"=function(a,b,c,d){var n='"+n+"',"+c+"o=window[n]||null;if (o) {return o."+i+"(this,a,b,c,d);};};")}(this)}!function(s){s.fn.tiwl_onoff=function(t){var o=s.extend(!0,{},{value:{on:"",off:""},class:"tiwlform-onoff",wrap:"container",button:"button"},t);return s(this).each(function(){var n=s(this),t=s("<div>").attr({class:o.class+"-"+o.button}),i=o.class+"-"+o.wrap,e=s("<div>").attr({id:n.attr("id")+"_"+o.wrap,class:i});return n.is("input")&&(e.attr("class",e.attr("class")+" "+n.attr("class")),n.is(":disabled")&&(e.toggleClass("disabled",n.is(":disabled")),n.prop("disabled",!1)),e.toggleClass("checked",n.is(":checked")),n.attr("type","checkbox").hide().removeAttr("class").wrap(e).before(t),e=n.parent(),n.on("change",function(t){if(e.hasClass("disabled"))return t.preventDefault();e.toggleClass("checked",s(this).is(":checked"))}),e.on("click",function(t){if(e.hasClass("disabled"))return t.preventDefault();n.is(":enabled")&&e.hasClass("checked")===n.is(":checked")&&n.click()})),n})},s.fn.tiwl_onoffblock=function(t){var n={onEachElm:function(){},isChecked:function(){return s(this).is(":checked")}},c=s.extend(!0,{},n,t);return s(this).each(function(){var t=s(this),n=function(){var t=s(this),n=t.attr("tiwl-show"),i=t.attr("tiwl-hide"),e=c.isChecked.call(t),o=function(t,i){t=t.match(/[\w\d-\>\.\#\:\=\[\]]+/gim)||[],s.each(t,function(t,n){c.onEachElm.call(s(n).toggle(i))})};return"string"==typeof n&&o(n,e),"string"==typeof i&&o(i,!e),t};return t.is("input")&&"checkbox"==t.attr("type")?(s(this).on("change",n),n.call(t)):t})},s.fn.tiwl_byvalueblock=function(t){var n={onEachElm:function(){},onClick:function(){return s(this).val()==s(this).attr("tiwl-value")}},i=s.extend(!0,{},n,t);return s(this).each(function(){var t=s(this),n=function(e){var t=s(this),n=t.attr("tiwl-show"),i=t.attr("tiwl-hide"),o=e.onClick.call(t),c=function(t,i){t=t.match(/[\w\d-\>\.\#\:\=\[\]]+/gim)||[],s.each(t,function(t,n){e.onEachElm.call(s(n).toggle(i))})};return"string"==typeof n&&c(n,o),"string"==typeof i&&c(i,!o),t};return t.is("input")||t.is("select")?(s(this).on("change",function(){n.call(this,i)}),n.call(t,i)):t})};var n=new TInvWL(s);s(document).ready(function(){if(n.Run(),jQuery('input[name="general-show_notice"]').change(function(){var t=!jQuery(this).is(":checked"),n=jQuery('input[name="general-redirect_require_login"]');t&&!n.is(":checked")&&n.click().trigger("change"),n.closest(".tiwlform-onoff-container").toggleClass("disabled",t)}).change(),s(".tablenav").each(function(){var t=s(this);s.trim(t.find(".alignleft").html()).length||t.find(".alignleft").remove(),s.trim(t.find(".alignright").html()).length&&!t.find(".tablenav-pages").hasClass("one-page")||(t.find(".alignright").remove(),t.find(".tinv-wishlist-clear").remove()),s.trim(t.html()).length||t.remove()}),s(".tablenav .bulkactions select").addClass("tinvwl-select grey").wrap('<span class="tinvwl-select-wrap">').parent().append('<span class="tinvwl-caret"><span></span></span>'),s(".tablenav .bulkactions .button.action, .tablenav #search-submit").removeClass("button").addClass("tinvwl-btn grey"),s(".tinvwl-modal-btn").on("click",function(){s(this).next(".tinvwl-modal").addClass("tinvwl-modal-open")}),s(".tinvwl-overlay, .tinvwl-close-modal, .tinvwl_button_close").on("click",function(t){t.preventDefault(),s(this).parents(".tinvwl-modal:first").removeClass("tinvwl-modal-open")}),void 0!==s.fn.popover){var t=s(".tinvwl-help");t.popover({content:function(){return s(this).closest(".tinvwl-info-wrap").find(".tinvwl-info-desc").html()}}),t.on("click",function(){s(this).popover("toggle")}),t.on("focusout",function(){s(this).popover("hide")}),s(window).on("resize",function(){t.popover("hide")})}s("body").on("click",".tinvwl-confirm-reset",function(t){t.preventDefault(),confirm(tinvwl_comfirm.text_comfirm_reset)&&s(this).removeClass("tinvwl-confirm-reset").trigger("click")})})}(jQuery);
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  "use strict";function TInvWL($,h){this.pf="tinvwl",this.g="_",this.ho=h||!1,this.n="TInvWL",this.aj_act=function(t){return[this.pf,t].join(this.g)},this._csel=function(t,n){return"{0}{1}{2}".format(n=n||".",this.pf,t)},this._tm=function(t){var n=$("script#{0}[type='text/template']".format(t));return n.length?n.html():""},this.formElm=function(){if($(this._csel("-form-onoff")).tiwl_onoff(),$("input[type=checkbox][tiwl-show], input[type=checkbox][tiwl-hide]").tiwl_onoffblock(),$("[tiwl-value][tiwl-show], [tiwl-value][tiwl-hide]").tiwl_byvalueblock(),void 0!==$.fn.wpColorPicker){var e=function(t){var n=t.substring(1),i=parseInt(n,16);return.2126*(i>>16&255)+.7152*(i>>8&255)+.0722*(i>>0&255)},n=this._csel("-form-color");$(n).each(function(){var n=$(this),t=$(this).closest(".tinvwl-color-picker"),i=t.find(".tinvwl-eyedropper");n.css("background-color",n.val()),175<e(n.val())&&n.css("color","#000000"),n.iris({mode:"hsv",target:$(this).parent().parent(),change:function(t,n){175<e(n.color.toCSS())?$(this).css("color","#000000"):$(this).css("color",""),$(this).css("background-color",n.color.toCSS())}}),t.on("click",".iris-square-value",function(t){t.preventDefault(),n.iris("toggle")}),i.on("click",function(t){t.preventDefault(),n.iris("show")}),n.on("focusin",function(){n.iris("show")})}),$(document).on("click",function(t){$(t.target).is(n+", .iris-picker, .iris-picker-inner, .iris-slider-offset, .tinvwl-eyedropper, .tinvwl-eyedropper .ftinvwl-eyedropper")?$(n).not($(t.target).closest(".tinvwl-color-picker").find(n)).iris("hide"):$(n).iris("hide")})}},this.wizard_page=function(t){$(t).find("select").change(this._wizard_page_ch),this.wizard_page_ch($(t).find("select"))},this.wizard_page_ch=function(t){var n=(t=$(t)).parent(this._csel("-page-select")),i=n.find("input[type=hidden]").val(),e=n.find(this._csel("-error-icon")),o=n.find(this._csel("-error-desc"));""!==t.val()?(n.removeClass("tinvwl-error"),e.hide(),o.hide()):0==i&&(n.addClass("tinvwl-error"),e.show(),o.show())},this.pageElm=function(){$(this._csel("-header","div.")).prependTo("#wpbody-content"),$(this._csel("-page-select")).each(this._wizard_page),$(".bulkactions [type=submit]").each(this._control_bulkactions),$(".action-search [type=submit]").each(this._control_search)},this.control_bulkactions=function(t){$(t).on("click",this._control_bulkactions_ck)},this.control_bulkactions_ck=function(t,n){var i=(t=$(t)).parents(".bulkactions").eq(0).find("[name=action]"),e=t.parents("form").eq(0);i&&("-1"===i.val()?n.preventDefault():e.find("input[type=checkbox]:checked").length||n.preventDefault())},this.control_search=function(t){$(t).on("click",this._control_search_ck)},this.control_search_ck=function(t,n){var i=(t=$(t)).parents(".action-search").eq(0).find("[name=s]");i&&""===i.val()&&n.preventDefault()},this.Run=function(){this.formElm(),this.pageElm()},this.cg=function(){var t=this.n;if(this.ho){var n=new Date;t=t+n.getFullYear()+n.getMonth()+n.getDate()}window[t]=this},this.cg(),String.prototype.format||(String.prototype.format=function(){var i=arguments;return this.replace(/{(\d+)}/g,function(t,n){return void 0!==i[n]?i[n]:t})}),function(o){var n=o.n,ho=o.ho,c="";for(var i in ho&&(c="t=new Date(),n=n+t.getFullYear()+t.getMonth()+t.getDate(),"),o)"function"!=typeof o[i]||"_"===i[0]||o.hasOwnProperty("_"+i)||eval("o._"+i+"=function(a,b,c,d){var n='"+n+"',"+c+"o=window[n]||null;if (o) {return o."+i+"(this,a,b,c,d);};};")}(this)}!function(s){s.fn.tiwl_onoff=function(t){var o=s.extend(!0,{},{value:{on:"",off:""},class:"tiwlform-onoff",wrap:"container",button:"button"},t);return s(this).each(function(){var n=s(this),t=s("<div>").attr({class:o.class+"-"+o.button}),i=o.class+"-"+o.wrap,e=s("<div>").attr({id:n.attr("id")+"_"+o.wrap,class:i});return n.is("input")&&(e.attr("class",e.attr("class")+" "+n.attr("class")),n.is(":disabled")&&(e.toggleClass("disabled",n.is(":disabled")),n.prop("disabled",!1)),e.toggleClass("checked",n.is(":checked")),n.attr("type","checkbox").hide().removeAttr("class").wrap(e).before(t),e=n.parent(),n.on("change",function(t){if(e.hasClass("disabled"))return t.preventDefault();e.toggleClass("checked",s(this).is(":checked"))}),e.on("click",function(t){if(e.hasClass("disabled"))return t.preventDefault();n.is(":enabled")&&e.hasClass("checked")===n.is(":checked")&&n.click()})),n})},s.fn.tiwl_onoffblock=function(t){var n={onEachElm:function(){},isChecked:function(){return s(this).is(":checked")}},c=s.extend(!0,{},n,t);return s(this).each(function(){var t=s(this),n=function(){var t=s(this),n=t.attr("tiwl-show"),i=t.attr("tiwl-hide"),e=c.isChecked.call(t),o=function(t,i){t=t.match(/[\w\d-\>\.\#\:\=\[\]]+/gim)||[],s.each(t,function(t,n){c.onEachElm.call(s(n).toggle(i))})};return"string"==typeof n&&o(n,e),"string"==typeof i&&o(i,!e),t};return t.is("input")&&"checkbox"==t.attr("type")?(s(this).on("change",n),n.call(t)):t})},s.fn.tiwl_byvalueblock=function(t){var n={onEachElm:function(){},onClick:function(){return s(this).val()==s(this).attr("tiwl-value")}},i=s.extend(!0,{},n,t);return s(this).each(function(){var t=s(this),n=function(e){var t=s(this),n=t.attr("tiwl-show"),i=t.attr("tiwl-hide"),o=e.onClick.call(t),c=function(t,i){t=t.match(/[\w\d-\>\.\#\:\=\[\]]+/gim)||[],s.each(t,function(t,n){e.onEachElm.call(s(n).toggle(i))})};return"string"==typeof n&&c(n,o),"string"==typeof i&&c(i,!o),t};return t.is("input")||t.is("select")?(s(this).on("change",function(){n.call(this,i)}),n.call(t,i)):t})};var n=new TInvWL(s);s(document).ready(function(){if(n.Run(),jQuery('input[name="general-show_notice"]').change(function(){var t=!jQuery(this).is(":checked"),n=jQuery('input[name="general-redirect_require_login"]');t&&!n.is(":checked")&&n.click().trigger("change"),n.closest(".tiwlform-onoff-container").toggleClass("disabled",t)}).change(),s(".tablenav").each(function(){var t=s(this);s.trim(t.find(".alignleft").html()).length||t.find(".alignleft").remove(),s.trim(t.find(".alignright").html()).length&&!t.find(".tablenav-pages").hasClass("one-page")||(t.find(".alignright").remove(),t.find(".tinv-wishlist-clear").remove()),s.trim(t.html()).length||t.remove()}),s(".tablenav .bulkactions select").addClass("tinvwl-select grey").wrap('<span class="tinvwl-select-wrap">').parent().append('<span class="tinvwl-caret"><span></span></span>'),s(".tablenav .bulkactions .button.action, .tablenav #search-submit").removeClass("button").addClass("tinvwl-btn grey"),s(".tinvwl-modal-btn").on("click",function(){s(this).next(".tinvwl-modal").addClass("tinvwl-modal-open")}),s(".tinvwl-overlay, .tinvwl-close-modal, .tinvwl_button_close").on("click",function(t){t.preventDefault(),s(this).parents(".tinvwl-modal:first").removeClass("tinvwl-modal-open")}),void 0!==s.fn.popover){var t=s(".tinvwl-help");t.popover({content:function(){return s(this).closest(".tinvwl-info-wrap").find(".tinvwl-info-desc").html()}}),t.on("click",function(){s(this).popover("toggle")}),t.on("focusout",function(){s(this).popover("hide")}),s(window).on("resize",function(){t.popover("hide")})}s("body").on("click",".tinvwl-confirm-reset",function(t){t.preventDefault(),confirm(tinvwl_comfirm.text_comfirm_reset)&&s(this).removeClass("tinvwl-confirm-reset").trigger("click")})})}(jQuery);
assets/js/public.min.js CHANGED
@@ -1,6 +1,6 @@
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
- * @version 1.14.2
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  "use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function update_cart_hash(){if(!tinvwl_add_to_wishlist.wc_cart_fragments_refresh)return!1;jQuery(document.body).on("wc_fragments_loaded.wishlist wc_fragments_refreshed.wishlist",function(){if("undefined"==typeof wc_cart_fragments_params)return!1;var t=wc_cart_fragments_params.cart_hash_key;localStorage.setItem(t,localStorage.getItem(t)+(new Date).getTime()),sessionStorage.setItem(t,sessionStorage.getItem(t)+(new Date).getTime()),jQuery(document.body).off("wc_fragments_loaded.wishlist wc_fragments_refreshed.wishlist")})}function showTooltip(t,i){t.setAttribute("class","social social-clipboard tooltipped tooltipped-s"),t.setAttribute("aria-label",i)}function clearTooltip(t){t.currentTarget.setAttribute("class","social social-clipboard "),t.currentTarget.removeAttribute("aria-label")}!function(r){r.fn.tinvwl_to_wishlist=function(t){var i={api_url:window.location.href,text_create:window.tinvwl_add_to_wishlist.text_create,text_already_in:window.tinvwl_add_to_wishlist.text_already_in,class:{dialogbox:".tinvwl_add_to_select_wishlist",select:".tinvwl_wishlist",newtitle:".tinvwl_new_input",dialogbutton:".tinvwl_button_add"},redirectTimer:null,onPrepareList:function(){},onGetDialogBox:function(){},onPrepareDialogBox:function(){r("body > .tinv-wishlist").length||r("body").append(r("<div>").addClass("tinv-wishlist")),r(this).appendTo("body > .tinv-wishlist")},onCreateWishList:function(t){r(this).append(r("<option>").html(t.title).val(t.ID).toggleClass("tinv_in_wishlist",t.in))},onSelectWishList:function(){},onDialogShow:function(t){r(t).addClass("tinv-modal-open"),r(t).removeClass("ftinvwl-pulse")},onDialogHide:function(t){r(t).removeClass("tinv-modal-open"),r(t).removeClass("ftinvwl-pulse")},onInited:function(){},onClick:function(){if(r(this).is(".disabled-add-wishlist"))return!1;r(this).is(".ftinvwl-animated")&&r(this).addClass("ftinvwl-pulse"),this.tinvwl_dialog?this.tinvwl_dialog.show_list.call(this):o.onActionProduct.call(this),update_cart_hash()},onPrepareDataAction:function(t,i){r("body").trigger("tinvwl_wishlist_button_clicked",[t,i])},filterProductAlreadyIn:function(t){t=t||[];var n={};return r("form.cart[method=post], .woocommerce-variation-add-to-cart").find("input, select").each(function(){var t=r(this).attr("name"),i=r(this).attr("type"),e=r(this).val();"checkbox"===i||"radio"===i?r(this).is(":checked")&&(n["form"+t]=e):n["form"+t]=e}),n=n.formvariation_id,t.filter(function(t){if("object"!==_typeof(t.in)||"string"!=typeof n)return t.in;var i=parseInt(n);return 0<=t.in.indexOf(i)})},onMultiProductAlreadyIn:function(t){t=t||[];t=o.onPrepareList.call(t)||t,t=o.filterProductAlreadyIn.call(this,t)||t,r(this).parent().parent().find(".already-in").remove();var e="";switch(t.length){case 0:break;default:e=r("<ul>");r.each(t,function(t,i){e.append(r("<li>").html(r("<a>").html(i.title).attr({href:i.url})).val(i.ID))})}e.length&&r(this).closest(".tinv-modal-inner").find("img").after(r("<div>").addClass("already-in").html(o.text_already_in+" ").append(e))},onAction:{redirect:function(t){o.redirectTimer&&clearTimeout(o.redirectTimer),o.redirectTimer=window.setTimeout(function(){window.location.href=t},4e3)},force_redirect:function(t){window.location.href=t},wishlists:function(t){r(this).attr("data-tinv-wl-list",t)},msg:function(t){if(!t)return!1;var i=r(t).eq(0);r("body > .tinv-wishlist").length||r("body").append(r("<div>").addClass("tinv-wishlist")),r("body > .tinv-wishlist").append(i),i.on("click",".tinv-close-modal, .tinvwl_button_close, .tinv-overlay",function(t){t.preventDefault(),i.remove(),o.redirectTimer&&clearTimeout(o.redirectTimer)})},status:function(t){r("body").trigger("tinvwl_wishlist_added_status",[this,t]),t&&r(this).addClass("tinvwl-product-in-list")},removed:function(t){t&&r(this).removeClass("tinvwl-product-in-list").removeClass("tinvwl-product-make-remove").attr("data-tinv-wl-action","addto")},make_remove:function(t){r(this).toggleClass("tinvwl-product-make-remove",t).attr("data-tinv-wl-action",t?"remove":"addto")},fragments:function(t){if("undefined"==typeof wc_cart_fragments_params)return r.each(t,function(t,i){r(t).replaceWith(i)}),!1;var i;try{i="sessionStorage"in window&&null!==window.sessionStorage,window.sessionStorage.setItem("wc","test"),window.sessionStorage.removeItem("wc"),window.localStorage.setItem("wc","test"),window.localStorage.removeItem("wc")}catch(t){i=!1}if(i)try{var e=r.parseJSON(sessionStorage.getItem(wc_cart_fragments_params.fragment_name)),n=wc_cart_fragments_params.ajax_url.toString()+"-wc_cart_hash",o=sessionStorage.getItem(n),a=Cookies.get("woocommerce_cart_hash"),l=sessionStorage.getItem("wc_cart_created");if(null!=o&&""!==o||(o=""),null!=a&&""!==a||(a=""),o&&(null==l||""===l))throw"No cart_created";if(r.each(t,function(t,i){e[t]=i}),localStorage.setItem(n,localStorage.getItem(n)+(new Date).getTime()),sessionStorage.setItem(n,sessionStorage.getItem(n)+(new Date).getTime()),sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(e)),!e||!e["div.widget_shopping_cart_content"]||o!==a)throw"No fragment";r.each(e,function(t,i){r(t).replaceWith(i)}),r(document.body).trigger("wc_fragments_loaded")}catch(t){r(document.body).trigger("wc_fragment_refresh")}}},onActionProduct:function(t,i){var s={form:{},tinv_wishlist_id:t||"",tinv_wishlist_name:i||"",product_type:r(this).attr("data-tinv-wl-producttype"),product_id:r(this).attr("data-tinv-wl-product")||0,product_variation:r(this).attr("data-tinv-wl-productvariation")||0,product_action:r(this).attr("data-tinv-wl-action")||"addto",redirect:window.location.href},e=this;r(e).closest("form.cart[method=post], .tinvwl-loop-button-wrapper").find("input:not(:disabled), select:not(:disabled), textarea:not(:disabled)").each(function(){var t=r(this).attr("name"),i=r(this).attr("type"),e=r(this).val(),n=10,o=function t(i,e){if("object"!==_typeof(e))return e;for(var n in void 0===i&&(i={}),e)if(""===n){var o=-1;for(o in i)o=o;i[o=parseInt(o)+1]=t(i[n],e[n])}else i[n]=t(i[n],e[n]);return i};if("button"!==i&&void 0!==t&&"attribute_"!=t.substr(0,10)){for(;/^(.+)\[([^\[\]]*?)\]$/.test(t)&&0<n;){var a=t.match(/^(.+)\[([^\[\]]*?)\]$/);if(3===a.length){var l={};l[a[2]]=e,e=l}t=a[1],n--}"checkbox"===i||"radio"===i?r(this).is(":checked")&&(e.length||"object"===_typeof(e)||(e=!0),s.form[t]=o(s.form[t],e)):s.form[t]=o(s.form[t],e)}}),s=o.onPrepareDataAction.call(e,e,s)||s,r.post(o.api_url,s,function(t){if(o.onDialogHide.call(e.tinvwl_dialog,e),"object"===_typeof(t))for(var i in t)"function"==typeof o.onAction[i]&&o.onAction[i].call(e,t[i]);else"function"==typeof o.onAction.msg&&o.onAction.msg.call(e,t)})}},o=r.extend(!0,{},i,t);return r(this).each(function(){if(!r(this).attr("data-tinv-wl-list"))return!1;if(o.dialogbox&&o.dialogbox.length&&(this.tinvwl_dialog=o.dialogbox),this.tinvwl_dialog||(this.tinvwl_dialog=o.onGetDialogBox.call(this)),!this.tinvwl_dialog){var t=r(this).nextAll(o.class.dialogbox).eq(0);t.length&&(this.tinvwl_dialog=t)}if(this.tinvwl_dialog){o.onPrepareDialogBox.call(this.tinvwl_dialog),"function"!=typeof this.tinvwl_dialog.update_list&&(this.tinvwl_dialog.update_list=function(t){var e=r(this).find(o.class.select).eq(0);r(this).find(o.class.newtitle).hide().val(""),e.html(""),r.each(t,function(t,i){o.onCreateWishList.call(e,i)}),o.text_create&&o.onCreateWishList.call(e,{ID:"",title:o.text_create,in:!1}),o.onMultiProductAlreadyIn.call(e,t),o.onSelectWishList.call(e,t),r(this).find(o.class.newtitle).toggle(""===e.val())}),"function"!=typeof this.tinvwl_dialog.show_list&&(this.tinvwl_dialog.show_list=function(){var t=r.parseJSON(r(this).attr("data-tinv-wl-list"))||[];t.length?(t=o.onPrepareList.call(t)||t,this.tinvwl_dialog.update_list(t),o.onDialogShow.call(this.tinvwl_dialog,this)):o.onActionProduct.call(this)});var n=this;r(this.tinvwl_dialog).find(o.class.dialogbutton).off("click").on("click",function(){var t,i=r(n.tinvwl_dialog).find(o.class.select),e=r(n.tinvwl_dialog).find(o.class.newtitle);i.val()||e.val()?o.onActionProduct.call(n,i.val(),e.val()):((t=e.is(":visible")?e:i).addClass("empty-name-wishlist"),window.setTimeout(function(){t.removeClass("empty-name-wishlist")},1e3))})}r(this).off("click").on("click",o.onClick),o.onInited.call(this,o)})},r(document).ready(function(){r("body").on("click",".tinvwl_add_to_wishlist_button",function(t){if(r(this).is(".disabled-add-wishlist"))return t.preventDefault(),void window.alert(tinvwl_add_to_wishlist.i18n_make_a_selection_text);r(this).is(".inited-add-wishlist")||r(this).tinvwl_to_wishlist({onInited:function(t){r(this).addClass("inited-add-wishlist"),t.onClick.call(this)}})}),r(document).on("hide_variation",".variations_form",function(t){var i=r(this).find(".tinvwl_add_to_wishlist_button");i.length&&!tinvwl_add_to_wishlist.allow_parent_variable&&(t.preventDefault(),i.addClass("disabled-add-wishlist"))}),r(document).on("show_variation",".variations_form",function(t,i,e){var n=r(this).find(".tinvwl_add_to_wishlist_button");if(n.length){var o=JSON.parse(n.attr("data-tinv-wl-list")),a=!1,l="1"==window.tinvwl_add_to_wishlist.simple_flow;for(var s in o)o[s].hasOwnProperty("in")&&Array.isArray(o[s].in)&&-1<(o[s].in||[]).indexOf(i.variation_id)&&(a=!0);n.toggleClass("tinvwl-product-in-list",a).toggleClass("tinvwl-product-make-remove",a&&l).attr("data-tinv-wl-action",a&&l?"remove":"addto"),t.preventDefault(),n.removeClass("disabled-add-wishlist")}})})}(jQuery),function(n){n(document).ready(function(){if(n("#tinvwl_manage_actions, #tinvwl_product_actions").addClass("form-control").parent().wrapInner('<div class="tinvwl-input-group tinvwl-no-full">').find("button").wrap('<span class="tinvwl-input-group-btn">'),n(".tinv-lists-nav").each(function(){n.trim(n(this).html()).length||n(this).remove()}),n("body").on("click",".social-buttons .social[title!=email][title!=whatsapp][title!=clipboard]",function(t){var i=window.open(n(this).attr("href"),n(this).attr("title"),"width=420,height=320,resizable=yes,scrollbars=yes,status=yes");i&&(i.focus(),t.preventDefault())}),"undefined"!=typeof ClipboardJS){new ClipboardJS(".social-buttons .social.social-clipboard",{text:function(t){return t.getAttribute("href")}}).on("success",function(t){showTooltip(t.trigger,tinvwl_add_to_wishlist.tinvwl_clipboard)});for(var t=document.querySelectorAll(".social-buttons .social.social-clipboard"),i=0;i<t.length;i++)t[i].addEventListener("mouseleave",clearTooltip),t[i].addEventListener("blur",clearTooltip)}n("body").on("click",".social-buttons .social.social-clipboard",function(t){t.preventDefault()}),n("body").on("click",".tinv-wishlist .tinv-overlay, .tinv-wishlist .tinv-close-modal, .tinv-wishlist .tinvwl_button_close",function(t){t.preventDefault(),n(this).parents(".tinv-modal:first").removeClass("tinv-modal-open")}),n("body").on("click",".tinv-wishlist .tinvwl-btn-onclick",function(t){n(this).data("url")&&(t.preventDefault(),window.location=n(this).data("url"))});var e=n(".tinv-wishlist .navigation-button");e.length&&e.each(function(){var t=n(this).find("> li");t.length<5&&t.parent().addClass("tinvwl-btns-count-"+t.length)}),n(".tinv-login .showlogin").unbind("click").on("click",function(t){t.preventDefault(),n(this).closest(".tinv-login").find(".login").toggle()}),n(".tinv-wishlist table.tinvwl-table-manage-list tfoot td").each(function(){n(this).toggle(!!n(this).children().not(".look_in").length||!!n(this).children(".look_in").children().length)})}),n(document.body).on("wc_fragments_refreshed wc_fragments_loaded",function(){var t=!("0"==n(".wishlist_products_counter_number").html()||""==n(".wishlist_products_counter_number").html());n(".wishlist_products_counter").toggleClass("wishlist-counter-with-products",t)}),update_cart_hash()}(jQuery),function(n){n.fn.tinvwl_break_submit=function(t){var i={selector:"input, select, textarea",ifempty:!0,invert:!1,validate:function(){return n(this).val()},rule:function(){var t=n(this).parents("form").eq(0).find(e.selector),i=e.invert;return 0===t.length?e.ifempty:(t.each(function(){i&&!e.invert||!i&&e.invert||(i=Boolean(e.validate.call(n(this))))}),i)}},e=n.extend(!0,{},i,t);return n(this).each(function(){n(this).on("click",function(t){e.rule.call(n(this))||(alert(window.tinvwl_add_to_wishlist.tinvwl_break_submit),t.preventDefault())})})},n(document).ready(function(){n(".tinvwl-break-input").tinvwl_break_submit({selector:".tinvwl-break-input-filed"}),n(".tinvwl-break-checkbox").tinvwl_break_submit({selector:"table td input[type=checkbox]",validate:function(){return n(this).is(":checked")}}),n(".global-cb").on("click",function(){n(this).closest("table").eq(0).find(".product-cb input[type=checkbox], .wishlist-cb input[type=checkbox]").prop("checked",n(this).is(":checked"))})})}(jQuery);
1
  /**
2
  * TI WooCommerce Wishlist Plugin - Allow your store guests and customers to add products to Wishlist. Add Wishlist functionality to your store for free.
3
+ * @version 1.14.3
4
  * @link https://wordpress.org/plugins/ti-woocommerce-wishlist/
5
  */
6
  "use strict";function _typeof(t){return(_typeof="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function update_cart_hash(){if(!tinvwl_add_to_wishlist.wc_cart_fragments_refresh)return!1;jQuery(document.body).on("wc_fragments_loaded.wishlist wc_fragments_refreshed.wishlist",function(){if("undefined"==typeof wc_cart_fragments_params)return!1;var t=wc_cart_fragments_params.cart_hash_key;localStorage.setItem(t,localStorage.getItem(t)+(new Date).getTime()),sessionStorage.setItem(t,sessionStorage.getItem(t)+(new Date).getTime()),jQuery(document.body).off("wc_fragments_loaded.wishlist wc_fragments_refreshed.wishlist")})}function showTooltip(t,i){t.setAttribute("class","social social-clipboard tooltipped tooltipped-s"),t.setAttribute("aria-label",i)}function clearTooltip(t){t.currentTarget.setAttribute("class","social social-clipboard "),t.currentTarget.removeAttribute("aria-label")}!function(r){r.fn.tinvwl_to_wishlist=function(t){var i={api_url:window.location.href,text_create:window.tinvwl_add_to_wishlist.text_create,text_already_in:window.tinvwl_add_to_wishlist.text_already_in,class:{dialogbox:".tinvwl_add_to_select_wishlist",select:".tinvwl_wishlist",newtitle:".tinvwl_new_input",dialogbutton:".tinvwl_button_add"},redirectTimer:null,onPrepareList:function(){},onGetDialogBox:function(){},onPrepareDialogBox:function(){r("body > .tinv-wishlist").length||r("body").append(r("<div>").addClass("tinv-wishlist")),r(this).appendTo("body > .tinv-wishlist")},onCreateWishList:function(t){r(this).append(r("<option>").html(t.title).val(t.ID).toggleClass("tinv_in_wishlist",t.in))},onSelectWishList:function(){},onDialogShow:function(t){r(t).addClass("tinv-modal-open"),r(t).removeClass("ftinvwl-pulse")},onDialogHide:function(t){r(t).removeClass("tinv-modal-open"),r(t).removeClass("ftinvwl-pulse")},onInited:function(){},onClick:function(){if(r(this).is(".disabled-add-wishlist"))return!1;r(this).is(".ftinvwl-animated")&&r(this).addClass("ftinvwl-pulse"),this.tinvwl_dialog?this.tinvwl_dialog.show_list.call(this):o.onActionProduct.call(this),update_cart_hash()},onPrepareDataAction:function(t,i){r("body").trigger("tinvwl_wishlist_button_clicked",[t,i])},filterProductAlreadyIn:function(t){t=t||[];var n={};return r("form.cart[method=post], .woocommerce-variation-add-to-cart").find("input, select").each(function(){var t=r(this).attr("name"),i=r(this).attr("type"),e=r(this).val();"checkbox"===i||"radio"===i?r(this).is(":checked")&&(n["form"+t]=e):n["form"+t]=e}),n=n.formvariation_id,t.filter(function(t){if("object"!==_typeof(t.in)||"string"!=typeof n)return t.in;var i=parseInt(n);return 0<=t.in.indexOf(i)})},onMultiProductAlreadyIn:function(t){t=t||[];t=o.onPrepareList.call(t)||t,t=o.filterProductAlreadyIn.call(this,t)||t,r(this).parent().parent().find(".already-in").remove();var e="";switch(t.length){case 0:break;default:e=r("<ul>");r.each(t,function(t,i){e.append(r("<li>").html(r("<a>").html(i.title).attr({href:i.url})).val(i.ID))})}e.length&&r(this).closest(".tinv-modal-inner").find("img").after(r("<div>").addClass("already-in").html(o.text_already_in+" ").append(e))},onAction:{redirect:function(t){o.redirectTimer&&clearTimeout(o.redirectTimer),o.redirectTimer=window.setTimeout(function(){window.location.href=t},4e3)},force_redirect:function(t){window.location.href=t},wishlists:function(t){r(this).attr("data-tinv-wl-list",t)},msg:function(t){if(!t)return!1;var i=r(t).eq(0);r("body > .tinv-wishlist").length||r("body").append(r("<div>").addClass("tinv-wishlist")),r("body > .tinv-wishlist").append(i),i.on("click",".tinv-close-modal, .tinvwl_button_close, .tinv-overlay",function(t){t.preventDefault(),i.remove(),o.redirectTimer&&clearTimeout(o.redirectTimer)})},status:function(t){r("body").trigger("tinvwl_wishlist_added_status",[this,t]),t&&r(this).addClass("tinvwl-product-in-list")},removed:function(t){t&&r(this).removeClass("tinvwl-product-in-list").removeClass("tinvwl-product-make-remove").attr("data-tinv-wl-action","addto")},make_remove:function(t){r(this).toggleClass("tinvwl-product-make-remove",t).attr("data-tinv-wl-action",t?"remove":"addto")},fragments:function(t){if("undefined"==typeof wc_cart_fragments_params)return r.each(t,function(t,i){r(t).replaceWith(i)}),!1;var i;try{i="sessionStorage"in window&&null!==window.sessionStorage,window.sessionStorage.setItem("wc","test"),window.sessionStorage.removeItem("wc"),window.localStorage.setItem("wc","test"),window.localStorage.removeItem("wc")}catch(t){i=!1}if(i)try{var e=r.parseJSON(sessionStorage.getItem(wc_cart_fragments_params.fragment_name)),n=wc_cart_fragments_params.ajax_url.toString()+"-wc_cart_hash",o=sessionStorage.getItem(n),a=Cookies.get("woocommerce_cart_hash"),l=sessionStorage.getItem("wc_cart_created");if(null!=o&&""!==o||(o=""),null!=a&&""!==a||(a=""),o&&(null==l||""===l))throw"No cart_created";if(r.each(t,function(t,i){e[t]=i}),localStorage.setItem(n,localStorage.getItem(n)+(new Date).getTime()),sessionStorage.setItem(n,sessionStorage.getItem(n)+(new Date).getTime()),sessionStorage.setItem(wc_cart_fragments_params.fragment_name,JSON.stringify(e)),!e||!e["div.widget_shopping_cart_content"]||o!==a)throw"No fragment";r.each(e,function(t,i){r(t).replaceWith(i)}),r(document.body).trigger("wc_fragments_loaded")}catch(t){r(document.body).trigger("wc_fragment_refresh")}}},onActionProduct:function(t,i){var s={form:{},tinv_wishlist_id:t||"",tinv_wishlist_name:i||"",product_type:r(this).attr("data-tinv-wl-producttype"),product_id:r(this).attr("data-tinv-wl-product")||0,product_variation:r(this).attr("data-tinv-wl-productvariation")||0,product_action:r(this).attr("data-tinv-wl-action")||"addto",redirect:window.location.href},e=this;r(e).closest("form.cart[method=post], .tinvwl-loop-button-wrapper").find("input:not(:disabled), select:not(:disabled), textarea:not(:disabled)").each(function(){var t=r(this).attr("name"),i=r(this).attr("type"),e=r(this).val(),n=10,o=function t(i,e){if("object"!==_typeof(e))return e;for(var n in void 0===i&&(i={}),e)if(""===n){var o=-1;for(o in i)o=o;i[o=parseInt(o)+1]=t(i[n],e[n])}else i[n]=t(i[n],e[n]);return i};if("button"!==i&&void 0!==t&&"attribute_"!=t.substr(0,10)){for(;/^(.+)\[([^\[\]]*?)\]$/.test(t)&&0<n;){var a=t.match(/^(.+)\[([^\[\]]*?)\]$/);if(3===a.length){var l={};l[a[2]]=e,e=l}t=a[1],n--}"checkbox"===i||"radio"===i?r(this).is(":checked")&&(e.length||"object"===_typeof(e)||(e=!0),s.form[t]=o(s.form[t],e)):s.form[t]=o(s.form[t],e)}}),s=o.onPrepareDataAction.call(e,e,s)||s,r.post(o.api_url,s,function(t){if(o.onDialogHide.call(e.tinvwl_dialog,e),"object"===_typeof(t))for(var i in t)"function"==typeof o.onAction[i]&&o.onAction[i].call(e,t[i]);else"function"==typeof o.onAction.msg&&o.onAction.msg.call(e,t)})}},o=r.extend(!0,{},i,t);return r(this).each(function(){if(!r(this).attr("data-tinv-wl-list"))return!1;if(o.dialogbox&&o.dialogbox.length&&(this.tinvwl_dialog=o.dialogbox),this.tinvwl_dialog||(this.tinvwl_dialog=o.onGetDialogBox.call(this)),!this.tinvwl_dialog){var t=r(this).nextAll(o.class.dialogbox).eq(0);t.length&&(this.tinvwl_dialog=t)}if(this.tinvwl_dialog){o.onPrepareDialogBox.call(this.tinvwl_dialog),"function"!=typeof this.tinvwl_dialog.update_list&&(this.tinvwl_dialog.update_list=function(t){var e=r(this).find(o.class.select).eq(0);r(this).find(o.class.newtitle).hide().val(""),e.html(""),r.each(t,function(t,i){o.onCreateWishList.call(e,i)}),o.text_create&&o.onCreateWishList.call(e,{ID:"",title:o.text_create,in:!1}),o.onMultiProductAlreadyIn.call(e,t),o.onSelectWishList.call(e,t),r(this).find(o.class.newtitle).toggle(""===e.val())}),"function"!=typeof this.tinvwl_dialog.show_list&&(this.tinvwl_dialog.show_list=function(){var t=r.parseJSON(r(this).attr("data-tinv-wl-list"))||[];t.length?(t=o.onPrepareList.call(t)||t,this.tinvwl_dialog.update_list(t),o.onDialogShow.call(this.tinvwl_dialog,this)):o.onActionProduct.call(this)});var n=this;r(this.tinvwl_dialog).find(o.class.dialogbutton).off("click").on("click",function(){var t,i=r(n.tinvwl_dialog).find(o.class.select),e=r(n.tinvwl_dialog).find(o.class.newtitle);i.val()||e.val()?o.onActionProduct.call(n,i.val(),e.val()):((t=e.is(":visible")?e:i).addClass("empty-name-wishlist"),window.setTimeout(function(){t.removeClass("empty-name-wishlist")},1e3))})}r(this).off("click").on("click",o.onClick),o.onInited.call(this,o)})},r(document).ready(function(){r("body").on("click",".tinvwl_add_to_wishlist_button",function(t){if(r(this).is(".disabled-add-wishlist"))return t.preventDefault(),void window.alert(tinvwl_add_to_wishlist.i18n_make_a_selection_text);r(this).is(".inited-add-wishlist")||r(this).tinvwl_to_wishlist({onInited:function(t){r(this).addClass("inited-add-wishlist"),t.onClick.call(this)}})}),r(document).on("hide_variation",".variations_form",function(t){var i=r(this).find(".tinvwl_add_to_wishlist_button");i.length&&!tinvwl_add_to_wishlist.allow_parent_variable&&(t.preventDefault(),i.addClass("disabled-add-wishlist"))}),r(document).on("show_variation",".variations_form",function(t,i,e){var n=r(this).find(".tinvwl_add_to_wishlist_button");if(n.length){var o=JSON.parse(n.attr("data-tinv-wl-list")),a=!1,l="1"==window.tinvwl_add_to_wishlist.simple_flow;for(var s in o)o[s].hasOwnProperty("in")&&Array.isArray(o[s].in)&&-1<(o[s].in||[]).indexOf(i.variation_id)&&(a=!0);n.toggleClass("tinvwl-product-in-list",a).toggleClass("tinvwl-product-make-remove",a&&l).attr("data-tinv-wl-action",a&&l?"remove":"addto"),t.preventDefault(),n.removeClass("disabled-add-wishlist")}})})}(jQuery),function(n){n(document).ready(function(){if(n("#tinvwl_manage_actions, #tinvwl_product_actions").addClass("form-control").parent().wrapInner('<div class="tinvwl-input-group tinvwl-no-full">').find("button").wrap('<span class="tinvwl-input-group-btn">'),n(".tinv-lists-nav").each(function(){n.trim(n(this).html()).length||n(this).remove()}),n("body").on("click",".social-buttons .social[title!=email][title!=whatsapp][title!=clipboard]",function(t){var i=window.open(n(this).attr("href"),n(this).attr("title"),"width=420,height=320,resizable=yes,scrollbars=yes,status=yes");i&&(i.focus(),t.preventDefault())}),"undefined"!=typeof ClipboardJS){new ClipboardJS(".social-buttons .social.social-clipboard",{text:function(t){return t.getAttribute("href")}}).on("success",function(t){showTooltip(t.trigger,tinvwl_add_to_wishlist.tinvwl_clipboard)});for(var t=document.querySelectorAll(".social-buttons .social.social-clipboard"),i=0;i<t.length;i++)t[i].addEventListener("mouseleave",clearTooltip),t[i].addEventListener("blur",clearTooltip)}n("body").on("click",".social-buttons .social.social-clipboard",function(t){t.preventDefault()}),n("body").on("click",".tinv-wishlist .tinv-overlay, .tinv-wishlist .tinv-close-modal, .tinv-wishlist .tinvwl_button_close",function(t){t.preventDefault(),n(this).parents(".tinv-modal:first").removeClass("tinv-modal-open")}),n("body").on("click",".tinv-wishlist .tinvwl-btn-onclick",function(t){n(this).data("url")&&(t.preventDefault(),window.location=n(this).data("url"))});var e=n(".tinv-wishlist .navigation-button");e.length&&e.each(function(){var t=n(this).find("> li");t.length<5&&t.parent().addClass("tinvwl-btns-count-"+t.length)}),n(".tinv-login .showlogin").unbind("click").on("click",function(t){t.preventDefault(),n(this).closest(".tinv-login").find(".login").toggle()}),n(".tinv-wishlist table.tinvwl-table-manage-list tfoot td").each(function(){n(this).toggle(!!n(this).children().not(".look_in").length||!!n(this).children(".look_in").children().length)})}),n(document.body).on("wc_fragments_refreshed wc_fragments_loaded",function(){var t=!("0"==n(".wishlist_products_counter_number").html()||""==n(".wishlist_products_counter_number").html());n(".wishlist_products_counter").toggleClass("wishlist-counter-with-products",t)}),update_cart_hash()}(jQuery),function(n){n.fn.tinvwl_break_submit=function(t){var i={selector:"input, select, textarea",ifempty:!0,invert:!1,validate:function(){return n(this).val()},rule:function(){var t=n(this).parents("form").eq(0).find(e.selector),i=e.invert;return 0===t.length?e.ifempty:(t.each(function(){i&&!e.invert||!i&&e.invert||(i=Boolean(e.validate.call(n(this))))}),i)}},e=n.extend(!0,{},i,t);return n(this).each(function(){n(this).on("click",function(t){e.rule.call(n(this))||(alert(window.tinvwl_add_to_wishlist.tinvwl_break_submit),t.preventDefault())})})},n(document).ready(function(){n(".tinvwl-break-input").tinvwl_break_submit({selector:".tinvwl-break-input-filed"}),n(".tinvwl-break-checkbox").tinvwl_break_submit({selector:"table td input[type=checkbox]",validate:function(){return n(this).is(":checked")}}),n(".global-cb").on("click",function(){n(this).closest("table").eq(0).find(".product-cb input[type=checkbox], .wishlist-cb input[type=checkbox]").prop("checked",n(this).is(":checked"))})})}(jQuery);
includes/wizard.class.php CHANGED
@@ -173,10 +173,11 @@ class TInvWL_Wizard {
173
  * Load style
174
  */
175
  function enqueue_styles() {
 
176
  wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
177
- wp_enqueue_style( $this->_name, TINVWL_URL . 'assets/css/admin.css', array(), $this->_version, 'all' );
178
- wp_enqueue_style( $this->_name . '-form', TINVWL_URL . 'assets/css/admin-form.css', array(), $this->_version, 'all' );
179
- wp_enqueue_style( $this->_name . '-setup', TINVWL_URL . 'assets/css/admin-setup.css', array(
180
  'dashicons',
181
  'install',
182
  ), $this->_version, 'all' );
@@ -287,7 +288,7 @@ class TInvWL_Wizard {
287
  $title_pages = array(
288
  'wishlist' => __( 'Wishlist', 'ti-woocommerce-wishlist' ),
289
  );
290
- $lists = get_pages( array( 'number' => 999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
291
  $page_list = array(
292
  '' => __( 'Create Automatically', 'ti-woocommerce-wishlist' ),
293
  - 100 => __( 'Create new Page', 'ti-woocommerce-wishlist' ),
173
  * Load style
174
  */
175
  function enqueue_styles() {
176
+ $suffix = defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ? '' : '.min';
177
  wp_enqueue_style( 'gfonts', ( is_ssl() ? 'https' : 'http' ) . '://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800', '', null, 'all' );
178
+ wp_enqueue_style( $this->_name, TINVWL_URL . 'assets/css/admin' . $suffix . '.css', array(), $this->_version, 'all' );
179
+ wp_enqueue_style( $this->_name . '-form', TINVWL_URL . 'assets/css/admin-form' . $suffix . '.css', array(), $this->_version, 'all' );
180
+ wp_enqueue_style( $this->_name . '-setup', TINVWL_URL . 'assets/css/admin-setup' . $suffix . '.css', array(
181
  'dashicons',
182
  'install',
183
  ), $this->_version, 'all' );
288
  $title_pages = array(
289
  'wishlist' => __( 'Wishlist', 'ti-woocommerce-wishlist' ),
290
  );
291
+ $lists = get_pages( array( 'number' => 9999999 ) ); // @codingStandardsIgnoreLine WordPress.VIP.RestrictedFunctions.get_pages
292
  $page_list = array(
293
  '' => __( 'Create Automatically', 'ti-woocommerce-wishlist' ),
294
  - 100 => __( 'Create new Page', 'ti-woocommerce-wishlist' ),
languages/ti-woocommerce-wishlist.pot CHANGED
@@ -1,8 +1,8 @@
1
- # Copyright (C) 2019 TI WooCommerce Wishlist Plugin - 1.14.2
2
- # This file is distributed under the same license as the TI WooCommerce Wishlist Plugin - 1.14.2 package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: TI WooCommerce Wishlist Plugin - 1.14.2\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
@@ -60,7 +60,7 @@ msgstr ""
60
  msgid "Default Wishlist Name"
61
  msgstr ""
62
 
63
- #: admin/settings/general.class.php:120, admin/tinvwl.class.php:398
64
  msgid "Wishlist Page"
65
  msgstr ""
66
 
@@ -196,15 +196,15 @@ msgstr ""
196
  msgid "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."
197
  msgstr ""
198
 
199
- #: admin/settings/general.class.php:317, admin/settings/general.class.php:457, includes/wizard.class.php:408
200
  msgid "After \"Add to Cart\" button"
201
  msgstr ""
202
 
203
- #: admin/settings/general.class.php:318, admin/settings/general.class.php:458, includes/wizard.class.php:409
204
  msgid "Before \"Add to Cart\" button"
205
  msgstr ""
206
 
207
- #: admin/settings/general.class.php:319, admin/settings/general.class.php:460, includes/wizard.class.php:410
208
  msgid "Custom position with code"
209
  msgstr ""
210
 
@@ -684,7 +684,7 @@ msgstr ""
684
  msgid "Normal Buttons Text Hover Color"
685
  msgstr ""
686
 
687
- #: admin/settings/upgrade.class.php:56, admin/tinvwl.class.php:273, views/wizard/finish.php:31
688
  msgid "Upgrade to Premium"
689
  msgstr ""
690
 
@@ -736,15 +736,15 @@ msgstr ""
736
  msgid " or "
737
  msgstr ""
738
 
739
- #: admin/tinvwl.class.php:196
740
  msgid "Are you sure you want to reset the settings?"
741
  msgstr ""
742
 
743
- #: admin/tinvwl.class.php:312
744
  msgid "<code>%1$s</code> version <strong style=\"color:red\">%2$s</strong> is out of date. The core version is <strong style=\"color:red\">%3$s</strong>"
745
  msgstr ""
746
 
747
- #: admin/tinvwl.class.php:338
748
  msgid "<strong>Your theme (%1$s) contains outdated copies of some WooCommerce Wishlist Plugin template files.</strong><br> These files may need updating to ensure they are compatible with the current version of WooCommerce Wishlist Plugin.<br> You can see which files are affected from the <a href=\"%2$s\">system status page</a>.<br> If in doubt, check with the author of the theme."
749
  msgstr ""
750
 
@@ -856,47 +856,47 @@ msgstr ""
856
  msgid "read documentation"
857
  msgstr ""
858
 
859
- #: includes/wizard.class.php:264
860
  msgid "Introduction"
861
  msgstr ""
862
 
863
- #: includes/wizard.class.php:280, views/wizard/step-page.php:16
864
  msgid "Page Setup"
865
  msgstr ""
866
 
867
- #: includes/wizard.class.php:288, includes/wizard.class.php:319, public/tinvwl.class.php:583
868
  msgid "Wishlist"
869
  msgstr ""
870
 
871
- #: includes/wizard.class.php:292
872
  msgid "Create Automatically"
873
  msgstr ""
874
 
875
- #: includes/wizard.class.php:293
876
  msgid "Create new Page"
877
  msgstr ""
878
 
879
- #: includes/wizard.class.php:397
880
  msgid "Button"
881
  msgstr ""
882
 
883
- #: includes/wizard.class.php:441
884
  msgid "Processing"
885
  msgstr ""
886
 
887
- #: includes/wizard.class.php:451
888
  msgid "Automatically"
889
  msgstr ""
890
 
891
- #: includes/wizard.class.php:452
892
  msgid "Manual"
893
  msgstr ""
894
 
895
- #: includes/wizard.class.php:476, views/wizard/step-social.php:18
896
  msgid "Share"
897
  msgstr ""
898
 
899
- #: includes/wizard.class.php:520
900
  msgid "Ready!"
901
  msgstr ""
902
 
@@ -1028,30 +1028,30 @@ msgstr ""
1028
  msgid "Action"
1029
  msgstr ""
1030
 
1031
- #: public/wishlist/buttons.class.php:306, public/wishlist/buttons.class.php:437
1032
  msgctxt "Item name in quotes"
1033
  msgid "&ldquo;%s&rdquo;"
1034
  msgstr ""
1035
 
1036
- #: public/wishlist/buttons.class.php:309, public/wishlist/buttons.class.php:440
1037
  msgid "Product %s could not be added to cart because some requirements are not met."
1038
  msgid_plural "Products: %s could not be added to cart because some requirements are not met."
1039
  msgstr[0] ""
1040
  msgstr[1] ""
1041
 
1042
- #: public/wishlist/buttons.class.php:337
1043
  msgid "Actions"
1044
  msgstr ""
1045
 
1046
- #: public/wishlist/buttons.class.php:346, templates/ti-wishlist.php:92
1047
  msgid "Remove"
1048
  msgstr ""
1049
 
1050
- #: public/wishlist/buttons.class.php:494, public/wishlist/view.class.php:488
1051
  msgid "&ldquo;%s&rdquo;"
1052
  msgstr ""
1053
 
1054
- #: public/wishlist/buttons.class.php:507
1055
  msgid "%s has been successfully removed from wishlist."
1056
  msgid_plural "%s have been successfully removed from wishlist."
1057
  msgstr[0] ""
1
+ # Copyright (C) 2019 TI WooCommerce Wishlist Plugin - 1.14.3
2
+ # This file is distributed under the same license as the TI WooCommerce Wishlist Plugin - 1.14.3 package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: TI WooCommerce Wishlist Plugin - 1.14.3\n"
6
  "MIME-Version: 1.0\n"
7
  "Content-Type: text/plain; charset=UTF-8\n"
8
  "Content-Transfer-Encoding: 8bit\n"
60
  msgid "Default Wishlist Name"
61
  msgstr ""
62
 
63
+ #: admin/settings/general.class.php:120, admin/tinvwl.class.php:399
64
  msgid "Wishlist Page"
65
  msgstr ""
66
 
196
  msgid "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."
197
  msgstr ""
198
 
199
+ #: admin/settings/general.class.php:317, admin/settings/general.class.php:457, includes/wizard.class.php:409
200
  msgid "After \"Add to Cart\" button"
201
  msgstr ""
202
 
203
+ #: admin/settings/general.class.php:318, admin/settings/general.class.php:458, includes/wizard.class.php:410
204
  msgid "Before \"Add to Cart\" button"
205
  msgstr ""
206
 
207
+ #: admin/settings/general.class.php:319, admin/settings/general.class.php:460, includes/wizard.class.php:411
208
  msgid "Custom position with code"
209
  msgstr ""
210
 
684
  msgid "Normal Buttons Text Hover Color"
685
  msgstr ""
686
 
687
+ #: admin/settings/upgrade.class.php:56, admin/tinvwl.class.php:274, views/wizard/finish.php:31
688
  msgid "Upgrade to Premium"
689
  msgstr ""
690
 
736
  msgid " or "
737
  msgstr ""
738
 
739
+ #: admin/tinvwl.class.php:197
740
  msgid "Are you sure you want to reset the settings?"
741
  msgstr ""
742
 
743
+ #: admin/tinvwl.class.php:313
744
  msgid "<code>%1$s</code> version <strong style=\"color:red\">%2$s</strong> is out of date. The core version is <strong style=\"color:red\">%3$s</strong>"
745
  msgstr ""
746
 
747
+ #: admin/tinvwl.class.php:339
748
  msgid "<strong>Your theme (%1$s) contains outdated copies of some WooCommerce Wishlist Plugin template files.</strong><br> These files may need updating to ensure they are compatible with the current version of WooCommerce Wishlist Plugin.<br> You can see which files are affected from the <a href=\"%2$s\">system status page</a>.<br> If in doubt, check with the author of the theme."
749
  msgstr ""
750
 
856
  msgid "read documentation"
857
  msgstr ""
858
 
859
+ #: includes/wizard.class.php:265
860
  msgid "Introduction"
861
  msgstr ""
862
 
863
+ #: includes/wizard.class.php:281, views/wizard/step-page.php:16
864
  msgid "Page Setup"
865
  msgstr ""
866
 
867
+ #: includes/wizard.class.php:289, includes/wizard.class.php:320, public/tinvwl.class.php:583
868
  msgid "Wishlist"
869
  msgstr ""
870
 
871
+ #: includes/wizard.class.php:293
872
  msgid "Create Automatically"
873
  msgstr ""
874
 
875
+ #: includes/wizard.class.php:294
876
  msgid "Create new Page"
877
  msgstr ""
878
 
879
+ #: includes/wizard.class.php:398
880
  msgid "Button"
881
  msgstr ""
882
 
883
+ #: includes/wizard.class.php:442
884
  msgid "Processing"
885
  msgstr ""
886
 
887
+ #: includes/wizard.class.php:452
888
  msgid "Automatically"
889
  msgstr ""
890
 
891
+ #: includes/wizard.class.php:453
892
  msgid "Manual"
893
  msgstr ""
894
 
895
+ #: includes/wizard.class.php:477, views/wizard/step-social.php:18
896
  msgid "Share"
897
  msgstr ""
898
 
899
+ #: includes/wizard.class.php:521
900
  msgid "Ready!"
901
  msgstr ""
902
 
1028
  msgid "Action"
1029
  msgstr ""
1030
 
1031
+ #: public/wishlist/buttons.class.php:319, public/wishlist/buttons.class.php:450
1032
  msgctxt "Item name in quotes"
1033
  msgid "&ldquo;%s&rdquo;"
1034
  msgstr ""
1035
 
1036
+ #: public/wishlist/buttons.class.php:322, public/wishlist/buttons.class.php:453
1037
  msgid "Product %s could not be added to cart because some requirements are not met."
1038
  msgid_plural "Products: %s could not be added to cart because some requirements are not met."
1039
  msgstr[0] ""
1040
  msgstr[1] ""
1041
 
1042
+ #: public/wishlist/buttons.class.php:350
1043
  msgid "Actions"
1044
  msgstr ""
1045
 
1046
+ #: public/wishlist/buttons.class.php:359, templates/ti-wishlist.php:92
1047
  msgid "Remove"
1048
  msgstr ""
1049
 
1050
+ #: public/wishlist/buttons.class.php:507, public/wishlist/view.class.php:488
1051
  msgid "&ldquo;%s&rdquo;"
1052
  msgstr ""
1053
 
1054
+ #: public/wishlist/buttons.class.php:520
1055
  msgid "%s has been successfully removed from wishlist."
1056
  msgid_plural "%s have been successfully removed from wishlist."
1057
  msgstr[0] ""
public/cart.class.php CHANGED
@@ -72,7 +72,11 @@ class TInvWL_Public_Cart {
72
  * Define hooks
73
  */
74
  function define_hooks() {
75
- add_action( 'woocommerce_before_cart_item_quantity_zero', array( __CLASS__, 'remove_item_data' ) );
 
 
 
 
76
  add_action( 'woocommerce_cart_emptied', array( __CLASS__, 'remove_item_data' ) );
77
  if ( version_compare( WC_VERSION, '3.0.0', '<' ) ) {
78
  add_action( 'woocommerce_add_order_item_meta', array( $this, 'add_order_item_meta' ), 10, 3 );
72
  * Define hooks
73
  */
74
  function define_hooks() {
75
+ if ( version_compare( WC_VERSION, '3.7.0', '<' ) ) {
76
+ add_action( 'woocommerce_before_cart_item_quantity_zero', array( __CLASS__, 'remove_item_data' ) );
77
+ } else {
78
+ add_action( 'woocommerce_remove_cart_item', array( __CLASS__, 'remove_item_data' ) );
79
+ }
80
  add_action( 'woocommerce_cart_emptied', array( __CLASS__, 'remove_item_data' ) );
81
  if ( version_compare( WC_VERSION, '3.0.0', '<' ) ) {
82
  add_action( 'woocommerce_add_order_item_meta', array( $this, 'add_order_item_meta' ), 10, 3 );
public/wishlist/buttons.class.php CHANGED
@@ -79,7 +79,7 @@ class TInvWL_Public_Wishlist_Buttons {
79
  'method' => array( __CLASS__, 'apply_action_add_selected' ),
80
  'priority' => 25,
81
  );
82
- add_filter( 'tinvwl_prepare_attr__button_product_selected', array(
83
  __CLASS__,
84
  'add_break_class_checkbox',
85
  ) );
@@ -91,8 +91,8 @@ class TInvWL_Public_Wishlist_Buttons {
91
  'method' => array( __CLASS__, 'add_all' ),
92
  'priority' => 30,
93
  );
94
- add_filter( 'tinvwl_prepare_attr__button_product_selected', array( __CLASS__, 'class_action' ) );
95
- add_filter( 'tinvwl_prepare_attr__button_product_all', array( __CLASS__, 'class_action' ) );
96
  }
97
  $buttons = apply_filters( 'tinvwl_manage_buttons_create', $buttons );
98
 
@@ -248,6 +248,19 @@ class TInvWL_Public_Wishlist_Buttons {
248
  return $attr;
249
  }
250
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  /**
252
  * Apply action for product_all
253
  *
@@ -259,8 +272,8 @@ class TInvWL_Public_Wishlist_Buttons {
259
  * @return boolean
260
  */
261
  public static function add_all( $wishlist, $selected = array(), $_quantity = array(), $owner = false ) {
 
262
  $products = self::get_current_products( $wishlist, 9999999 );
263
-
264
  $result = $errors = array();
265
  foreach ( $products as $_product ) {
266
  $product_data = wc_get_product( $_product['variation_id'] ? $_product['variation_id'] : $_product['product_id'] );
79
  'method' => array( __CLASS__, 'apply_action_add_selected' ),
80
  'priority' => 25,
81
  );
82
+ add_filter( 'tinvwl_prepare_attr_button_product_selected', array(
83
  __CLASS__,
84
  'add_break_class_checkbox',
85
  ) );
91
  'method' => array( __CLASS__, 'add_all' ),
92
  'priority' => 30,
93
  );
94
+ add_filter( 'tinvwl_prepare_attr_button_product_selected', array( __CLASS__, 'class_action' ) );
95
+ add_filter( 'tinvwl_prepare_attr_button_product_all', array( __CLASS__, 'class_action' ) );
96
  }
97
  $buttons = apply_filters( 'tinvwl_manage_buttons_create', $buttons );
98
 
248
  return $attr;
249
  }
250
 
251
+ /**
252
+ * Get all products fix offset issue when paged argument exists.
253
+ *
254
+ * @param array $data
255
+ *
256
+ * @return array
257
+ */
258
+ public static function get_all_products_fix_offset( $data ) {
259
+ $data['offset'] = 0;
260
+
261
+ return $data;
262
+ }
263
+
264
  /**
265
  * Apply action for product_all
266
  *
272
  * @return boolean
273
  */
274
  public static function add_all( $wishlist, $selected = array(), $_quantity = array(), $owner = false ) {
275
+ add_filter( 'tinvwl_before_get_current_product', array( __CLASS__, 'get_all_products_fix_offset' ) );
276
  $products = self::get_current_products( $wishlist, 9999999 );
 
277
  $result = $errors = array();
278
  foreach ( $products as $_product ) {
279
  $product_data = wc_get_product( $_product['variation_id'] ? $_product['variation_id'] : $_product['product_id'] );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: templateinvaders
3
  Tags: wishlist, woocommerce, woocommerce wishlist, e-commerce, ecommerce
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
- Stable tag: 1.14.2
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
@@ -151,19 +151,26 @@ Yes you can! Join in on our [GitHub repository](https://github.com/TemplateInvad
151
 
152
  1. Wishlist Settings page
153
  2. Wishlist Appearance Options
154
- 3. "Add to Wishlist" button options
155
- 4. The look of "Add to Wishlist" button on frontend with different settings
156
- 5. Wishlist page with all columns, desktop view
157
- 6. Wishlist page with turned off date of addition, checkboxes and bulk actions.
158
- 7. When you click Add to Wishlist button a popup with success or error message appears.
159
- 8. Wishlist page, Tablet view
160
- 9. Wishlist page, Mobile view
161
- 10. Simplified Wishlist page, Mobile view
162
- 11. WooCommerce Wishlist Plugin Comes with a setup Wizard to help you configure the settings.
163
 
164
 
165
 
166
  == Changelog ==
 
 
 
 
 
 
 
 
167
  = 1.14.2 =
168
  *Release Date - 28 August 2019*
169
 
@@ -246,11 +253,6 @@ Yes you can! Join in on our [GitHub repository](https://github.com/TemplateInvad
246
  * Fixed wishlist analytics issues
247
  * Code cleanup
248
 
249
- = 1.11.1 =
250
- *Release Date - 19 April 2019*
251
-
252
- * Fixed a hook for [myCRED](https://wordpress.org/plugins/mycred/) plugin when purchased product from a wishlist
253
- * Plugin display name changed to "TI WooCommerce Wishlist Plugin"
254
 
255
  [See changelog for all versions](https://templateinvaders.com/changelogs/ti-woocommerce-wishlist-plugin-free-changelog/?utm_source=wordpressorg&utm_content=changelog).
256
 
3
  Tags: wishlist, woocommerce, woocommerce wishlist, e-commerce, ecommerce
4
  Requires at least: 4.7
5
  Tested up to: 5.2
6
+ Stable tag: 1.14.3
7
  License: GPLv3
8
  License URI: https://www.gnu.org/licenses/gpl-3.0.html
9
 
151
 
152
  1. Wishlist Settings page
153
  2. Wishlist Appearance Options
154
+ 3. The look of "Add to Wishlist" button on frontend with different settings
155
+ 4. Wishlist page with all columns, desktop view
156
+ 5. Wishlist page with turned off date of addition, checkboxes and bulk actions.
157
+ 6. When you click Add to Wishlist button a popup with success or error message appears.
158
+ 7. Wishlist page, Tablet view
159
+ 8. Wishlist page, Mobile view
160
+ 9. Simplified Wishlist page, Mobile view
161
+ 10. WooCommerce Wishlist Plugin Comes with a setup Wizard to help you configure the settings.
 
162
 
163
 
164
 
165
  == Changelog ==
166
+ = 1.14.3 =
167
+ *Release Date - 31 August 2019*
168
+
169
+ * Added compatibility for hook 'woocommerce_before_cart_item_quantity_zero' that deprecated from WooCommerce 3.7.0
170
+ * Fixed 'Add All to Cart' button issue
171
+ * Fixed PHP Error when 'wc_clear_notices' method is not available
172
+ * Improved stylesheets loading for plugin settings
173
+
174
  = 1.14.2 =
175
  *Release Date - 28 August 2019*
176
 
253
  * Fixed wishlist analytics issues
254
  * Code cleanup
255
 
 
 
 
 
 
256
 
257
  [See changelog for all versions](https://templateinvaders.com/changelogs/ti-woocommerce-wishlist-plugin-free-changelog/?utm_source=wordpressorg&utm_content=changelog).
258
 
ti-woocommerce-wishlist.php CHANGED
@@ -4,7 +4,7 @@
4
  * Plugin Name: TI WooCommerce Wishlist Plugin
5
  * Plugin URI: https://wordpress.org/plugins/ti-woocommerce-wishlist/
6
  * Description: Wishlist functionality for your WooCommerce store.
7
- * Version: 1.14.2
8
  * Requires at least: 4.5
9
  * Tested up to: 5.2
10
  * WC requires at least: 2.6
@@ -41,7 +41,7 @@ if ( ! defined( 'TINVWL_DOMAIN' ) ) {
41
  }
42
 
43
  if ( ! defined( 'TINVWL_FVERSION' ) ) {
44
- define( 'TINVWL_FVERSION', '1.14.2' );
45
  }
46
 
47
  if ( ! defined( 'TINVWL_LOAD_FREE' ) ) {
4
  * Plugin Name: TI WooCommerce Wishlist Plugin
5
  * Plugin URI: https://wordpress.org/plugins/ti-woocommerce-wishlist/
6
  * Description: Wishlist functionality for your WooCommerce store.
7
+ * Version: 1.14.3
8
  * Requires at least: 4.5
9
  * Tested up to: 5.2
10
  * WC requires at least: 2.6
41
  }
42
 
43
  if ( ! defined( 'TINVWL_FVERSION' ) ) {
44
+ define( 'TINVWL_FVERSION', '1.14.3' );
45
  }
46
 
47
  if ( ! defined( 'TINVWL_LOAD_FREE' ) ) {
tinv-wishlists-function.php CHANGED
@@ -673,7 +673,7 @@ if ( ! function_exists( 'tinvwl_meta_validate_cart_add' ) ) {
673
  $variations = ( version_compare( WC_VERSION, '3.0.0', '<' ) ? $product->variation_data : ( $product->is_type( 'variation' ) ? wc_get_product_variation_attributes( $product->get_id() ) : array() ) );
674
  $passed_validation = $product->is_purchasable() && ( $product->is_in_stock() || $product->backorders_allowed() ) && 'external' !== ( version_compare( WC_VERSION, '3.0.0', '<' ) ? $product->product_type : $product->get_type() );
675
  ob_start();
676
- if ( ! function_exists( 'wc_clear_notices' ) ) {
677
  wc_clear_notices();
678
  }
679
  $passed_validation = apply_filters( 'woocommerce_add_to_cart_validation', $passed_validation, $product_id, $quantity, $variation_id, $variations );
673
  $variations = ( version_compare( WC_VERSION, '3.0.0', '<' ) ? $product->variation_data : ( $product->is_type( 'variation' ) ? wc_get_product_variation_attributes( $product->get_id() ) : array() ) );
674
  $passed_validation = $product->is_purchasable() && ( $product->is_in_stock() || $product->backorders_allowed() ) && 'external' !== ( version_compare( WC_VERSION, '3.0.0', '<' ) ? $product->product_type : $product->get_type() );
675
  ob_start();
676
+ if ( function_exists( 'wc_clear_notices' ) ) {
677
  wc_clear_notices();
678
  }
679
  $passed_validation = apply_filters( 'woocommerce_add_to_cart_validation', $passed_validation, $product_id, $quantity, $variation_id, $variations );