disco_app 0.8.9 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (90) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/images/disco_app/icons.svg +0 -0
  3. data/app/assets/javascripts/disco_app/components/{filterable_shop_list.js.jsx → custom/filterable_shop_list.js.jsx} +1 -1
  4. data/app/assets/javascripts/disco_app/components/custom/inline-radio-options.es6.jsx +59 -0
  5. data/app/assets/javascripts/disco_app/components/custom/rules-editor.es6.jsx +360 -0
  6. data/app/assets/javascripts/disco_app/components/{shop_list.js.jsx → custom/shop_list.js.jsx} +9 -11
  7. data/app/assets/javascripts/disco_app/components/custom/shop_row.js.jsx +43 -0
  8. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card-section.es6.jsx +30 -0
  9. data/app/assets/javascripts/disco_app/components/ui-kit/cards/card.es6.jsx +9 -0
  10. data/app/assets/javascripts/disco_app/components/ui-kit/cards/cart-section-title.es6.jsx +7 -0
  11. data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_form.es6.jsx +72 -0
  12. data/app/assets/javascripts/disco_app/components/ui-kit/forms/base_input.es6.jsx +20 -0
  13. data/app/assets/javascripts/disco_app/components/ui-kit/forms/button.es6.jsx +13 -0
  14. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-radio.es6.jsx +30 -0
  15. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-select.es6.jsx +39 -0
  16. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-text.es6.jsx +59 -0
  17. data/app/assets/javascripts/disco_app/components/ui-kit/forms/input-textarea.es6.jsx +48 -0
  18. data/app/assets/javascripts/disco_app/components/ui-kit/icons/icon-chevron.es6.jsx +33 -0
  19. data/app/assets/javascripts/disco_app/components/ui-kit/icons/next-icon.es6.jsx +18 -0
  20. data/app/assets/javascripts/disco_app/components/ui-kit/input_select.es6.jsx +21 -0
  21. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-annotated-section.es6.jsx +29 -0
  22. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-empty-state.es6.jsx +35 -0
  23. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-footer-help.es6.jsx +13 -0
  24. data/app/assets/javascripts/disco_app/components/ui-kit/ui-layout/ui-page-actions.es6.jsx +39 -0
  25. data/app/assets/javascripts/disco_app/components.js +1 -4
  26. data/app/assets/javascripts/disco_app/disco_app.js +3 -0
  27. data/app/assets/javascripts/disco_app/ui-kit.js +1 -0
  28. data/app/assets/stylesheets/disco_app/admin/_header.scss +66 -0
  29. data/app/assets/stylesheets/disco_app/admin/_layout.scss +40 -0
  30. data/app/assets/stylesheets/disco_app/admin/_nav.scss +172 -0
  31. data/app/assets/stylesheets/disco_app/admin.scss +11 -0
  32. data/app/assets/stylesheets/disco_app/disco_app.scss +12 -12
  33. data/app/assets/stylesheets/disco_app/{disco/mixins → mixins}/_flexbox.scss +6 -0
  34. data/app/assets/stylesheets/disco_app/ui-kit/_ui-empty-state.scss +94 -0
  35. data/app/assets/stylesheets/disco_app/ui-kit/_ui-footer-help.scss +25 -0
  36. data/app/assets/stylesheets/disco_app/ui-kit/_ui-icons.scss +28 -0
  37. data/app/assets/stylesheets/disco_app/ui-kit/_ui-kit.scss +5086 -0
  38. data/app/assets/stylesheets/disco_app/ui-kit/_ui-layout.scss +10 -0
  39. data/app/assets/stylesheets/disco_app/ui-kit/_ui-page-actions.scss +21 -0
  40. data/app/assets/stylesheets/disco_app/{disco/_tabs.scss → ui-kit/_ui-tabs.scss} +3 -1
  41. data/app/assets/stylesheets/disco_app/ui-kit/_ui-type.scss +13 -0
  42. data/app/controllers/disco_app/admin/concerns/plans_controller.rb +8 -5
  43. data/app/controllers/disco_app/admin/concerns/subscriptions_controller.rb +32 -0
  44. data/app/controllers/disco_app/admin/subscriptions_controller.rb +3 -0
  45. data/app/helpers/disco_app/application_helper.rb +22 -0
  46. data/app/models/disco_app/concerns/plan.rb +2 -2
  47. data/app/models/disco_app/concerns/shop.rb +0 -4
  48. data/app/models/disco_app/concerns/subscription.rb +12 -0
  49. data/app/resources/disco_app/admin/resources/concerns/shop_resource.rb +40 -3
  50. data/app/views/disco_app/admin/plans/_form.html.erb +18 -21
  51. data/app/views/disco_app/admin/plans/_plan_code_fields.html.erb +15 -0
  52. data/app/views/disco_app/admin/plans/index.html.erb +2 -0
  53. data/app/views/disco_app/admin/shops/index.html.erb +2 -1
  54. data/app/views/disco_app/admin/subscriptions/edit.html.erb +33 -0
  55. data/app/views/disco_app/shared/_icons.html.erb +3 -0
  56. data/app/views/layouts/admin/_nav_items.erb +20 -0
  57. data/app/views/layouts/admin.html.erb +53 -9
  58. data/app/views/layouts/embedded_app.html.erb +2 -0
  59. data/app/views/layouts/embedded_app_modal.html.erb +11 -0
  60. data/config/routes.rb +4 -2
  61. data/lib/disco_app/engine.rb +2 -1
  62. data/lib/disco_app/version.rb +1 -1
  63. data/lib/generators/disco_app/disco_app_generator.rb +35 -2
  64. data/lib/generators/disco_app/templates/assets/javascripts/components.js +3 -0
  65. data/lib/generators/disco_app/templates/config/database.yml.tt +20 -0
  66. data/lib/tasks/database.rake +8 -0
  67. data/test/controllers/disco_app/charges_controller_test.rb +9 -2
  68. data/test/fixtures/api/widget_store/charges/create_recurring_application_charge_request.json +1 -1
  69. data/test/fixtures/api/widget_store/charges/create_second_recurring_application_charge_request.json +1 -1
  70. data/test/fixtures/disco_app/subscriptions.yml +1 -0
  71. data/test/models/disco_app/subscription_test.rb +19 -0
  72. data/test/services/disco_app/charges_service_test.rb +9 -2
  73. data/test/test_helper.rb +3 -0
  74. metadata +80 -21
  75. data/app/assets/javascripts/disco_app/components/shop_row.js.jsx +0 -27
  76. data/app/assets/stylesheets/disco_app/bootstrap/_custom.scss +0 -54
  77. data/app/assets/stylesheets/disco_app/bootstrap/_variables.scss +0 -872
  78. data/app/assets/stylesheets/disco_app/disco/_buttons.scss +0 -31
  79. data/app/assets/stylesheets/disco_app/disco/_cards.scss +0 -52
  80. data/app/assets/stylesheets/disco_app/disco/_forms.scss +0 -23
  81. data/app/assets/stylesheets/disco_app/disco/_grid.scss +0 -58
  82. data/app/assets/stylesheets/disco_app/disco/_sections.scss +0 -61
  83. data/app/assets/stylesheets/disco_app/disco/_tables.scss +0 -57
  84. data/app/assets/stylesheets/disco_app/disco/_type.scss +0 -39
  85. data/app/views/layouts/admin/_navbar.html.erb +0 -25
  86. data/lib/generators/disco_app/adminify/adminify_generator.rb +0 -35
  87. data/lib/generators/disco_app/reactify/reactify_generator.rb +0 -45
  88. /data/app/assets/javascripts/disco_app/components/{shop_filter_tab.js.jsx → custom/shop_filter_tab.js.jsx} +0 -0
  89. /data/app/assets/javascripts/disco_app/components/{shop_filter_tabs.js.jsx → custom/shop_filter_tabs.js.jsx} +0 -0
  90. /data/app/assets/javascripts/disco_app/components/{shopify_admin_link.js.jsx → custom/shopify_admin_link.js.jsx} +0 -0
@@ -0,0 +1,5086 @@
1
+ //
2
+ // ui-kit.scss
3
+ // The Shopify UI Kit provided in the Channels SDK.
4
+ // --------------------------------------------------
5
+
6
+ .block {
7
+ display: block !important;
8
+ }
9
+
10
+ .is-visuallyhidden, .ui-helper-hidden-accessible {
11
+ border: 0;
12
+ clip: rect(0 0 0 0);
13
+ height: 1px;
14
+ margin: -1px;
15
+ overflow: hidden;
16
+ padding: 0;
17
+ position: absolute;
18
+ width: 1px;
19
+ }
20
+
21
+ .is-transitioning {
22
+ display: block !important;
23
+ visibility: visible !important;
24
+ }
25
+
26
+ .inline {
27
+ display: inline !important;
28
+ width: auto !important;
29
+ }
30
+
31
+ .inline-block {
32
+ display: inline-block !important;
33
+ }
34
+
35
+ .table {
36
+ display: table !important;
37
+ }
38
+
39
+ .table-cell {
40
+ display: table-cell !important;
41
+ }
42
+
43
+ .hide {
44
+ display: none !important;
45
+ }
46
+
47
+ .divider {
48
+ margin-bottom: 15px !important;
49
+ padding-bottom: 15px !important;
50
+ border-bottom: 1px solid #e6e6e6 !important;
51
+ }
52
+
53
+ .divider-slim {
54
+ margin-bottom: 10px !important;
55
+ padding-bottom: 10px !important;
56
+ border-bottom: 1px solid #e6e6e6 !important;
57
+ }
58
+
59
+ .divider-top {
60
+ margin-top: 15px !important;
61
+ padding-top: 15px !important;
62
+ border-top: 1px solid #e6e6e6 !important;
63
+ }
64
+
65
+ .s-none {
66
+ margin: 0 !important;
67
+ }
68
+
69
+ .s {
70
+ margin: 10px !important;
71
+ }
72
+
73
+ .ss {
74
+ margin: 20px !important;
75
+ }
76
+
77
+ .st {
78
+ margin-top: 10px !important;
79
+ }
80
+
81
+ .sst {
82
+ margin-top: 20px !important;
83
+ }
84
+
85
+ .sr {
86
+ margin-right: 10px !important;
87
+ }
88
+
89
+ .ssr {
90
+ margin-right: 20px !important;
91
+ }
92
+
93
+ .sb {
94
+ margin-bottom: 10px !important;
95
+ }
96
+
97
+ .has-inline-errors .sb {
98
+ position: relative;
99
+ }
100
+
101
+ .ssb {
102
+ margin-bottom: 15px !important;
103
+ }
104
+
105
+ .ssb--thin {
106
+ margin-bottom: 7px !important;
107
+ }
108
+
109
+ .sssb {
110
+ margin-bottom: 30px !important;
111
+ }
112
+
113
+ .sl {
114
+ margin-left: 10px !important;
115
+ }
116
+
117
+ .ssl {
118
+ margin-left: 20px !important;
119
+ }
120
+
121
+ .p-none {
122
+ padding: 0 !important;
123
+ }
124
+
125
+ .pt-none {
126
+ padding-top: 0 !important;
127
+ }
128
+
129
+ .pr-none {
130
+ padding-right: 0 !important;
131
+ }
132
+
133
+ .pl-none {
134
+ padding-left: 0 !important;
135
+ }
136
+
137
+ .p {
138
+ padding: 10px !important;
139
+ }
140
+
141
+ .pp {
142
+ padding: 20px !important;
143
+ }
144
+
145
+ .pt {
146
+ padding-top: 10px !important;
147
+ }
148
+
149
+ .ppt {
150
+ padding-top: 20px !important;
151
+ }
152
+
153
+ .pppt {
154
+ padding-top: 30px !important;
155
+ }
156
+
157
+ .pr {
158
+ padding-right: 10px !important;
159
+ }
160
+
161
+ .ppr {
162
+ padding-right: 20px !important;
163
+ }
164
+
165
+ .pb {
166
+ padding-bottom: 10px !important;
167
+ }
168
+
169
+ .ppb {
170
+ padding-bottom: 20px !important;
171
+ }
172
+
173
+ .pl {
174
+ padding-left: 10px !important;
175
+ }
176
+
177
+ .ppl {
178
+ padding-left: 20px !important;
179
+ }
180
+
181
+ .pppl {
182
+ padding-left: 30px !important;
183
+ }
184
+
185
+ .p-rel {
186
+ position: relative !important;
187
+ }
188
+
189
+ .no-wrap {
190
+ white-space: nowrap !important;
191
+ }
192
+
193
+ .w-auto {
194
+ width: auto !important;
195
+ }
196
+
197
+ .fr {
198
+ float: right !important;
199
+ }
200
+
201
+ .fl {
202
+ float: left !important;
203
+ }
204
+
205
+ .fn {
206
+ float: none !important;
207
+ }
208
+
209
+ .tr {
210
+ text-align: right !important;
211
+ }
212
+
213
+ .tl {
214
+ text-align: left !important;
215
+ }
216
+
217
+ .tc {
218
+ text-align: center !important;
219
+ }
220
+
221
+ .wait {
222
+ cursor: wait !important;
223
+ }
224
+
225
+ .pointer {
226
+ cursor: pointer !important;
227
+ }
228
+
229
+ .cursor-default {
230
+ cursor: default;
231
+ }
232
+
233
+ .va-t {
234
+ vertical-align: top !important;
235
+ }
236
+
237
+ .va-m {
238
+ vertical-align: middle !important;
239
+ }
240
+
241
+ .relative {
242
+ position: relative;
243
+ }
244
+
245
+ .fixed {
246
+ position: fixed !important;
247
+ }
248
+
249
+ .updated {
250
+ background: #f3eab5;
251
+ color: #ce6416;
252
+ }
253
+
254
+ .underline {
255
+ text-decoration: underline;
256
+ }
257
+
258
+ .mono {
259
+ font-family: Monaco, Consolas, "Lucida Console", monospace;
260
+ }
261
+
262
+ .uppercase {
263
+ text-transform: uppercase;
264
+ }
265
+
266
+ .dashed-text {
267
+ border-bottom: 1px dashed #ccc;
268
+ }
269
+
270
+ @media screen and (max-width: 1200px) {
271
+ .truncate::before {
272
+ content: "...";
273
+ }
274
+ .truncate .is-truncated {
275
+ display: none;
276
+ }
277
+ }
278
+
279
+ .paragraph p {
280
+ margin-bottom: 10px;
281
+ }
282
+
283
+ .paragraph p:last-child {
284
+ margin-bottom: 0;
285
+ }
286
+
287
+ .paragraph ol, .paragraph ul {
288
+ margin-left: 20px;
289
+ }
290
+
291
+ .paragraph li {
292
+ margin: 5px 0;
293
+ }
294
+
295
+ .paragraph li li {
296
+ margin: 8px 0;
297
+ line-height: 1.2;
298
+ }
299
+
300
+ .paragraph ul li {
301
+ list-style-type: square;
302
+ }
303
+
304
+ .paragraph ul li li {
305
+ list-style-type: circle;
306
+ }
307
+
308
+ .ir {
309
+ border: 0;
310
+ font: 0/0 a;
311
+ text-shadow: none;
312
+ color: transparent;
313
+ background-color: transparent;
314
+ }
315
+
316
+ .top {
317
+ top: 0;
318
+ }
319
+
320
+ .animate.animate-rotate {
321
+ -webkit-animation: rotating 1s linear infinite;
322
+ animation: rotating 1s linear infinite;
323
+ }
324
+
325
+ .helper--kill-transitions {
326
+ -webkit-transition: none;
327
+ transition: none;
328
+ }
329
+
330
+ .helper--visually-hidden {
331
+ position: absolute !important;
332
+ clip: rect(1px, 1px, 1px, 1px) !important;
333
+ padding: 0 !important;
334
+ border: 0 !important;
335
+ height: 1px !important;
336
+ width: 1px !important;
337
+ overflow: hidden !important;
338
+ }
339
+
340
+ .body:hover .helper--visually-hidden a,
341
+ .body:hover .helper--visually-hidden input,
342
+ .body:hover .helper--visually-hidden button {
343
+ display: none !important;
344
+ }
345
+
346
+ .helper--visually-hidden-focusable {
347
+ position: absolute !important;
348
+ clip: rect(1px, 1px, 1px, 1px) !important;
349
+ padding: 0 !important;
350
+ border: 0 !important;
351
+ height: 1px !important;
352
+ width: 1px !important;
353
+ overflow: hidden !important;
354
+ }
355
+
356
+ .body:hover .helper--visually-hidden-focusable a,
357
+ .body:hover .helper--visually-hidden-focusable input,
358
+ .body:hover .helper--visually-hidden-focusable button {
359
+ display: none !important;
360
+ }
361
+
362
+ .helper--visually-hidden-focusable:active, .helper--visually-hidden-focusable:focus {
363
+ clip: auto !important;
364
+ height: auto !important;
365
+ margin: 0 !important;
366
+ overflow: visible !important;
367
+ width: auto !important;
368
+ }
369
+
370
+ .helper--overflow-hidden {
371
+ overflow: hidden !important;
372
+ max-height: 100vh !important;
373
+ }
374
+
375
+ .helper--pre-wrap {
376
+ white-space: pre-wrap;
377
+ }
378
+
379
+ .helper--scroll-lock {
380
+ overflow-y: scroll;
381
+ margin: 0;
382
+ }
383
+
384
+ .helper--scroll-lock #wrapper {
385
+ overflow: hidden;
386
+ height: 100%;
387
+ }
388
+
389
+ hr.helper--divider {
390
+ color: #ebeef0;
391
+ background: #ebeef0;
392
+ border: none;
393
+ height: 1px;
394
+ margin: 20px 0;
395
+ }
396
+
397
+ @font-face {
398
+ font-family: 'Golos-Bold';
399
+ src: url(/golos-bold.eot);
400
+ }
401
+
402
+ @font-face {
403
+ font-family: 'Golos-Bold';
404
+ src: url(/golos-bold.woff) format("woff"), url(/golos-bold.ttf) format("truetype");
405
+ font-weight: normal;
406
+ font-style: normal;
407
+ }
408
+
409
+ html {
410
+ font-size: 62.5%;
411
+ -webkit-text-size-adjust: 100%;
412
+ -ms-text-size-adjust: 100%;
413
+ text-size-adjust: 100%;
414
+ }
415
+
416
+ body {
417
+ line-height: 18px;
418
+ font-size: 13px;
419
+ color: #31373d;
420
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
421
+ text-rendering: optimizeLegibility;
422
+ }
423
+
424
+ strong {
425
+ font-weight: bold;
426
+ }
427
+
428
+ a {
429
+ text-decoration: none;
430
+ color: #479ccf;
431
+ cursor: pointer;
432
+ }
433
+
434
+ a:hover {
435
+ color: #4293c2;
436
+ text-decoration: underline;
437
+ }
438
+
439
+ a.is-disabled {
440
+ color: #95a7b7;
441
+ pointer-events: none;
442
+ }
443
+
444
+ h1, h2, h3, h4, h5, h6 {
445
+ color: #212529;
446
+ font-weight: 400;
447
+ margin: 0;
448
+ }
449
+
450
+ h1 {
451
+ font-size: 26px;
452
+ line-height: 1;
453
+ }
454
+
455
+ h2 {
456
+ font-size: 18px;
457
+ }
458
+
459
+ h3 {
460
+ font-size: 13px;
461
+ }
462
+
463
+ h4 {
464
+ font-size: 13px;
465
+ }
466
+
467
+ h5 {
468
+ font-size: 13px;
469
+ }
470
+
471
+ h6 {
472
+ font-size: 13px;
473
+ }
474
+
475
+ p {
476
+ margin: 0;
477
+ }
478
+
479
+ ul {
480
+ list-style: disc inside none;
481
+ }
482
+
483
+ ol {
484
+ list-style: decimal inside none;
485
+ }
486
+
487
+ ol[type='1'] {
488
+ list-style-type: decimal inside none;
489
+ }
490
+
491
+ ol[type='a'] {
492
+ list-style-type: lower-alpha inside none;
493
+ }
494
+
495
+ ol[type='A'] {
496
+ list-style-type: upper-alpha inside none;
497
+ }
498
+
499
+ ol[type='i'] {
500
+ list-style-type: lower-roman inside none;
501
+ }
502
+
503
+ ol[type='I'] {
504
+ list-style-type: upper-roman inside none;
505
+ }
506
+
507
+ li {
508
+ margin: 0;
509
+ }
510
+
511
+ dt {
512
+ font-weight: bold;
513
+ }
514
+
515
+ dd {
516
+ margin-left: 10px;
517
+ }
518
+
519
+ pre, code {
520
+ font-family: Monaco, Consolas, "Lucida Console", monospace;
521
+ }
522
+
523
+ pre {
524
+ font-size: 90%;
525
+ }
526
+
527
+ code {
528
+ font-size: 85%;
529
+ background: #ebeef0;
530
+ padding: 2px;
531
+ }
532
+
533
+ input {
534
+ font-size: 13px;
535
+ line-height: 18px;
536
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
537
+ }
538
+
539
+ del {
540
+ text-decoration: line-through;
541
+ }
542
+
543
+ address {
544
+ font-style: normal;
545
+ }
546
+
547
+ small {
548
+ color: #798c9c;
549
+ font-size: 11px;
550
+ }
551
+
552
+ .next-type--note {
553
+ font-style: italic;
554
+ font-size: 12px;
555
+ color: #95a7b7;
556
+ }
557
+
558
+ .type--no-margin {
559
+ margin: 0;
560
+ }
561
+
562
+ .type--margin-bottom {
563
+ margin-bottom: 5px;
564
+ }
565
+
566
+ .type--margin-left {
567
+ margin-left: 10px;
568
+ }
569
+
570
+ .type--centered {
571
+ text-align: center;
572
+ }
573
+
574
+ .type--right {
575
+ text-align: right;
576
+ }
577
+
578
+ .type--left {
579
+ text-align: left;
580
+ }
581
+
582
+ .type--breakword {
583
+ word-wrap: break-word;
584
+ word-break: break-word;
585
+ }
586
+
587
+ .type--light-weight {
588
+ font-weight: 300;
589
+ }
590
+
591
+ .type--semi-bold {
592
+ font-weight: 500;
593
+ }
594
+
595
+ .type--bold {
596
+ font-weight: 700;
597
+ }
598
+
599
+ .type--base {
600
+ font-size: 13px;
601
+ }
602
+
603
+ .type--danger {
604
+ color: #ff5d5d;
605
+ }
606
+
607
+ .type--warning {
608
+ color: #ff9517;
609
+ }
610
+
611
+ .type--success,
612
+ .type--blog-category,
613
+ a.type--blog-category:hover,
614
+ a.type--blog-category:active {
615
+ color: #96bf48;
616
+ }
617
+
618
+ .type--attention {
619
+ color: #d4a002;
620
+ }
621
+
622
+ .type--info {
623
+ color: #479ccf;
624
+ }
625
+
626
+ .type--white {
627
+ color: #ffffff;
628
+ }
629
+
630
+ .type--blue-lighter {
631
+ color: #cae9f7;
632
+ }
633
+
634
+ .type--strikethrough {
635
+ text-decoration: line-through;
636
+ }
637
+
638
+ .type--line-height-equal-to-font {
639
+ line-height: 1 !important;
640
+ }
641
+
642
+ .type--tight-spacing {
643
+ margin-bottom: -4px;
644
+ }
645
+
646
+ .type--subdued {
647
+ color: #798c9c;
648
+ }
649
+
650
+ a.type--subdued {
651
+ color: inherit;
652
+ text-decoration: underline;
653
+ }
654
+
655
+ a.type--subdued:hover {
656
+ color: #272c30;
657
+ }
658
+
659
+ .type--truncated {
660
+ white-space: nowrap;
661
+ overflow: hidden;
662
+ text-overflow: ellipsis;
663
+ max-width: 100%;
664
+ display: inline-block;
665
+ }
666
+
667
+ .type--truncated--block {
668
+ display: block;
669
+ }
670
+
671
+ .type--half-margin {
672
+ margin-bottom: 10px;
673
+ }
674
+
675
+ .type--half-margin-top {
676
+ margin-top: 10px;
677
+ }
678
+
679
+ .type--quarter-margin {
680
+ margin-bottom: 5px;
681
+ }
682
+
683
+ .type--number {
684
+ font-weight: 300;
685
+ font-size: 18px;
686
+ line-height: 1.2em;
687
+ }
688
+
689
+ .type--number--x-large {
690
+ font-size: 32px;
691
+ }
692
+
693
+ .type--number--large {
694
+ font-size: 24px;
695
+ }
696
+
697
+ .type--number--small {
698
+ font-weight: 400;
699
+ font-size: 15px;
700
+ }
701
+
702
+ .type--number--tiny {
703
+ font-weight: 400;
704
+ font-size: 13px;
705
+ }
706
+
707
+ .layout-content {
708
+ display: -webkit-box;
709
+ display: -webkit-flex;
710
+ display: -ms-flexbox;
711
+ display: flex;
712
+ }
713
+
714
+ .layout-content__sidebar {
715
+ padding: 20px;
716
+ -webkit-box-flex: 1;
717
+ -webkit-flex: 1 1 25%;
718
+ -ms-flex: 1 1 25%;
719
+ flex: 1 1 25%;
720
+ max-width: 25%;
721
+ }
722
+
723
+ .layout-content__main {
724
+ padding: 20px;
725
+ -webkit-box-flex: 1;
726
+ -webkit-flex: 1 1 0%;
727
+ -ms-flex: 1 1 0%;
728
+ flex: 1 1 0%;
729
+ }
730
+
731
+ .layout-content__first {
732
+ padding-right: 0;
733
+ }
734
+
735
+ .layout-content__no-padding {
736
+ padding: 0;
737
+ }
738
+
739
+ .layout-content--single-column {
740
+ display: block;
741
+ }
742
+
743
+ .layout-content--single-column > .layout-content__sidebar,
744
+ .layout-content--single-column > .layout-content__main {
745
+ max-width: 100%;
746
+ padding: 0 10px;
747
+ }
748
+
749
+ .layout-content--single-column > .layout-content__sidebar > .section-content > .next-grid,
750
+ .layout-content--single-column > .layout-content__main > .section-content > .next-grid {
751
+ width: 100%;
752
+ padding: 0;
753
+ }
754
+
755
+ .layout-content--single-column > .layout-content__sidebar > .section-content > .next-grid > .next-grid__cell,
756
+ .layout-content--single-column > .layout-content__main > .section-content > .next-grid > .next-grid__cell {
757
+ padding-top: 0;
758
+ }
759
+
760
+ .layout-content--single-column .layout-content__first {
761
+ padding: 0 0 10px 0;
762
+ }
763
+
764
+ .layout-content--single-column .section-summary {
765
+ padding: 30px 20px 10px 30px !important;
766
+ }
767
+
768
+ .next-grid--equal-height-cells > .next-grid__cell, .next-grid__cell--full-height {
769
+ -webkit-align-self: stretch;
770
+ -ms-flex-item-align: stretch;
771
+ align-self: stretch;
772
+ display: -webkit-box;
773
+ display: -webkit-flex;
774
+ display: -ms-flexbox;
775
+ display: flex;
776
+ -webkit-box-orient: vertical;
777
+ -webkit-box-direction: normal;
778
+ -webkit-flex-direction: column;
779
+ -ms-flex-direction: column;
780
+ flex-direction: column;
781
+ }
782
+
783
+ .next-grid--equal-height-cells > .next-grid__cell > *, .next-grid__cell--full-height > * {
784
+ -webkit-box-flex: 1;
785
+ -webkit-flex-grow: 1;
786
+ -ms-flex-positive: 1;
787
+ flex-grow: 1;
788
+ }
789
+
790
+ .next-grid {
791
+ display: -webkit-box;
792
+ display: -webkit-flex;
793
+ display: -ms-flexbox;
794
+ display: flex;
795
+ width: calc(100% - 20px);
796
+ margin: 0 auto;
797
+ box-sizing: border-box;
798
+ padding-top: 10px;
799
+ }
800
+
801
+ .next-grid ~ .next-grid {
802
+ padding-top: 0;
803
+ }
804
+
805
+ .next-grid:last-of-type {
806
+ padding-bottom: 10px;
807
+ }
808
+
809
+ .next-grid.next-grid--single-column {
810
+ display: block;
811
+ }
812
+
813
+ .next-grid.next-grid--single-column > .next-grid__cell {
814
+ max-width: 100%;
815
+ padding-left: 0;
816
+ padding-right: 0;
817
+ }
818
+
819
+ .next-grid.next-grid--channel-single-column {
820
+ display: block;
821
+ }
822
+
823
+ .next-grid.next-grid--channel-single-column > .next-grid__cell {
824
+ max-width: 100%;
825
+ }
826
+
827
+ .next-grid__cell > .next-grid {
828
+ width: 100%;
829
+ padding: 0;
830
+ }
831
+
832
+ .next-grid__cell > .next-grid .next-grid__cell:first-child {
833
+ padding-left: 0;
834
+ }
835
+
836
+ .next-grid__cell > .next-grid .next-grid__cell:last-child {
837
+ padding-right: 0;
838
+ }
839
+
840
+ .next-grid--no-padding {
841
+ width: 100%;
842
+ }
843
+
844
+ .next-grid--no-padding:first-of-type, .next-grid--no-padding:last-of-type {
845
+ padding: 0;
846
+ }
847
+
848
+ .next-grid--no-padding > .next-grid__cell {
849
+ padding: 0;
850
+ }
851
+
852
+ .next-grid--no-outside-padding {
853
+ width: 100%;
854
+ padding: 0;
855
+ }
856
+
857
+ .next-grid--no-outside-padding:last-of-type {
858
+ padding: 0;
859
+ }
860
+
861
+ .next-grid--no-outside-padding > .next-grid__cell {
862
+ padding-top: 0;
863
+ padding-bottom: 0;
864
+ }
865
+
866
+ .next-grid--no-outside-padding > .next-grid__cell:first-of-type {
867
+ padding-left: 0;
868
+ }
869
+
870
+ .next-grid--no-outside-padding > .next-grid__cell:last-of-type {
871
+ padding-right: 0;
872
+ }
873
+
874
+ .next-grid--no-outside-padding + .next-grid--no-outside-padding {
875
+ margin-top: 20px;
876
+ }
877
+
878
+ .next-grid--no-outside-padding + * > .next-grid--no-outside-padding:first-child {
879
+ margin-top: 20px;
880
+ }
881
+
882
+ .next-grid--compact > .next-grid__cell {
883
+ padding-left: 5px;
884
+ padding-right: 5px;
885
+ }
886
+
887
+ .next-grid--more-compact > .next-grid__cell {
888
+ padding-left: 3px;
889
+ padding-right: 3px;
890
+ }
891
+
892
+ .next-grid--column {
893
+ -webkit-box-orient: vertical;
894
+ -webkit-box-direction: normal;
895
+ -webkit-flex-direction: column;
896
+ -ms-flex-direction: column;
897
+ flex-direction: column;
898
+ }
899
+
900
+ .next-grid--column > .next-grid__cell {
901
+ padding: 10px 0;
902
+ -webkit-box-flex: 1;
903
+ -webkit-flex: 1 1 auto;
904
+ -ms-flex: 1 1 auto;
905
+ flex: 1 1 auto;
906
+ }
907
+
908
+ .next-grid--column > .next-grid__cell:first-child {
909
+ padding-top: 0;
910
+ }
911
+
912
+ .next-grid--column > .next-grid__cell:last-child {
913
+ padding-bottom: 0;
914
+ }
915
+
916
+ .next-grid--column.next-grid--compact > .next-grid__cell {
917
+ padding: 5px 0;
918
+ }
919
+
920
+ .next-grid--column.next-grid--compact > .next-grid__cell:first-child {
921
+ padding-top: 0;
922
+ }
923
+
924
+ .next-grid--column.next-grid--compact > .next-grid__cell:last-child {
925
+ padding-bottom: 0;
926
+ }
927
+
928
+ .next-grid--column.next-grid--no-padding > .next-grid__cell {
929
+ padding: 0;
930
+ }
931
+
932
+ .next-grid--column.next-grid--more-compact > .next-grid__cell {
933
+ padding: 3px 0;
934
+ }
935
+
936
+ .next-grid--no-horizontal-padding {
937
+ width: 100%;
938
+ }
939
+
940
+ .next-grid--no-horizontal-padding > .next-grid__cell:first-of-type {
941
+ padding-left: 0;
942
+ }
943
+
944
+ .next-grid--no-horizontal-padding > .next-grid__cell:last-of-type {
945
+ padding-right: 0;
946
+ }
947
+
948
+ .next-grid--condensed-page-spacing {
949
+ width: 100%;
950
+ padding: 0;
951
+ }
952
+
953
+ .next-grid--vertically-centered, .next-grid--center-both {
954
+ -webkit-box-align: center;
955
+ -webkit-align-items: center;
956
+ -ms-flex-align: center;
957
+ align-items: center;
958
+ }
959
+
960
+ .next-grid--aligned-to-end {
961
+ -webkit-box-align: end;
962
+ -webkit-align-items: flex-end;
963
+ -ms-flex-align: end;
964
+ align-items: flex-end;
965
+ }
966
+
967
+ .next-grid--aligned-to-baseline {
968
+ -webkit-box-align: baseline;
969
+ -webkit-align-items: baseline;
970
+ -ms-flex-align: baseline;
971
+ align-items: baseline;
972
+ }
973
+
974
+ .next-grid--right-aligned {
975
+ -webkit-box-pack: end;
976
+ -webkit-justify-content: flex-end;
977
+ -ms-flex-pack: end;
978
+ justify-content: flex-end;
979
+ }
980
+
981
+ .next-grid--center-aligned, .next-grid--center-both {
982
+ -webkit-box-pack: center;
983
+ -webkit-justify-content: center;
984
+ -ms-flex-pack: center;
985
+ justify-content: center;
986
+ }
987
+
988
+ .next-grid--space-between {
989
+ -webkit-box-pack: justify;
990
+ -webkit-justify-content: space-between;
991
+ -ms-flex-pack: justify;
992
+ justify-content: space-between;
993
+ }
994
+
995
+ .next-grid--multi-row-special {
996
+ -webkit-flex-wrap: wrap;
997
+ -ms-flex-wrap: wrap;
998
+ flex-wrap: wrap;
999
+ }
1000
+
1001
+ .next-grid--multi-row-special.next-grid--single-column {
1002
+ margin: 20px auto;
1003
+ }
1004
+
1005
+ .next-grid--multi-row {
1006
+ -webkit-flex-wrap: wrap;
1007
+ -ms-flex-wrap: wrap;
1008
+ flex-wrap: wrap;
1009
+ }
1010
+
1011
+ .next-grid--full-height {
1012
+ height: 100vh;
1013
+ }
1014
+
1015
+ .next-grid--margin-top {
1016
+ margin-top: 5px;
1017
+ }
1018
+
1019
+ .next-grid--margin-bottom {
1020
+ margin-bottom: 5px;
1021
+ }
1022
+
1023
+ .next-grid__cell {
1024
+ -webkit-box-flex: 1;
1025
+ -webkit-flex: 1 1 0%;
1026
+ -ms-flex: 1 1 0%;
1027
+ flex: 1 1 0%;
1028
+ padding: 10px;
1029
+ box-sizing: border-box;
1030
+ max-width: 100%;
1031
+ min-width: 0;
1032
+ }
1033
+
1034
+ .next-grid__cell--double {
1035
+ -webkit-box-flex: 2;
1036
+ -webkit-flex-grow: 2;
1037
+ -ms-flex-positive: 2;
1038
+ flex-grow: 2;
1039
+ }
1040
+
1041
+ .next-grid__cell--full {
1042
+ -webkit-box-flex: 0;
1043
+ -webkit-flex: 0 0 100%;
1044
+ -ms-flex: 0 0 100%;
1045
+ flex: 0 0 100%;
1046
+ max-width: 100%;
1047
+ }
1048
+
1049
+ .next-grid__cell--half {
1050
+ -webkit-box-flex: 0;
1051
+ -webkit-flex: 0 0 50%;
1052
+ -ms-flex: 0 0 50%;
1053
+ flex: 0 0 50%;
1054
+ max-width: 50%;
1055
+ }
1056
+
1057
+ .next-grid__cell--third {
1058
+ -webkit-box-flex: 0;
1059
+ -webkit-flex: 0 0 33.333%;
1060
+ -ms-flex: 0 0 33.333%;
1061
+ flex: 0 0 33.333%;
1062
+ max-width: 33.333%;
1063
+ }
1064
+
1065
+ .next-grid__cell--two-fifths {
1066
+ -webkit-box-flex: 0;
1067
+ -webkit-flex: 0 0 40%;
1068
+ -ms-flex: 0 0 40%;
1069
+ flex: 0 0 40%;
1070
+ max-width: 40%;
1071
+ }
1072
+
1073
+ .next-grid__cell--quarter {
1074
+ -webkit-box-flex: 0;
1075
+ -webkit-flex: 0 0 25%;
1076
+ -ms-flex: 0 0 25%;
1077
+ flex: 0 0 25%;
1078
+ max-width: 25%;
1079
+ }
1080
+
1081
+ .next-grid__cell--three-quarter {
1082
+ -webkit-box-flex: 0;
1083
+ -webkit-flex: 0 0 75%;
1084
+ -ms-flex: 0 0 75%;
1085
+ flex: 0 0 75%;
1086
+ }
1087
+
1088
+ .next-grid__cell--fifth {
1089
+ -webkit-box-flex: 0;
1090
+ -webkit-flex: 0 0 20%;
1091
+ -ms-flex: 0 0 20%;
1092
+ flex: 0 0 20%;
1093
+ max-width: 20%;
1094
+ }
1095
+
1096
+ .next-grid__cell--no-flex {
1097
+ -webkit-box-flex: 0;
1098
+ -webkit-flex: 0 0 auto;
1099
+ -ms-flex: 0 0 auto;
1100
+ flex: 0 0 auto;
1101
+ }
1102
+
1103
+ .next-grid__cell--vertically-centered {
1104
+ -webkit-align-self: center;
1105
+ -ms-flex-item-align: center;
1106
+ align-self: center;
1107
+ }
1108
+
1109
+ .next-grid__cell--aligned-to-end {
1110
+ -webkit-align-self: flex-end;
1111
+ -ms-flex-item-align: end;
1112
+ align-self: flex-end;
1113
+ }
1114
+
1115
+ .next-grid__cell--divider {
1116
+ position: relative;
1117
+ }
1118
+
1119
+ .next-grid__cell--divider::after, .next-grid__cell--divider::before {
1120
+ content: '';
1121
+ margin-left: -20px;
1122
+ position: absolute;
1123
+ top: 15px;
1124
+ bottom: 15px;
1125
+ width: 1px;
1126
+ background: #d3dbe2;
1127
+ }
1128
+
1129
+ .next-grid__cell--divider::after {
1130
+ right: 10px;
1131
+ }
1132
+
1133
+ .next-grid--inner-grid.next-grid--single-column .next-grid__cell--hide-on-mobile {
1134
+ display: none;
1135
+ }
1136
+
1137
+ .wrappable {
1138
+ display: -webkit-box;
1139
+ display: -webkit-flex;
1140
+ display: -ms-flexbox;
1141
+ display: flex;
1142
+ -webkit-flex-wrap: wrap;
1143
+ -ms-flex-wrap: wrap;
1144
+ flex-wrap: wrap;
1145
+ margin-top: -20px;
1146
+ margin-left: -20px;
1147
+ }
1148
+
1149
+ .wrappable__item {
1150
+ -webkit-box-flex: 1;
1151
+ -webkit-flex: 1 1 auto;
1152
+ -ms-flex: 1 1 auto;
1153
+ flex: 1 1 auto;
1154
+ margin-top: 20px;
1155
+ margin-left: 20px;
1156
+ }
1157
+
1158
+ .wrappable--no-spacing {
1159
+ margin-top: 0;
1160
+ }
1161
+
1162
+ .wrappable--no-spacing > .wrappable__item {
1163
+ margin-top: 0;
1164
+ }
1165
+
1166
+ .wrappable--half-spacing {
1167
+ margin-top: -10px;
1168
+ }
1169
+
1170
+ .wrappable--half-spacing > .wrappable__item {
1171
+ margin-top: 10px;
1172
+ }
1173
+
1174
+ .wrappable--double-spacing {
1175
+ margin-top: -40px;
1176
+ }
1177
+
1178
+ .wrappable--double-spacing > .wrappable__item {
1179
+ margin-top: 40px;
1180
+ }
1181
+
1182
+ .wrappable--vertically-centered {
1183
+ -webkit-box-align: center;
1184
+ -webkit-align-items: center;
1185
+ -ms-flex-align: center;
1186
+ align-items: center;
1187
+ }
1188
+
1189
+ .wrappable--bottom-aligned {
1190
+ -webkit-box-align: end;
1191
+ -webkit-align-items: flex-end;
1192
+ -ms-flex-align: end;
1193
+ align-items: flex-end;
1194
+ }
1195
+
1196
+ .wrappable--right-aligned {
1197
+ -webkit-box-pack: end;
1198
+ -webkit-justify-content: flex-end;
1199
+ -ms-flex-pack: end;
1200
+ justify-content: flex-end;
1201
+ }
1202
+
1203
+ .wrappable--half-horizontal-spacing {
1204
+ margin-left: -10px;
1205
+ }
1206
+
1207
+ .wrappable--half-horizontal-spacing > .wrappable__item {
1208
+ margin-left: 10px;
1209
+ }
1210
+
1211
+ .wrappable--quartered-horizontal-spacing {
1212
+ margin-left: -5px;
1213
+ }
1214
+
1215
+ .wrappable--quartered-horizontal-spacing > .wrappable__item {
1216
+ margin-left: 5px;
1217
+ }
1218
+
1219
+ .wrappable__item--no-flex {
1220
+ -webkit-box-flex: 0;
1221
+ -webkit-flex-grow: 0;
1222
+ -ms-flex-positive: 0;
1223
+ flex-grow: 0;
1224
+ }
1225
+
1226
+ .wrappable__item--flex-shrink {
1227
+ -webkit-flex-shrink: 1;
1228
+ -ms-flex-negative: 1;
1229
+ flex-shrink: 1;
1230
+ }
1231
+
1232
+ .ui-layout {
1233
+ max-width: 1036px;
1234
+ margin: 20px auto 0;
1235
+ }
1236
+
1237
+ .ui-layout--full-width {
1238
+ max-width: none;
1239
+ }
1240
+
1241
+ .ui-layout + .ui-layout {
1242
+ margin-top: 0;
1243
+ }
1244
+
1245
+ .ui-layout:not(:last-of-type) {
1246
+ margin-bottom: 20px;
1247
+ }
1248
+
1249
+ .ui-layout__sections {
1250
+ display: -webkit-box;
1251
+ display: -webkit-flex;
1252
+ display: -ms-flexbox;
1253
+ display: flex;
1254
+ -webkit-flex-wrap: wrap;
1255
+ -ms-flex-wrap: wrap;
1256
+ flex-wrap: wrap;
1257
+ -webkit-box-pack: center;
1258
+ -webkit-justify-content: center;
1259
+ -ms-flex-pack: center;
1260
+ justify-content: center;
1261
+ margin-top: -20px;
1262
+ margin-left: -20px;
1263
+ padding-top: 0;
1264
+ padding-left: 20px;
1265
+ padding-right: 20px;
1266
+ }
1267
+
1268
+ .ui-layout__sections .next-card {
1269
+ margin-left: -20px;
1270
+ margin-right: -20px;
1271
+ border-radius: 0;
1272
+ }
1273
+
1274
+ @media screen and (min-width: 720px) {
1275
+ .ui-layout .next-card {
1276
+ margin-left: 0;
1277
+ margin-right: 0;
1278
+ border-radius: 3px;
1279
+ }
1280
+ }
1281
+
1282
+ .ui-layout__section {
1283
+ display: -webkit-box;
1284
+ display: -webkit-flex;
1285
+ display: -ms-flexbox;
1286
+ display: flex;
1287
+ -webkit-box-flex: 1;
1288
+ -webkit-flex: 1 1 100%;
1289
+ -ms-flex: 1 1 100%;
1290
+ flex: 1 1 100%;
1291
+ -webkit-flex-wrap: wrap;
1292
+ -ms-flex-wrap: wrap;
1293
+ flex-wrap: wrap;
1294
+ -webkit-align-content: flex-start;
1295
+ -ms-flex-line-pack: start;
1296
+ align-content: flex-start;
1297
+ min-width: 0;
1298
+ max-width: 100%;
1299
+ margin-top: -20px;
1300
+ margin-left: -20px;
1301
+ padding-top: 20px;
1302
+ padding-left: 20px;
1303
+ }
1304
+
1305
+ .ui-layout__section--primary {
1306
+ -webkit-box-flex: 2;
1307
+ -webkit-flex: 2 1 480px;
1308
+ -ms-flex: 2 1 480px;
1309
+ flex: 2 1 480px;
1310
+ }
1311
+
1312
+ .ui-layout__section--secondary {
1313
+ -webkit-box-flex: 1;
1314
+ -webkit-flex: 1 0 240px;
1315
+ -ms-flex: 1 0 240px;
1316
+ flex: 1 0 240px;
1317
+ }
1318
+
1319
+ .ui-layout__item {
1320
+ -webkit-box-flex: 1;
1321
+ -webkit-flex: 1 1 100%;
1322
+ -ms-flex: 1 1 100%;
1323
+ flex: 1 1 100%;
1324
+ min-width: 0;
1325
+ max-width: 100%;
1326
+ padding-top: 20px;
1327
+ padding-left: 20px;
1328
+ }
1329
+
1330
+ .btn-default, .btn {
1331
+ background-color: #ffffff;
1332
+ color: #479ccf;
1333
+ border: 1px solid #d3dbe2;
1334
+ }
1335
+
1336
+ .btn-default:hover, .btn:hover, .btn-default:focus, .btn:focus, .btn-default.focus, .focus.btn, .btn-default:active, .btn:active, .btn-default.active, .active.btn {
1337
+ border: 1px solid #d3dbe2;
1338
+ background-color: #f5f6f7;
1339
+ color: #479ccf;
1340
+ text-decoration: none;
1341
+ }
1342
+
1343
+ .btn-default:active, .btn:active, .btn-default.active, .active.btn, .btn-default.rte-command-active, .rte-command-active.btn {
1344
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1) inset;
1345
+ background: #f5f6f7;
1346
+ }
1347
+
1348
+ .btn-primary {
1349
+ background-color: #479ccf;
1350
+ color: #ffffff;
1351
+ border: 1px solid #479ccf;
1352
+ }
1353
+
1354
+ .btn-primary:hover, .btn-primary:focus, .btn-primary.focus, .btn-primary:active, .btn-primary.active {
1355
+ border: 1px solid #4293c2;
1356
+ background-color: #4293c2;
1357
+ color: #ffffff;
1358
+ text-decoration: none;
1359
+ }
1360
+
1361
+ .btn-primary:active, .btn-primary.active, .btn-primary.rte-command-active {
1362
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1363
+ background: #4293c2;
1364
+ }
1365
+
1366
+ .btn-destroy {
1367
+ background-color: #ffffff;
1368
+ color: #479ccf;
1369
+ border: 1px solid #d3dbe2;
1370
+ }
1371
+
1372
+ .btn-destroy:hover, .btn-destroy:focus, .btn-destroy.focus, .btn-destroy:active, .btn-destroy.active {
1373
+ border: 1px solid #d3dbe2;
1374
+ background-color: #ff5d5d;
1375
+ color: #479ccf;
1376
+ text-decoration: none;
1377
+ }
1378
+
1379
+ .btn-destroy:active, .btn-destroy.active, .btn-destroy.rte-command-active {
1380
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1381
+ background: #ff5d5d;
1382
+ }
1383
+
1384
+ .btn-destroy-no-hover {
1385
+ background-color: #ff5d5d;
1386
+ color: #ffffff;
1387
+ border: 1px solid #ff5d5d;
1388
+ }
1389
+
1390
+ .btn-destroy-no-hover:hover, .btn-destroy-no-hover:focus, .btn-destroy-no-hover.focus, .btn-destroy-no-hover:active, .btn-destroy-no-hover.active {
1391
+ border: 1px solid #d83e3e;
1392
+ background-color: #d83e3e;
1393
+ color: #ffffff;
1394
+ text-decoration: none;
1395
+ }
1396
+
1397
+ .btn-destroy-no-hover:active, .btn-destroy-no-hover.active, .btn-destroy-no-hover.rte-command-active {
1398
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1399
+ background: #d83e3e;
1400
+ }
1401
+
1402
+ .btn-disabled {
1403
+ background-color: #fafbfc;
1404
+ color: #c3cfd8;
1405
+ border: 1px solid #d3dbe2;
1406
+ }
1407
+
1408
+ .btn-disabled:hover, .btn-disabled:focus, .btn-disabled.focus, .btn-disabled:active, .btn-disabled.active {
1409
+ border: 1px solid #d3dbe2;
1410
+ background-color: #fafbfc;
1411
+ color: #c3cfd8;
1412
+ text-decoration: none;
1413
+ }
1414
+
1415
+ .btn-disabled:active, .btn-disabled.active, .btn-disabled.rte-command-active {
1416
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1) inset;
1417
+ background: #fafbfc;
1418
+ }
1419
+
1420
+ .btn-purchase {
1421
+ background-color: #96bf48;
1422
+ color: #ffffff;
1423
+ border: 1px solid #96bf48;
1424
+ }
1425
+
1426
+ .btn-purchase:hover, .btn-purchase:focus, .btn-purchase.focus, .btn-purchase:active, .btn-purchase.active {
1427
+ border: 1px solid #7ba232;
1428
+ background-color: #7ba232;
1429
+ color: #ffffff;
1430
+ text-decoration: none;
1431
+ }
1432
+
1433
+ .btn-purchase:active, .btn-purchase.active, .btn-purchase.rte-command-active {
1434
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1435
+ background: #7ba232;
1436
+ }
1437
+
1438
+ .btn--facebook {
1439
+ background-color: #3b5998;
1440
+ color: #ffffff;
1441
+ border: 1px solid #3b5998;
1442
+ }
1443
+
1444
+ .btn--facebook:hover, .btn--facebook:focus, .btn--facebook.focus, .btn--facebook:active, .btn--facebook.active {
1445
+ border: 1px solid #344e86;
1446
+ background-color: #344e86;
1447
+ color: #ffffff;
1448
+ text-decoration: none;
1449
+ }
1450
+
1451
+ .btn--facebook:active, .btn--facebook.active, .btn--facebook.rte-command-active {
1452
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1453
+ background: #344e86;
1454
+ }
1455
+
1456
+ .btn--twitter {
1457
+ background-color: #55acee;
1458
+ color: #ffffff;
1459
+ border: 1px solid #55acee;
1460
+ }
1461
+
1462
+ .btn--twitter:hover, .btn--twitter:focus, .btn--twitter.focus, .btn--twitter:active, .btn--twitter.active {
1463
+ border: 1px solid #3ea1ec;
1464
+ background-color: #3ea1ec;
1465
+ color: #ffffff;
1466
+ text-decoration: none;
1467
+ }
1468
+
1469
+ .btn--twitter:active, .btn--twitter.active, .btn--twitter.rte-command-active {
1470
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1471
+ background: #3ea1ec;
1472
+ }
1473
+
1474
+ .btn-warning {
1475
+ background-color: transparent;
1476
+ color: #6f4f0c;
1477
+ border: 1px solid #6f4f0c;
1478
+ }
1479
+
1480
+ .btn-warning:hover, .btn-warning:focus, .btn-warning.focus, .btn-warning:active, .btn-warning.active {
1481
+ border: 1px solid #6f4f0c;
1482
+ background-color: rgba(111, 79, 12, 0.1);
1483
+ color: #6f4f0c;
1484
+ text-decoration: none;
1485
+ }
1486
+
1487
+ .btn-warning:active, .btn-warning.active, .btn-warning.rte-command-active {
1488
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1489
+ background: rgba(111, 79, 12, 0.1);
1490
+ }
1491
+
1492
+ .btn--outline {
1493
+ background-color: transparent;
1494
+ color: #31373d;
1495
+ border: 1px solid #31373d;
1496
+ }
1497
+
1498
+ .btn--outline:hover, .btn--outline:focus, .btn--outline.focus, .btn--outline:active, .btn--outline.active {
1499
+ border: 1px solid #31373d;
1500
+ background-color: rgba(49, 55, 61, 0.1);
1501
+ color: #31373d;
1502
+ text-decoration: none;
1503
+ }
1504
+
1505
+ .btn--outline:active, .btn--outline.active, .btn--outline.rte-command-active {
1506
+ box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2) inset;
1507
+ background: rgba(49, 55, 61, 0.1);
1508
+ }
1509
+
1510
+ .btn {
1511
+ box-sizing: border-box;
1512
+ cursor: pointer;
1513
+ display: inline-block;
1514
+ padding: 8.5px 15px;
1515
+ margin: 0;
1516
+ border-radius: 3px;
1517
+ font-size: 13px;
1518
+ line-height: 1;
1519
+ height: auto;
1520
+ white-space: nowrap;
1521
+ text-transform: none;
1522
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
1523
+ font-weight: normal;
1524
+ position: relative;
1525
+ vertical-align: middle;
1526
+ -webkit-user-select: none;
1527
+ -moz-user-select: none;
1528
+ -ms-user-select: none;
1529
+ user-select: none;
1530
+ -webkit-appearance: none;
1531
+ -webkit-tap-highlight-color: transparent;
1532
+ }
1533
+
1534
+ .btn.has-loading::before {
1535
+ background-position: 50% 50% !important;
1536
+ background-repeat: no-repeat !important;
1537
+ content: "";
1538
+ display: none;
1539
+ height: 100%;
1540
+ left: 0;
1541
+ position: absolute;
1542
+ top: 0;
1543
+ width: 100%;
1544
+ }
1545
+
1546
+ .btn:not(.btn-disabled).is-loading, .btn:not(.btn-disabled).is-loading:hover {
1547
+ border: 1px solid #d3dbe2;
1548
+ cursor: default;
1549
+ color: transparent;
1550
+ text-shadow: none;
1551
+ }
1552
+
1553
+ .btn:not(.btn-disabled).is-loading::before, .btn:not(.btn-disabled).is-loading:hover::before {
1554
+ display: block;
1555
+ }
1556
+
1557
+ .btn:disabled {
1558
+ cursor: default;
1559
+ }
1560
+
1561
+ .btn::-moz-focus-inner {
1562
+ border: 0;
1563
+ padding: 0;
1564
+ }
1565
+
1566
+ .btn .next-icon {
1567
+ margin-top: -13px;
1568
+ margin-bottom: -13px;
1569
+ }
1570
+
1571
+ .btn .ico {
1572
+ vertical-align: middle;
1573
+ margin-top: -17px;
1574
+ margin-bottom: -13px;
1575
+ }
1576
+
1577
+ .btn.attached-to-right {
1578
+ border-radius: 0 3px 3px 0;
1579
+ position: relative;
1580
+ left: -2px;
1581
+ }
1582
+
1583
+ .btn-large {
1584
+ font-size: 16px;
1585
+ padding: 13px 30px;
1586
+ margin: 15px 0;
1587
+ }
1588
+
1589
+ .btn-slim {
1590
+ padding: 6.5px 10px;
1591
+ }
1592
+
1593
+ .btn-extra-slim {
1594
+ font-size: 11px;
1595
+ padding: 3.5px 6px;
1596
+ }
1597
+
1598
+ .btn.btn--full-width {
1599
+ width: 100%;
1600
+ line-height: 1.3;
1601
+ white-space: normal;
1602
+ padding: 13px 15px;
1603
+ }
1604
+
1605
+ .btn-destroy:hover, .btn-destroy:focus, .btn-destroy:active {
1606
+ border: 1px solid #ff5d5d;
1607
+ color: #ffffff;
1608
+ }
1609
+
1610
+ .btn-disabled.btn-disabled,
1611
+ input[type="submit"].btn-disabled,
1612
+ .btn.disabled {
1613
+ cursor: default;
1614
+ box-shadow: none;
1615
+ background: #fafbfc;
1616
+ color: #c3cfd8;
1617
+ border: 1px solid #d3dbe2;
1618
+ }
1619
+
1620
+ .btn-disabled.btn-disabled.btn--outline,
1621
+ input[type="submit"].btn-disabled.btn--outline,
1622
+ .btn.disabled.btn--outline {
1623
+ background: transparent;
1624
+ color: #95a7b7;
1625
+ border-color: #95a7b7;
1626
+ }
1627
+
1628
+ .btn-more::before {
1629
+ content: "•••";
1630
+ text-indent: 0;
1631
+ display: block;
1632
+ font-size: 13px;
1633
+ }
1634
+
1635
+ .btn-skip {
1636
+ z-index: 226;
1637
+ border-radius: 0;
1638
+ left: 0;
1639
+ min-width: 230px;
1640
+ padding: 20px 0 !important;
1641
+ text-align: center;
1642
+ top: 0;
1643
+ }
1644
+
1645
+ .btn--icon {
1646
+ padding-left: 9px;
1647
+ padding-right: 9px;
1648
+ }
1649
+
1650
+ .btn--icon.btn-large {
1651
+ padding-left: 13px;
1652
+ padding-right: 13px;
1653
+ }
1654
+
1655
+ .btn--icon.btn-slim {
1656
+ padding-left: 7px;
1657
+ padding-right: 7px;
1658
+ }
1659
+
1660
+ .btn--icon--tiny {
1661
+ padding: 1px;
1662
+ }
1663
+
1664
+ .btn--plain,
1665
+ .btn--link {
1666
+ background-color: transparent !important;
1667
+ border: none;
1668
+ cursor: pointer;
1669
+ color: #479ccf;
1670
+ text-decoration: none;
1671
+ vertical-align: initial;
1672
+ }
1673
+
1674
+ .btn--plain:hover, .btn--plain:focus, .btn--plain:active,
1675
+ .btn--link:hover,
1676
+ .btn--link:focus,
1677
+ .btn--link:active {
1678
+ background: transparent;
1679
+ box-shadow: none;
1680
+ border: none;
1681
+ }
1682
+
1683
+ .btn--plain:hover,
1684
+ .btn--link:hover {
1685
+ color: #4293c2;
1686
+ text-decoration: underline;
1687
+ }
1688
+
1689
+ .btn--link {
1690
+ height: auto;
1691
+ padding: 0;
1692
+ line-height: 18px;
1693
+ white-space: normal;
1694
+ text-align: left;
1695
+ }
1696
+
1697
+ .btn--plain--flush-right {
1698
+ margin-right: -15px;
1699
+ }
1700
+
1701
+ .btn--link.btn-disabled,
1702
+ .btn--plain.btn-disabled {
1703
+ border: none;
1704
+ color: #c3cfd8;
1705
+ }
1706
+
1707
+ .btn--link.btn-disabled:hover, .btn--link.btn-disabled:active, .btn--link.btn-disabled:focus,
1708
+ .btn--plain.btn-disabled:hover,
1709
+ .btn--plain.btn-disabled:active,
1710
+ .btn--plain.btn-disabled:focus {
1711
+ text-decoration: none;
1712
+ }
1713
+
1714
+ .segmented {
1715
+ padding: 0;
1716
+ line-height: 22px;
1717
+ font-size: 0;
1718
+ margin: 0;
1719
+ display: inline-block;
1720
+ vertical-align: middle;
1721
+ }
1722
+
1723
+ .segmented > li {
1724
+ position: relative;
1725
+ }
1726
+
1727
+ .segmented > li .btn {
1728
+ display: inline-block;
1729
+ position: static;
1730
+ border-radius: 0px 0px 0px 0px;
1731
+ border-left-width: 0 !important;
1732
+ }
1733
+
1734
+ .segmented > li .btn.btn-primary {
1735
+ border: 1px solid #479ccf;
1736
+ border-right-color: #3e89b5;
1737
+ }
1738
+
1739
+ .segmented > li {
1740
+ list-style-type: none;
1741
+ display: inline-block;
1742
+ margin: 0;
1743
+ }
1744
+
1745
+ .segmented > li:first-child .btn, .segmented > li.first-child .btn {
1746
+ border-radius: 3px 0px 0px 3px;
1747
+ border-left-width: 1px !important;
1748
+ }
1749
+
1750
+ .segmented > li:last-child .btn {
1751
+ border-radius: 0px 3px 3px 0px;
1752
+ }
1753
+
1754
+ .segmented > li:last-child .btn.btn-primary {
1755
+ border-right-color: #479ccf;
1756
+ }
1757
+
1758
+ .segmented > li.middle-child > .btn {
1759
+ border-radius: 0px;
1760
+ }
1761
+
1762
+ .segmented > li:only-child > .btn, .segmented > li.only-child > .btn {
1763
+ border-radius: 3px 3px 3px 3px;
1764
+ border-left-width: 1px !important;
1765
+ }
1766
+
1767
+ .segmented .btn.active {
1768
+ color: #c3cfd8;
1769
+ }
1770
+
1771
+ .segmented .btn.active.btn-primary {
1772
+ color: #ffffff;
1773
+ }
1774
+
1775
+ .segmented .btn.active:hover {
1776
+ cursor: default;
1777
+ }
1778
+
1779
+ .buttons {
1780
+ text-align: right;
1781
+ padding: 10px;
1782
+ background: #fafbfc;
1783
+ border-top: 1px solid #d3dbe2;
1784
+ border-bottom: 1px solid #d3dbe2;
1785
+ }
1786
+
1787
+ .buttons.slim {
1788
+ padding: 5px 10px;
1789
+ }
1790
+
1791
+ .buttons.slim .btn {
1792
+ padding: 6px 10px;
1793
+ }
1794
+
1795
+ .buttons.plain {
1796
+ background: none;
1797
+ padding: 13px 0;
1798
+ border-bottom: none;
1799
+ border-top: 1px solid #d3dbe2;
1800
+ }
1801
+
1802
+ .buttons.connected {
1803
+ background: #fafbfc;
1804
+ border: 1px solid #d3dbe2;
1805
+ border-top: none;
1806
+ }
1807
+
1808
+ .buttons .text-action {
1809
+ line-height: 32px;
1810
+ }
1811
+
1812
+ .button-group {
1813
+ display: -webkit-box;
1814
+ display: -webkit-flex;
1815
+ display: -ms-flexbox;
1816
+ display: flex;
1817
+ -webkit-flex-wrap: wrap;
1818
+ -ms-flex-wrap: wrap;
1819
+ flex-wrap: wrap;
1820
+ margin-right: -10px;
1821
+ margin-top: -10px;
1822
+ -webkit-box-align: center;
1823
+ -webkit-align-items: center;
1824
+ -ms-flex-align: center;
1825
+ align-items: center;
1826
+ }
1827
+
1828
+ .button-group .btn {
1829
+ margin-right: 10px;
1830
+ margin-top: 10px;
1831
+ }
1832
+
1833
+ .button-group .button-group {
1834
+ margin-right: 0;
1835
+ }
1836
+
1837
+ .button-group--right-aligned {
1838
+ -webkit-box-pack: end;
1839
+ -webkit-justify-content: flex-end;
1840
+ -ms-flex-pack: end;
1841
+ justify-content: flex-end;
1842
+ }
1843
+
1844
+ .btn-separate {
1845
+ margin-left: 5px;
1846
+ }
1847
+
1848
+ .btn-separate-left {
1849
+ margin-right: 5px;
1850
+ }
1851
+
1852
+ .btn-separate-top {
1853
+ margin-top: 10px;
1854
+ }
1855
+
1856
+ .ui-banner {
1857
+ position: relative;
1858
+ display: -webkit-box;
1859
+ display: -webkit-flex;
1860
+ display: -ms-flexbox;
1861
+ display: flex;
1862
+ margin: 10px 10px 0;
1863
+ background-color: #d3dbe2;
1864
+ border: 1px solid rgba(0, 0, 0, 0.1);
1865
+ border-radius: 3px;
1866
+ }
1867
+
1868
+ .ui-banner .next-heading + * {
1869
+ margin-top: 10px;
1870
+ }
1871
+
1872
+ .ui-banner a:not(.btn),
1873
+ .ui-banner .btn--link {
1874
+ color: inherit;
1875
+ text-decoration: underline;
1876
+ }
1877
+
1878
+ .ui-banner a:not(.btn):hover, .ui-banner a:not(.btn):focus,
1879
+ .ui-banner .btn--link:hover,
1880
+ .ui-banner .btn--link:focus {
1881
+ color: #272c30;
1882
+ }
1883
+
1884
+ .next-card .ui-banner,
1885
+ .modal .ui-banner,
1886
+ .ui-layout .ui-banner,
1887
+ .ui-modal .ui-banner {
1888
+ margin: 0;
1889
+ }
1890
+
1891
+ .next-card *:not(.hide) ~ .ui-banner,
1892
+ .next-card .ui-banner:not(.hide) ~ *,
1893
+ .modal *:not(.hide) ~ .ui-banner,
1894
+ .modal .ui-banner:not(.hide) ~ *,
1895
+ .ui-layout *:not(.hide) ~ .ui-banner,
1896
+ .ui-layout .ui-banner:not(.hide) ~ *,
1897
+ .ui-modal *:not(.hide) ~ .ui-banner,
1898
+ .ui-modal .ui-banner:not(.hide) ~ * {
1899
+ margin-top: 20px;
1900
+ }
1901
+
1902
+ .ui-banner__ribbon {
1903
+ -webkit-box-flex: 0;
1904
+ -webkit-flex: 0 0 auto;
1905
+ -ms-flex: 0 0 auto;
1906
+ flex: 0 0 auto;
1907
+ display: -webkit-box;
1908
+ display: -webkit-flex;
1909
+ display: -ms-flexbox;
1910
+ display: flex;
1911
+ -webkit-box-align: center;
1912
+ -webkit-align-items: center;
1913
+ -ms-flex-align: center;
1914
+ align-items: center;
1915
+ padding: 15px;
1916
+ padding-left: 20px;
1917
+ max-height: 32px;
1918
+ }
1919
+
1920
+ .ui-banner__ribbon > .next-icon {
1921
+ fill: #798c9c;
1922
+ }
1923
+
1924
+ .ui-banner__content {
1925
+ -webkit-box-flex: 1;
1926
+ -webkit-flex: 1 1 0%;
1927
+ -ms-flex: 1 1 0%;
1928
+ flex: 1 1 0%;
1929
+ -webkit-align-self: center;
1930
+ -ms-flex-item-align: center;
1931
+ align-self: center;
1932
+ padding: 15px 0;
1933
+ padding-right: 20px;
1934
+ }
1935
+
1936
+ .ui-banner__content + .ui-banner__dismissible-action {
1937
+ margin-left: -20px;
1938
+ }
1939
+
1940
+ .ui-banner__content p + *, .ui-banner__content ul + *, .ui-banner__content a + * {
1941
+ margin-top: 10px;
1942
+ }
1943
+
1944
+ .ui-banner__dismissible-action {
1945
+ -webkit-box-flex: 0;
1946
+ -webkit-flex: 0 0 auto;
1947
+ -ms-flex: 0 0 auto;
1948
+ flex: 0 0 auto;
1949
+ }
1950
+
1951
+ .ui-banner__section:not(:first-of-type) {
1952
+ padding-top: 20px;
1953
+ }
1954
+
1955
+ .ui-banner__section:not(:last-of-type) {
1956
+ padding-bottom: 20px;
1957
+ }
1958
+
1959
+ .ui-banner__section + .ui-banner__section {
1960
+ border-top: 1px solid rgba(49, 55, 61, 0.6);
1961
+ }
1962
+
1963
+ .ui-banner + .next-grid--no-padding {
1964
+ margin-top: 20px;
1965
+ }
1966
+
1967
+ .ui-banner--status-info {
1968
+ background-color: #cae9f7;
1969
+ }
1970
+
1971
+ .ui-banner--status-info .ui-banner__ribbon > .next-icon {
1972
+ fill: #4fb0e8;
1973
+ }
1974
+
1975
+ .ui-banner--status-success {
1976
+ background-color: #e5fabc;
1977
+ }
1978
+
1979
+ .ui-banner--status-success .ui-banner__ribbon > .next-icon {
1980
+ fill: #7ba232;
1981
+ }
1982
+
1983
+ .ui-banner--status-warning {
1984
+ background-color: #fff7b2;
1985
+ }
1986
+
1987
+ .ui-banner--status-warning .ui-banner__ribbon > .next-icon {
1988
+ fill: #d4a002;
1989
+ }
1990
+
1991
+ .ui-banner--status-error {
1992
+ background-color: #ff9797;
1993
+ }
1994
+
1995
+ .ui-banner--status-error .ui-banner__ribbon > .next-icon {
1996
+ fill: #d83e3e;
1997
+ }
1998
+
1999
+ .ui-banner--default-vertical-spacing {
2000
+ margin-top: 20px;
2001
+ }
2002
+
2003
+ .ui-banner--default-horizontal-spacing {
2004
+ margin-right: 20px;
2005
+ margin-left: 20px;
2006
+ }
2007
+
2008
+ .description-list {
2009
+ margin: 0;
2010
+ padding: 0;
2011
+ }
2012
+
2013
+ .description-list dt {
2014
+ font-weight: bold;
2015
+ margin-bottom: 5px;
2016
+ margin-top: 10px;
2017
+ }
2018
+
2019
+ .description-list dt:first-child {
2020
+ margin-top: 0;
2021
+ }
2022
+
2023
+ .description-list dd {
2024
+ margin: 0;
2025
+ padding: 0;
2026
+ }
2027
+
2028
+ .description-list + * {
2029
+ margin-top: 20px;
2030
+ }
2031
+
2032
+ .description-list--bullet-separated {
2033
+ display: -webkit-box;
2034
+ display: -webkit-flex;
2035
+ display: -ms-flexbox;
2036
+ display: flex;
2037
+ }
2038
+
2039
+ .description-list--bullet-separated dt {
2040
+ position: absolute !important;
2041
+ clip: rect(1px, 1px, 1px, 1px) !important;
2042
+ padding: 0 !important;
2043
+ border: 0 !important;
2044
+ height: 1px !important;
2045
+ width: 1px !important;
2046
+ overflow: hidden !important;
2047
+ }
2048
+
2049
+ .body:hover .description-list--bullet-separated dt a,
2050
+ .body:hover .description-list--bullet-separated dt input,
2051
+ .body:hover .description-list--bullet-separated dt button {
2052
+ display: none !important;
2053
+ }
2054
+
2055
+ .description-list--bullet-separated dd::after {
2056
+ content: '\00B7';
2057
+ margin: 0 5px;
2058
+ }
2059
+
2060
+ .description-list--bullet-separated dd:last-of-type::after {
2061
+ content: '';
2062
+ margin: 0;
2063
+ }
2064
+
2065
+ .description-list--hidden-titles dt {
2066
+ position: absolute !important;
2067
+ clip: rect(1px, 1px, 1px, 1px) !important;
2068
+ padding: 0 !important;
2069
+ border: 0 !important;
2070
+ height: 1px !important;
2071
+ width: 1px !important;
2072
+ overflow: hidden !important;
2073
+ }
2074
+
2075
+ .body:hover .description-list--hidden-titles dt a,
2076
+ .body:hover .description-list--hidden-titles dt input,
2077
+ .body:hover .description-list--hidden-titles dt button {
2078
+ display: none !important;
2079
+ }
2080
+
2081
+ .description-list--specifications {
2082
+ display: -webkit-box;
2083
+ display: -webkit-flex;
2084
+ display: -ms-flexbox;
2085
+ display: flex;
2086
+ -webkit-flex-wrap: wrap;
2087
+ -ms-flex-wrap: wrap;
2088
+ flex-wrap: wrap;
2089
+ }
2090
+
2091
+ .description-list--specifications dt {
2092
+ -webkit-flex-basis: 25%;
2093
+ -ms-flex-preferred-size: 25%;
2094
+ flex-basis: 25%;
2095
+ word-break: normal;
2096
+ font-weight: 400;
2097
+ color: #798c9c;
2098
+ }
2099
+
2100
+ .description-list--specifications dd {
2101
+ -webkit-flex-basis: 75%;
2102
+ -ms-flex-preferred-size: 75%;
2103
+ flex-basis: 75%;
2104
+ box-sizing: border-box;
2105
+ padding-left: 10px;
2106
+ word-break: break-word;
2107
+ }
2108
+
2109
+ .description-list--specifications dt, .description-list--specifications dd {
2110
+ margin: 0;
2111
+ padding-top: 10px;
2112
+ padding-bottom: 10px;
2113
+ border-bottom: 1px solid #ebeef0;
2114
+ }
2115
+
2116
+ .description-list--specifications dt:last-of-type, .description-list--specifications dd:last-of-type {
2117
+ border-bottom: none;
2118
+ padding-bottom: 0;
2119
+ }
2120
+
2121
+ .description-list--specifications dt:first-of-type, .description-list--specifications dd:first-of-type {
2122
+ padding-top: 0;
2123
+ }
2124
+
2125
+ .description-list--specifications dd > dl {
2126
+ display: -webkit-box;
2127
+ display: -webkit-flex;
2128
+ display: -ms-flexbox;
2129
+ display: flex;
2130
+ -webkit-flex-wrap: wrap;
2131
+ -ms-flex-wrap: wrap;
2132
+ flex-wrap: wrap;
2133
+ padding-left: 10px;
2134
+ }
2135
+
2136
+ .description-list--specifications .description-list__heading {
2137
+ -webkit-flex-basis: 100%;
2138
+ -ms-flex-preferred-size: 100%;
2139
+ flex-basis: 100%;
2140
+ border-bottom: none;
2141
+ padding-bottom: 0;
2142
+ color: #31373d;
2143
+ font-weight: 400;
2144
+ font-size: 15px;
2145
+ }
2146
+
2147
+ .description-list--specifications .description-list__nested {
2148
+ -webkit-flex-basis: 100%;
2149
+ -ms-flex-preferred-size: 100%;
2150
+ flex-basis: 100%;
2151
+ }
2152
+
2153
+ .next-card {
2154
+ background-color: #ffffff;
2155
+ border-radius: 3px;
2156
+ box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
2157
+ color: #31373d;
2158
+ }
2159
+
2160
+ .next-card ~ .next-card {
2161
+ margin-top: 20px;
2162
+ }
2163
+
2164
+ .next-card--aside {
2165
+ background-color: #f5f6f7;
2166
+ }
2167
+
2168
+ .next-card--aside-lighter {
2169
+ background-color: #fafbfc;
2170
+ }
2171
+
2172
+ .next-card--plain {
2173
+ box-shadow: none;
2174
+ }
2175
+
2176
+ .next-card--hide-overflow {
2177
+ overflow: hidden;
2178
+ }
2179
+
2180
+ .next-card--stacked {
2181
+ margin: 0;
2182
+ box-shadow: none;
2183
+ border-radius: 0;
2184
+ }
2185
+
2186
+ .next-card--stacked ~ .next-card--stacked {
2187
+ margin-top: 0;
2188
+ }
2189
+
2190
+ .next-card--preserve-first-and-last-section-spacing .next-card__section--half-spacing:first-of-type {
2191
+ padding-top: 20px;
2192
+ }
2193
+
2194
+ .next-card--preserve-first-and-last-section-spacing .next-card__section--half-spacing:last-of-type {
2195
+ padding-bottom: 20px;
2196
+ }
2197
+
2198
+ .next-card--sticky {
2199
+ position: -webkit-sticky;
2200
+ position: sticky;
2201
+ top: 76px;
2202
+ }
2203
+
2204
+ .next-card--js-sticky {
2205
+ position: fixed;
2206
+ top: 56px;
2207
+ margin-top: 20px;
2208
+ }
2209
+
2210
+ .next-card__header {
2211
+ padding: 20px 20px 0;
2212
+ }
2213
+
2214
+ .next-card__header .next-heading {
2215
+ margin-bottom: 0;
2216
+ }
2217
+
2218
+ .next-card__footer {
2219
+ padding: 0 20px 20px;
2220
+ }
2221
+
2222
+ .next-card__section {
2223
+ padding: 20px;
2224
+ }
2225
+
2226
+ .next-card__section ~ .next-card__section {
2227
+ border-top: 1px solid #ebeef0;
2228
+ }
2229
+
2230
+ .next-card__section ~ .next-card__section.next-card__section--no-border {
2231
+ border-top: 0;
2232
+ }
2233
+
2234
+ .next-card__section:first-child {
2235
+ border-radius: 3px 3px 0 0;
2236
+ }
2237
+
2238
+ .next-card__section:last-child {
2239
+ border-radius: 0 0 3px 3px;
2240
+ }
2241
+
2242
+ .next-card__section--no-vertical-spacing {
2243
+ padding-top: 0;
2244
+ padding-bottom: 0;
2245
+ }
2246
+
2247
+ .next-card__section--no-vertical-spacing + .next-card__section {
2248
+ border-top: none;
2249
+ }
2250
+
2251
+ .next-card__section--no-horizontal-spacing {
2252
+ padding-left: 0;
2253
+ padding-right: 0;
2254
+ }
2255
+
2256
+ .next-card__section--half-spacing {
2257
+ padding-top: 10px;
2258
+ padding-bottom: 10px;
2259
+ }
2260
+
2261
+ .next-card__section--half-spacing.next-card__header {
2262
+ padding-bottom: 0;
2263
+ }
2264
+
2265
+ .next-card__section--half-spacing.next-card__footer {
2266
+ padding-top: 0;
2267
+ }
2268
+
2269
+ .next-card__section--three-quarter-spacing {
2270
+ padding-top: 15px;
2271
+ padding-bottom: 15px;
2272
+ }
2273
+
2274
+ .next-card__section--double-spacing {
2275
+ padding-top: 40px;
2276
+ padding-bottom: 40px;
2277
+ }
2278
+
2279
+ .next-card__section--no-padding {
2280
+ padding: 0;
2281
+ }
2282
+
2283
+ .next-card__section--subdued {
2284
+ background-color: #f5f6f7;
2285
+ }
2286
+
2287
+ .next-card__section--more-subdued {
2288
+ background-color: #ebeef0;
2289
+ }
2290
+
2291
+ .next-card__section--less-subdued {
2292
+ background-color: #fafbfc;
2293
+ }
2294
+
2295
+ .next-card__section--accentuated {
2296
+ background-color: #479ccf;
2297
+ }
2298
+
2299
+ .next-card__section--accentuated .next-heading {
2300
+ color: #ffffff;
2301
+ }
2302
+
2303
+ .next-card__section--bordered {
2304
+ border-top: 1px solid #ebeef0;
2305
+ }
2306
+
2307
+ .next-card__section--no-bottom-spacing {
2308
+ padding-bottom: 0;
2309
+ }
2310
+
2311
+ .next-card__section--no-bottom-spacing + .next-card__section {
2312
+ border-top: 0;
2313
+ }
2314
+
2315
+ .next-card__section--no-top-spacing {
2316
+ padding-top: 0;
2317
+ }
2318
+
2319
+ .next-card__section ~ .next-card__section--no-top-spacing {
2320
+ border-top: 0;
2321
+ }
2322
+
2323
+ .next-card__section--border-left {
2324
+ border-left: 1px solid #ebeef0;
2325
+ }
2326
+
2327
+ .next-card__section--border-bottom {
2328
+ border-bottom: 1px solid #ebeef0;
2329
+ }
2330
+
2331
+ .next-card__section--centered {
2332
+ text-align: center;
2333
+ }
2334
+
2335
+ .next-card__section--sello-only {
2336
+ position: relative;
2337
+ }
2338
+
2339
+ .next-card__section--sello-only::after {
2340
+ content: "";
2341
+ position: absolute;
2342
+ top: 0;
2343
+ right: 0;
2344
+ height: 100%;
2345
+ width: 10px;
2346
+ background-color: #2cc699;
2347
+ }
2348
+
2349
+ .next-card__section--sello-only:last-child::after {
2350
+ border-radius: 0 0 3px 0;
2351
+ }
2352
+
2353
+ .next-card__section--sello-only:first-child::after {
2354
+ border-radius: 0 3px 0 0;
2355
+ }
2356
+
2357
+ .next-card--with-full-height-image {
2358
+ position: relative;
2359
+ padding-left: 250px;
2360
+ max-width: calc(100% - 250px);
2361
+ }
2362
+
2363
+ .next-card--with-full-height-image .next-card__image {
2364
+ position: absolute;
2365
+ top: 0;
2366
+ bottom: 0;
2367
+ left: 0;
2368
+ width: 250px;
2369
+ background-size: cover;
2370
+ background-position: center;
2371
+ border-top-left-radius: 3px;
2372
+ border-bottom-left-radius: 3px;
2373
+ }
2374
+
2375
+ .page--condense-spacing .next-card--with-full-height-image {
2376
+ padding-left: 0;
2377
+ max-width: 100%;
2378
+ }
2379
+
2380
+ .page--condense-spacing .next-card--with-full-height-image .next-card__image {
2381
+ position: static;
2382
+ display: block;
2383
+ width: 100%;
2384
+ height: 120px;
2385
+ border-radius: 0;
2386
+ }
2387
+
2388
+ .next-card__section__separator {
2389
+ margin: 20px auto;
2390
+ background-color: #ebeef0;
2391
+ }
2392
+
2393
+ .next-card__section__separator--no-margin {
2394
+ margin: 0;
2395
+ }
2396
+
2397
+ .next-card__separator {
2398
+ margin: 0;
2399
+ height: 1px;
2400
+ background: #ebeef0;
2401
+ }
2402
+
2403
+ .next-card__separator--thick {
2404
+ height: 5px;
2405
+ }
2406
+
2407
+ .next-card__separator--inline {
2408
+ margin: 10px 20px;
2409
+ }
2410
+
2411
+ .next-card--top-rounded-corners {
2412
+ border-radius: 3px 3px 0 0 !important;
2413
+ }
2414
+
2415
+ .next-card--bottom-rounded-corners {
2416
+ border-radius: 0 0 3px 3px !important;
2417
+ }
2418
+
2419
+ .next-card--all-rounded-corners {
2420
+ border-radius: 3px !important;
2421
+ }
2422
+
2423
+ .next-card--left-rounded-corners {
2424
+ border-radius: 3px 0 0 3px;
2425
+ }
2426
+
2427
+ .next-card--right-rounded-corners {
2428
+ border-radius: 0 3px 3px 0;
2429
+ }
2430
+
2431
+ .next-card--top-right-rounded-corner {
2432
+ border-top-right-radius: 3px;
2433
+ }
2434
+
2435
+ .next-card--bottom-right-rounded-corner {
2436
+ border-bottom-right-radius: 3px;
2437
+ }
2438
+
2439
+ .next-card--top-left-rounded-corner {
2440
+ border-top-left-radius: 3px;
2441
+ }
2442
+
2443
+ .next-card--bottom-left-rounded-corner {
2444
+ border-bottom-left-radius: 3px;
2445
+ }
2446
+
2447
+ .next-card__ribbon {
2448
+ background: #fafbfc;
2449
+ border-right: solid 1px #ebeef0;
2450
+ border-radius: 3px 0 0 3px;
2451
+ padding: 20px;
2452
+ display: block;
2453
+ }
2454
+
2455
+ .next-card__ribbon--warning {
2456
+ background: #ffd117;
2457
+ border-right: solid 1px rgba(212, 160, 2, 0.25);
2458
+ }
2459
+
2460
+ .next-card__ribbon--vertically-centered {
2461
+ display: -webkit-box;
2462
+ display: -webkit-flex;
2463
+ display: -ms-flexbox;
2464
+ display: flex;
2465
+ -webkit-box-orient: vertical;
2466
+ -webkit-box-direction: normal;
2467
+ -webkit-flex-direction: column;
2468
+ -ms-flex-direction: column;
2469
+ flex-direction: column;
2470
+ -webkit-box-pack: center;
2471
+ -webkit-justify-content: center;
2472
+ -ms-flex-pack: center;
2473
+ justify-content: center;
2474
+ }
2475
+
2476
+ .next-ui .next-text-slate {
2477
+ color: #31373d;
2478
+ }
2479
+
2480
+ .next-card__header--fully-padded {
2481
+ padding-bottom: 20px;
2482
+ }
2483
+
2484
+ .next-card--semi-transparent {
2485
+ background-color: rgba(255, 255, 255, 0.9);
2486
+ }
2487
+
2488
+ .next-card__channel-image {
2489
+ margin-right: 20px;
2490
+ }
2491
+
2492
+ .next-grid--single-column .next-card__channel-image {
2493
+ display: none;
2494
+ }
2495
+
2496
+ form {
2497
+ margin: 0;
2498
+ padding: 0;
2499
+ }
2500
+
2501
+ form.button_to {
2502
+ display: inline-block;
2503
+ }
2504
+
2505
+ label {
2506
+ display: block;
2507
+ color: #31373d;
2508
+ margin-bottom: 5px;
2509
+ font-weight: bold;
2510
+ }
2511
+
2512
+ label.helper {
2513
+ display: inline;
2514
+ font-weight: 400;
2515
+ font-size: 11px;
2516
+ }
2517
+
2518
+ label.error {
2519
+ color: #c03939;
2520
+ }
2521
+
2522
+ label.error + input, label.error + textarea {
2523
+ border-color: #cc4c3f;
2524
+ }
2525
+
2526
+ label.plain {
2527
+ font-weight: 400;
2528
+ }
2529
+
2530
+ p.error {
2531
+ color: #c03939;
2532
+ }
2533
+
2534
+ .align-with-input {
2535
+ line-height: 28px;
2536
+ }
2537
+
2538
+ .between-inputs {
2539
+ margin: 0 6px;
2540
+ }
2541
+
2542
+ input, textarea {
2543
+ box-sizing: border-box;
2544
+ width: 100%;
2545
+ max-width: 100%;
2546
+ vertical-align: top;
2547
+ height: 28px;
2548
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2549
+ font-size: 13px;
2550
+ padding: 4px;
2551
+ margin: 0;
2552
+ border: 1px solid #d3dbe2;
2553
+ display: inline-block;
2554
+ color: #222;
2555
+ border-radius: 3px;
2556
+ }
2557
+
2558
+ input:focus, input.focus, textarea:focus, textarea.focus {
2559
+ border: 1px solid #479ccf;
2560
+ outline: none;
2561
+ }
2562
+
2563
+ input.placeholder, textarea.placeholder {
2564
+ color: #c3cfd8;
2565
+ }
2566
+
2567
+ input.success, textarea.success {
2568
+ border: 1px solid #acba8c;
2569
+ }
2570
+
2571
+ input.error, textarea.error {
2572
+ border-color: #cc4c3f;
2573
+ background-color: #FFFCFC;
2574
+ }
2575
+
2576
+ input.large, textarea.large {
2577
+ height: 32px;
2578
+ }
2579
+
2580
+ input.slim, textarea.slim {
2581
+ padding: 0 4px;
2582
+ height: 24px;
2583
+ }
2584
+
2585
+ input[class*="span"], textarea[class*="span"] {
2586
+ margin: 0 0 5px 0;
2587
+ float: none;
2588
+ padding: 4px;
2589
+ max-width: none;
2590
+ }
2591
+
2592
+ input.input-percentage, textarea.input-percentage {
2593
+ width: 45px;
2594
+ }
2595
+
2596
+ input.filter-input, textarea.filter-input {
2597
+ padding-left: 28px;
2598
+ background-image: url(/admin/icon-sprite.png);
2599
+ background-repeat: no-repeat;
2600
+ background-position: -5px -962px;
2601
+ }
2602
+
2603
+ input.w-tiny, textarea.w-tiny {
2604
+ width: 60px;
2605
+ }
2606
+
2607
+ input.w-micro, textarea.w-micro {
2608
+ width: 35px;
2609
+ }
2610
+
2611
+ input.w-small, textarea.w-small {
2612
+ width: 120px;
2613
+ }
2614
+
2615
+ input.w-half, textarea.w-half {
2616
+ width: 50%;
2617
+ }
2618
+
2619
+ input.w-big, textarea.w-big {
2620
+ width: 170px;
2621
+ }
2622
+
2623
+ input::-ms-clear, textarea::-ms-clear {
2624
+ display: none;
2625
+ }
2626
+
2627
+ input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
2628
+ color: #c3cfd8;
2629
+ opacity: 1;
2630
+ }
2631
+
2632
+ input::-moz-placeholder, textarea::-moz-placeholder {
2633
+ color: #c3cfd8;
2634
+ opacity: 1;
2635
+ }
2636
+
2637
+ input:-ms-input-placeholder, textarea:-ms-input-placeholder {
2638
+ color: #c3cfd8;
2639
+ opacity: 1;
2640
+ }
2641
+
2642
+ input::placeholder, textarea::placeholder {
2643
+ color: #c3cfd8;
2644
+ opacity: 1;
2645
+ }
2646
+
2647
+ input[disabled], textarea[disabled] {
2648
+ border: 1px solid #ebeef0;
2649
+ background: #fafbfc;
2650
+ color: #c3cfd8;
2651
+ }
2652
+
2653
+ .field_with_errors {
2654
+ display: inline;
2655
+ }
2656
+
2657
+ .field_with_errors input, .field_with_errors textarea {
2658
+ border-color: #cc4c3f;
2659
+ background-color: #fef6f5;
2660
+ }
2661
+
2662
+ input.error, select.error, textarea.error {
2663
+ -webkit-animation: fieldErrors 0.25s linear;
2664
+ animation: fieldErrors 0.25s linear;
2665
+ }
2666
+
2667
+ input[type=checkbox], input[type=radio] {
2668
+ height: auto;
2669
+ line-height: 1;
2670
+ width: auto;
2671
+ max-width: none;
2672
+ margin: 0 5px 5px 0;
2673
+ border: none;
2674
+ padding: 0;
2675
+ vertical-align: baseline;
2676
+ }
2677
+
2678
+ input[type=checkbox]:focus, input[type=radio]:focus {
2679
+ outline: 2px auto #479ccf;
2680
+ }
2681
+
2682
+ input[type=file] {
2683
+ width: auto;
2684
+ max-width: none;
2685
+ cursor: pointer;
2686
+ border: none;
2687
+ box-shadow: none;
2688
+ padding: 0;
2689
+ margin: 0;
2690
+ }
2691
+
2692
+ input[type=file]:focus {
2693
+ outline: none;
2694
+ border: none;
2695
+ }
2696
+
2697
+ input[type=submit],
2698
+ input[type=button] {
2699
+ width: auto;
2700
+ max-width: none;
2701
+ cursor: pointer;
2702
+ }
2703
+
2704
+ input[type=number] {
2705
+ width: 60px;
2706
+ }
2707
+
2708
+ input[type=number].w-currency {
2709
+ width: 90px;
2710
+ }
2711
+
2712
+ input[type=number].no-spinbox::-webkit-inner-spin-button, input[type=number].no-spinbox::-webkit-outer-spin-button {
2713
+ -webkit-appearance: none;
2714
+ margin: 0;
2715
+ }
2716
+
2717
+ input[type=number].no-spinbox {
2718
+ -moz-appearance: textfield;
2719
+ }
2720
+
2721
+ input[type=search] {
2722
+ -webkit-appearance: none;
2723
+ }
2724
+
2725
+ textarea {
2726
+ min-height: 72px;
2727
+ line-height: 20px;
2728
+ -webkit-transition: min-height 0.15s;
2729
+ transition: min-height 0.15s;
2730
+ }
2731
+
2732
+ textarea.tall {
2733
+ min-height: 180px;
2734
+ }
2735
+
2736
+ textarea.is-expanded {
2737
+ min-height: 240px;
2738
+ }
2739
+
2740
+ select {
2741
+ margin: 0;
2742
+ font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
2743
+ font-size: 13px;
2744
+ display: inline-block;
2745
+ color: #222;
2746
+ vertical-align: top;
2747
+ height: 28px;
2748
+ line-height: 28px;
2749
+ padding: 4px 2px 2px 2px;
2750
+ border: 1px solid #ccc;
2751
+ border-radius: 1px;
2752
+ max-width: 100%;
2753
+ }
2754
+
2755
+ select.error {
2756
+ border-color: #cc4c3f;
2757
+ background-color: #FFFCFC;
2758
+ }
2759
+
2760
+ select:focus, select.focus {
2761
+ outline: none;
2762
+ border: 1px solid #479ccf;
2763
+ }
2764
+
2765
+ select.full-width {
2766
+ width: 100%;
2767
+ }
2768
+
2769
+ select[class*="span"] {
2770
+ margin: 0 0 5px 0;
2771
+ float: none;
2772
+ padding: 4px 2px 2px 2px;
2773
+ max-width: none;
2774
+ }
2775
+
2776
+ select[disabled] {
2777
+ background-color: #fafafa;
2778
+ background-image: url(/admin/diagonal-line-bg.png);
2779
+ border-color: #ddd;
2780
+ color: #999;
2781
+ }
2782
+
2783
+ .selectContainerStyled {
2784
+ display: inline;
2785
+ position: relative;
2786
+ }
2787
+
2788
+ .selectContainerStyled::before {
2789
+ content: "";
2790
+ width: 16px;
2791
+ height: 16px;
2792
+ display: block;
2793
+ position: absolute;
2794
+ right: 6px;
2795
+ top: 1px;
2796
+ background-image: url(/admin/ico-sprite-small.png);
2797
+ background-position: 0 -160px;
2798
+ z-index: 2;
2799
+ }
2800
+
2801
+ .selectContainerStyled select::-ms-expand {
2802
+ display: none;
2803
+ }
2804
+
2805
+ .radio-group input[type="radio"] {
2806
+ float: left;
2807
+ margin-top: 3px;
2808
+ }
2809
+
2810
+ .radio-group label {
2811
+ display: table-cell;
2812
+ }
2813
+
2814
+ .attach-to-field {
2815
+ box-sizing: border-box;
2816
+ width: 100%;
2817
+ position: relative;
2818
+ font-size: 13px;
2819
+ padding: 7px 10px;
2820
+ border: 1px solid #ccc;
2821
+ background: #fafafa;
2822
+ border-top: none;
2823
+ border-radius: 0 0 3px 3px;
2824
+ }
2825
+
2826
+ .ui-autocomplete {
2827
+ padding: 0;
2828
+ list-style: none;
2829
+ background-color: #ffffff;
2830
+ border: 1px solid #ccc;
2831
+ width: 345px !important;
2832
+ max-height: 200px;
2833
+ overflow-y: scroll;
2834
+ z-index: 9999;
2835
+ }
2836
+
2837
+ .ui-autocomplete .ui-menu-item a {
2838
+ border-top: 1px solid #e6e6e6;
2839
+ display: block;
2840
+ padding: 4px 6px;
2841
+ cursor: pointer;
2842
+ }
2843
+
2844
+ .ui-autocomplete .ui-menu-item:first-child a {
2845
+ border-top: none;
2846
+ }
2847
+
2848
+ .ui-autocomplete .ui-menu-item a.ui-state-hover, .ui-autocomplete .ui-menu-item a.ui-state-focus {
2849
+ background-color: #EFEFEF;
2850
+ }
2851
+
2852
+ .add-on {
2853
+ background: #fafafa;
2854
+ color: #666;
2855
+ border: 1px solid #ccc;
2856
+ display: inline-block;
2857
+ font-size: 13px;
2858
+ line-height: 18px;
2859
+ height: 18px;
2860
+ padding: 4px;
2861
+ }
2862
+
2863
+ .add-on input {
2864
+ margin-left: 0;
2865
+ margin-right: 0;
2866
+ }
2867
+
2868
+ .add-on.before {
2869
+ position: relative;
2870
+ margin-right: -7px;
2871
+ border-radius: 3px 0 0 3px;
2872
+ }
2873
+
2874
+ .add-on.before.is-connected {
2875
+ margin: 0;
2876
+ border-right: none;
2877
+ }
2878
+
2879
+ .add-on.after {
2880
+ position: relative;
2881
+ left: -7px;
2882
+ border-radius: 0 3px 3px 0;
2883
+ }
2884
+
2885
+ .add-on.add-on-handle {
2886
+ border-right: 0;
2887
+ border-radius: 3px 0 0 3px;
2888
+ }
2889
+
2890
+ .add-on.add-on-select {
2891
+ -moz-appearance: none;
2892
+ -webkit-appearance: none;
2893
+ margin: 0 0 0 -1px;
2894
+ padding-right: 28px;
2895
+ background-image: url(/admin/icon-sprite.png);
2896
+ background-position: 140px -411px;
2897
+ background-repeat: no-repeat;
2898
+ text-indent: 0.01px;
2899
+ border-radius: 0 3px 3px 0;
2900
+ width: 175px;
2901
+ height: 28px;
2902
+ }
2903
+
2904
+ span.arrow {
2905
+ line-height: 28px;
2906
+ background-image: url(/admin/icon-sprite.png);
2907
+ background-repeat: no-repeat;
2908
+ background-position: -5px -2367px;
2909
+ padding: 0 13px;
2910
+ }
2911
+
2912
+ .date-selector-item {
2913
+ display: inline-block;
2914
+ line-height: 28px;
2915
+ }
2916
+
2917
+ .input-date {
2918
+ min-width: 130px;
2919
+ max-width: 130px;
2920
+ }
2921
+
2922
+ .input-time {
2923
+ width: 130px;
2924
+ }
2925
+
2926
+ .input-has-icon {
2927
+ display: inline-block;
2928
+ position: relative;
2929
+ }
2930
+
2931
+ .input-has-icon .ico {
2932
+ position: absolute;
2933
+ top: 50%;
2934
+ left: 6px;
2935
+ margin-top: -7px;
2936
+ }
2937
+
2938
+ .input-has-icon input[type=text] {
2939
+ padding-left: 24px;
2940
+ margin-bottom: 0;
2941
+ margin-left: 0;
2942
+ }
2943
+
2944
+ .styled-file-input {
2945
+ cursor: pointer;
2946
+ }
2947
+
2948
+ .styled-file-input .btn, .styled-file-input .btn--plain {
2949
+ position: relative;
2950
+ overflow: hidden;
2951
+ }
2952
+
2953
+ .styled-file-input .btn > span, .styled-file-input .btn--plain > span {
2954
+ color: #479ccf;
2955
+ }
2956
+
2957
+ .styled-file-input .btn > label, .styled-file-input .btn--plain > label {
2958
+ margin: 0;
2959
+ color: inherit;
2960
+ font-weight: inherit;
2961
+ }
2962
+
2963
+ .styled-file-input .btn-primary > span {
2964
+ color: #ffffff;
2965
+ }
2966
+
2967
+ .styled-file-input input[type=file] {
2968
+ position: absolute;
2969
+ filter: alpha(opacity=0);
2970
+ opacity: 0;
2971
+ font-size: 100px;
2972
+ top: 0;
2973
+ left: 0;
2974
+ width: 100%;
2975
+ height: 100%;
2976
+ cursor: pointer;
2977
+ }
2978
+
2979
+ .buttons .styled-file-input {
2980
+ display: inline-block;
2981
+ }
2982
+
2983
+ .has-search-icon {
2984
+ background-image: url(/admin/icon-sprite.png);
2985
+ background-position: -2px -962px;
2986
+ background-repeat: no-repeat;
2987
+ padding-left: 32px !important;
2988
+ }
2989
+
2990
+ .secure-input-container {
2991
+ position: relative;
2992
+ }
2993
+
2994
+ .secure-input-icon {
2995
+ position: absolute;
2996
+ top: 6px;
2997
+ right: 6px;
2998
+ }
2999
+
3000
+ .secure-input-icon-large {
3001
+ top: 8px;
3002
+ }
3003
+
3004
+ .choicelist li {
3005
+ position: relative;
3006
+ padding-left: 23px;
3007
+ margin-bottom: 8px;
3008
+ }
3009
+
3010
+ .choicelist li:last-child {
3011
+ margin-bottom: 0;
3012
+ }
3013
+
3014
+ .choicelist li > input {
3015
+ position: absolute;
3016
+ left: 0;
3017
+ top: 2px;
3018
+ }
3019
+
3020
+ .elbow {
3021
+ margin-top: 5px;
3022
+ }
3023
+
3024
+ .elbow::before {
3025
+ content: "⌞";
3026
+ padding-right: 5px;
3027
+ }
3028
+
3029
+ .radio-filters {
3030
+ margin: 0;
3031
+ display: block;
3032
+ float: right;
3033
+ list-style: none;
3034
+ }
3035
+
3036
+ .radio-filter {
3037
+ display: inline-block;
3038
+ margin-left: 15px;
3039
+ }
3040
+
3041
+ .radio-filter-input {
3042
+ display: none;
3043
+ }
3044
+
3045
+ .radio-filter-label {
3046
+ cursor: pointer;
3047
+ display: inline-block;
3048
+ margin: 0;
3049
+ vertical-align: middle;
3050
+ font-weight: normal;
3051
+ color: #798c9c;
3052
+ }
3053
+
3054
+ .radio-filter-label::before {
3055
+ content: "";
3056
+ margin-top: -3px;
3057
+ vertical-align: middle;
3058
+ display: inline-block;
3059
+ width: 10px;
3060
+ height: 10px;
3061
+ border-radius: 10px;
3062
+ background: #ffffff;
3063
+ border: 1px solid #95a7b7;
3064
+ -webkit-transition: all 0.15s;
3065
+ transition: all 0.15s;
3066
+ }
3067
+
3068
+ .radio-filter-input:checked + .radio-filter-all:before {
3069
+ background: #479ccf;
3070
+ border-color: #479ccf;
3071
+ }
3072
+
3073
+ .radio-filter-input:checked + .radio-filter-store:before {
3074
+ background: #94c140;
3075
+ border-color: #94c140;
3076
+ }
3077
+
3078
+ .radio-filter-input:checked + .radio-filter-admin:before {
3079
+ background: #e49642;
3080
+ border-color: #e49642;
3081
+ }
3082
+
3083
+ .copy-link .fixed-container {
3084
+ vertical-align: bottom;
3085
+ padding-left: 20px;
3086
+ }
3087
+
3088
+ .copy-link .variable-container input {
3089
+ padding: 15px;
3090
+ }
3091
+
3092
+ .dom-switch, .dom-switch-target {
3093
+ display: none;
3094
+ }
3095
+
3096
+ input[type="checkbox"].dom-switch ~ .dom-switch-button {
3097
+ color: #479ccf;
3098
+ font-weight: normal;
3099
+ cursor: pointer;
3100
+ }
3101
+
3102
+ input[type="checkbox"].dom-switch:checked ~ .dom-switch-target {
3103
+ display: block;
3104
+ }
3105
+
3106
+ input[disabled] + label.gray-on-disabled, input[disabled] + label.gray-on-disabled strong {
3107
+ color: #bbbbbb;
3108
+ }
3109
+
3110
+ .next-ui .js-province-select,
3111
+ .next-ui .js-country-select {
3112
+ display: block;
3113
+ width: 100%;
3114
+ }
3115
+
3116
+ .next-ui .form--button-only {
3117
+ display: inline-block;
3118
+ }
3119
+
3120
+ .next-ui .outer-input-border:not(:focus) {
3121
+ box-shadow: none;
3122
+ }
3123
+
3124
+ input.attached-to-left {
3125
+ border-radius: 3px 0 0 3px;
3126
+ }
3127
+
3128
+ input.attached-to-right {
3129
+ border-radius: 0 3px 3px 0;
3130
+ }
3131
+
3132
+ input.attached-to-both {
3133
+ border-radius: 0;
3134
+ }
3135
+
3136
+ .next-form {
3137
+ margin: 0;
3138
+ padding: 0;
3139
+ }
3140
+
3141
+ .next-input, .next-input--stylized, .next-input--invisible {
3142
+ display: inline-block;
3143
+ max-width: auto;
3144
+ min-width: 75px;
3145
+ vertical-align: baseline;
3146
+ width: auto;
3147
+ height: auto;
3148
+ padding: 1px;
3149
+ margin: 0;
3150
+ border: 1px solid #95a7b7;
3151
+ border-radius: 0;
3152
+ border-style: inset;
3153
+ color: #000000;
3154
+ -webkit-appearance: none;
3155
+ -moz-appearance: none;
3156
+ }
3157
+
3158
+ .next-textarea {
3159
+ display: inline-block;
3160
+ max-width: auto;
3161
+ vertical-align: baseline;
3162
+ width: auto;
3163
+ height: auto;
3164
+ padding: 1px;
3165
+ margin: 0;
3166
+ border: 1px solid #95a7b7;
3167
+ border-radius: 0;
3168
+ color: #000000;
3169
+ min-height: 0;
3170
+ line-height: normal;
3171
+ -webkit-appearance: none;
3172
+ -moz-appearance: none;
3173
+ }
3174
+
3175
+ .next-input--number,
3176
+ input[type=number].next-input--number {
3177
+ width: auto;
3178
+ }
3179
+
3180
+ .next-input--submit,
3181
+ input[type=submit].next-input--submit {
3182
+ cursor: default;
3183
+ width: auto;
3184
+ max-width: none;
3185
+ margin: 2px;
3186
+ padding: 3px 6px;
3187
+ }
3188
+
3189
+ .next-input--button,
3190
+ input[type=button].next-input--button {
3191
+ cursor: default;
3192
+ width: auto;
3193
+ max-width: none;
3194
+ margin: 2px;
3195
+ padding: 3px 6px;
3196
+ }
3197
+
3198
+ .next-input[disabled], [disabled].next-input--stylized,
3199
+ .next-input--is-disabled {
3200
+ background-color: white;
3201
+ background-image: none;
3202
+ border-color: #95a7b7;
3203
+ color: graytext;
3204
+ -webkit-appearance: none;
3205
+ -moz-appearance: none;
3206
+ }
3207
+
3208
+ .next-input, .next-input--stylized, .next-textarea {
3209
+ padding: 5px 10px;
3210
+ border: 1px solid #d3dbe2;
3211
+ border-radius: 3px;
3212
+ font-size: 15px;
3213
+ color: #31373d;
3214
+ box-sizing: border-box;
3215
+ display: block;
3216
+ width: 100%;
3217
+ line-height: 20px;
3218
+ }
3219
+
3220
+ .next-input::-webkit-input-placeholder, .next-input--stylized::-webkit-input-placeholder, .next-textarea::-webkit-input-placeholder {
3221
+ color: #c3cfd8;
3222
+ }
3223
+
3224
+ .next-input::-moz-placeholder, .next-input--stylized::-moz-placeholder, .next-textarea::-moz-placeholder {
3225
+ color: #c3cfd8;
3226
+ }
3227
+
3228
+ .next-input:-ms-input-placeholder, .next-input--stylized:-ms-input-placeholder, .next-textarea:-ms-input-placeholder {
3229
+ color: #c3cfd8;
3230
+ }
3231
+
3232
+ .next-input::placeholder, .next-input--stylized::placeholder, .next-textarea::placeholder {
3233
+ color: #c3cfd8;
3234
+ }
3235
+
3236
+ .next-input:focus, .next-input--stylized:focus, .next-textarea:focus {
3237
+ border: 1px solid #479ccf;
3238
+ }
3239
+
3240
+ .next-form.next-form--full-width {
3241
+ width: 100%;
3242
+ }
3243
+
3244
+ .next-label {
3245
+ display: block;
3246
+ margin-bottom: 5px;
3247
+ color: #31373d;
3248
+ font-size: 13px;
3249
+ font-weight: normal;
3250
+ cursor: pointer;
3251
+ }
3252
+
3253
+ .next-label--inline {
3254
+ display: inline-block;
3255
+ padding-right: 10px;
3256
+ }
3257
+
3258
+ .next-label--no-margin {
3259
+ margin: 0;
3260
+ }
3261
+
3262
+ .next-label--increased-letter-spacing {
3263
+ letter-spacing: 0.05em;
3264
+ }
3265
+
3266
+ .next-input__help-text {
3267
+ font-style: italic;
3268
+ font-size: 13px;
3269
+ color: #95a7b7;
3270
+ margin-top: 5px;
3271
+ }
3272
+
3273
+ .next-radio--styled + .next-input__help-text,
3274
+ .next-checkbox--styled + .next-input__help-text {
3275
+ padding-left: 26px;
3276
+ }
3277
+
3278
+ .next-input--inline {
3279
+ display: inline-block;
3280
+ }
3281
+
3282
+ .next-textarea {
3283
+ height: 100px;
3284
+ }
3285
+
3286
+ .next-textarea--resize-vertical {
3287
+ resize: vertical;
3288
+ max-height: 200px;
3289
+ }
3290
+
3291
+ .next-textarea--expanding {
3292
+ resize: none;
3293
+ overflow: hidden;
3294
+ height: 30px;
3295
+ }
3296
+
3297
+ .next-input--number,
3298
+ input[type=number].next-input--number {
3299
+ min-width: 0;
3300
+ }
3301
+
3302
+ .next-input--submit,
3303
+ input[type=submit].next-input--submit {
3304
+ padding: 10px 15px;
3305
+ border: none;
3306
+ border-radius: 3px;
3307
+ background-color: #479ccf;
3308
+ color: #ffffff;
3309
+ font-size: 13px;
3310
+ }
3311
+
3312
+ .next-input--quantity,
3313
+ input[type=number].next-input--quantity {
3314
+ min-width: 45px;
3315
+ width: 45px;
3316
+ }
3317
+
3318
+ .next-input[disabled], [disabled].next-input--stylized,
3319
+ .next-input--is-disabled {
3320
+ border: 1px solid #ebeef0;
3321
+ background: #fafbfc;
3322
+ color: #c3cfd8;
3323
+ }
3324
+
3325
+ .next-input[disabled]:hover, [disabled].next-input--stylized:hover,
3326
+ .next-input--is-disabled:hover {
3327
+ border: 1px solid #ebeef0;
3328
+ background: #fafbfc;
3329
+ }
3330
+
3331
+ .next-input[disabled].next-input--invisible, [disabled].next-input--invisible.next-input--stylized,
3332
+ .next-input--is-disabled.next-input--invisible {
3333
+ background: none;
3334
+ border: none;
3335
+ }
3336
+
3337
+ .next-input[readonly], [readonly].next-input--stylized {
3338
+ background: #fafbfc;
3339
+ }
3340
+
3341
+ .next-input-wrapper {
3342
+ position: relative;
3343
+ }
3344
+
3345
+ .next-input-wrapper + .next-input-wrapper {
3346
+ margin-top: 20px;
3347
+ }
3348
+
3349
+ .next-input-wrapper + .next-input-wrapper--halved {
3350
+ margin-top: 10px;
3351
+ }
3352
+
3353
+ .next-input-wrapper + .wrappable {
3354
+ padding-top: 20px;
3355
+ }
3356
+
3357
+ .wrappable + .next-input-wrapper {
3358
+ margin-top: 20px;
3359
+ }
3360
+
3361
+ .next-fieldset-wrapper .next-input-wrapper {
3362
+ margin-top: 5px;
3363
+ }
3364
+
3365
+ .select .next-input-wrapper {
3366
+ height: 16px;
3367
+ }
3368
+
3369
+ .next-input-wrapper--inline {
3370
+ display: inline-block;
3371
+ }
3372
+
3373
+ .next-input-wrapper--is-error .next-label {
3374
+ color: #ff5d5d;
3375
+ }
3376
+
3377
+ .next-input-wrapper--is-error .next-input, .next-input-wrapper--is-error .next-input--stylized,
3378
+ .next-input-wrapper--is-error .next-textarea,
3379
+ .next-input-wrapper--is-error .next-select__wrapper {
3380
+ border-color: #ff5d5d;
3381
+ background-color: #fef6f5;
3382
+ }
3383
+
3384
+ .next-input-wrapper--inline {
3385
+ display: inline-block;
3386
+ }
3387
+
3388
+ .next-input-wrapper--half-spacing {
3389
+ margin-bottom: 10px;
3390
+ margin-top: 10px;
3391
+ }
3392
+
3393
+ .next-input--stylized {
3394
+ position: relative;
3395
+ display: -webkit-box;
3396
+ display: -webkit-flex;
3397
+ display: -ms-flexbox;
3398
+ display: flex;
3399
+ overflow: hidden;
3400
+ background: #ffffff;
3401
+ margin-right: 0.5px;
3402
+ }
3403
+
3404
+ .next-input--stylized .next-input, .next-input--stylized .next-input--stylized {
3405
+ min-width: 0;
3406
+ }
3407
+
3408
+ .next-input--stylized .field_with_errors {
3409
+ -webkit-box-flex: 1;
3410
+ -webkit-flex: 1;
3411
+ -ms-flex: 1;
3412
+ flex: 1;
3413
+ }
3414
+
3415
+ .next-input--scrollable {
3416
+ overflow: auto;
3417
+ }
3418
+
3419
+ .next-input--invisible {
3420
+ -webkit-box-flex: 1;
3421
+ -webkit-flex: 1 1 auto;
3422
+ -ms-flex: 1 1 auto;
3423
+ flex: 1 1 auto;
3424
+ height: auto;
3425
+ padding: 0;
3426
+ border: none;
3427
+ color: #31373d;
3428
+ }
3429
+
3430
+ .next-input--invisible::-webkit-input-placeholder {
3431
+ color: #c3cfd8;
3432
+ }
3433
+
3434
+ .next-input--invisible::-moz-placeholder {
3435
+ color: #c3cfd8;
3436
+ }
3437
+
3438
+ .next-input--invisible:-ms-input-placeholder {
3439
+ color: #c3cfd8;
3440
+ }
3441
+
3442
+ .next-input--invisible::placeholder {
3443
+ color: #c3cfd8;
3444
+ }
3445
+
3446
+ .next-input--invisible:focus {
3447
+ border: none;
3448
+ }
3449
+
3450
+ .next-input__add-on {
3451
+ -webkit-align-self: center;
3452
+ -ms-flex-item-align: center;
3453
+ align-self: center;
3454
+ -webkit-box-flex: 0;
3455
+ -webkit-flex: none;
3456
+ -ms-flex: none;
3457
+ flex: none;
3458
+ white-space: nowrap;
3459
+ color: #95a7b7;
3460
+ }
3461
+
3462
+ .next-input--has-content .next-input__add-on {
3463
+ color: #31373d;
3464
+ }
3465
+
3466
+ .next-input__add-on--before {
3467
+ padding-right: 4px;
3468
+ }
3469
+
3470
+ .next-input__add-on--before > .next-icon {
3471
+ margin-right: 6px;
3472
+ }
3473
+
3474
+ .next-input__add-on--after {
3475
+ padding-left: 4px;
3476
+ }
3477
+
3478
+ .next-input__add-on--url-base {
3479
+ color: #798c9c;
3480
+ padding-right: 0;
3481
+ }
3482
+
3483
+ .next-radio,
3484
+ input[type=radio].next-radio,
3485
+ .next-checkbox,
3486
+ input[type=checkbox].next-checkbox, .next-radio--styled, .next-checkbox--styled {
3487
+ display: block;
3488
+ position: absolute;
3489
+ left: 0;
3490
+ top: 0;
3491
+ height: 16px;
3492
+ width: 16px;
3493
+ border: 1px solid #d3dbe2;
3494
+ background-color: #ffffff;
3495
+ margin: 0;
3496
+ box-sizing: border-box;
3497
+ vertical-align: middle;
3498
+ }
3499
+
3500
+ .next-radio,
3501
+ input[type=radio].next-radio,
3502
+ .next-checkbox,
3503
+ input[type=checkbox].next-checkbox {
3504
+ z-index: 2;
3505
+ opacity: 0;
3506
+ }
3507
+
3508
+ .next-input-wrapper--inline .next-radio, .next-input-wrapper--inline
3509
+ input[type=radio].next-radio, .next-input-wrapper--inline
3510
+ .next-checkbox, .next-input-wrapper--inline
3511
+ input[type=checkbox].next-checkbox {
3512
+ display: inline-block;
3513
+ position: relative;
3514
+ }
3515
+
3516
+ .next-label--switch {
3517
+ display: inline-block;
3518
+ position: relative;
3519
+ padding-left: 26px;
3520
+ margin-bottom: 0;
3521
+ }
3522
+
3523
+ .next-label--switch--centered .next-radio--styled,
3524
+ .next-label--switch--centered .next-checkbox--styled {
3525
+ top: 50%;
3526
+ -webkit-transform: translateY(-50%);
3527
+ -ms-transform: translateY(-50%);
3528
+ transform: translateY(-50%);
3529
+ }
3530
+
3531
+ .next-input-wrapper--inline .next-radio--styled, .next-input-wrapper--inline
3532
+ .next-checkbox--styled {
3533
+ left: 0;
3534
+ top: 50%;
3535
+ margin-top: -8px;
3536
+ }
3537
+
3538
+ .next-radio--styled {
3539
+ border-radius: 100%;
3540
+ z-index: 1;
3541
+ }
3542
+
3543
+ .next-radio--styled::after {
3544
+ content: "";
3545
+ display: block;
3546
+ height: 8px;
3547
+ width: 8px;
3548
+ position: absolute;
3549
+ top: 50%;
3550
+ left: 50%;
3551
+ border-radius: 100%;
3552
+ background-color: transparent;
3553
+ -webkit-transform: translate(-50%, -50%) scale(0);
3554
+ -ms-transform: translate(-50%, -50%) scale(0);
3555
+ transform: translate(-50%, -50%) scale(0);
3556
+ -webkit-transition: -webkit-transform 0.15s ease-in-out;
3557
+ transition: transform 0.15s ease-in-out;
3558
+ }
3559
+
3560
+ .next-radio:active ~ .next-radio--styled, .next-radio:focus .next-radio--styled {
3561
+ border-color: #479ccf;
3562
+ }
3563
+
3564
+ .next-radio:checked ~ .next-radio--styled::after {
3565
+ background-color: #479ccf;
3566
+ -webkit-transform: translate(-50%, -50%) scale(1);
3567
+ -ms-transform: translate(-50%, -50%) scale(1);
3568
+ transform: translate(-50%, -50%) scale(1);
3569
+ }
3570
+
3571
+ .next-checkbox--styled {
3572
+ border-radius: 3px;
3573
+ z-index: 1;
3574
+ }
3575
+
3576
+ .next-checkbox--styled .next-icon {
3577
+ display: block;
3578
+ top: 2px;
3579
+ left: 2px;
3580
+ position: absolute;
3581
+ -webkit-transform: scale(0);
3582
+ -ms-transform: scale(0);
3583
+ transform: scale(0);
3584
+ -webkit-transition: -webkit-transform 0.15s ease-in-out;
3585
+ transition: transform 0.15s ease-in-out;
3586
+ z-index: 2;
3587
+ }
3588
+
3589
+ .next-checkbox:checked ~ .next-checkbox--styled .next-icon.checkmark, .next-checkbox:indeterminate ~ .next-checkbox--styled .next-icon.indeterminate {
3590
+ -webkit-transform: scale(1);
3591
+ -ms-transform: scale(1);
3592
+ transform: scale(1);
3593
+ }
3594
+
3595
+ .next-checkbox:active ~ .next-checkbox--styled, .next-checkbox:focus ~ .next-checkbox--styled {
3596
+ border-color: #479ccf;
3597
+ }
3598
+
3599
+ .next-input--is-focused {
3600
+ border: 1px solid #479ccf;
3601
+ }
3602
+
3603
+ .next-input--has-error {
3604
+ border: 1px solid #ff5d5d;
3605
+ background: #fef6f5;
3606
+ }
3607
+
3608
+ .next-select__wrapper {
3609
+ border: 1px solid #d3dbe2;
3610
+ border-radius: 3px;
3611
+ box-sizing: border-box;
3612
+ position: relative;
3613
+ background: #ffffff;
3614
+ overflow: hidden;
3615
+ vertical-align: bottom;
3616
+ }
3617
+
3618
+ .next-select__wrapper.next-input--is-focused {
3619
+ border-color: #479ccf;
3620
+ }
3621
+
3622
+ .next-select__wrapper .next-icon {
3623
+ cursor: pointer;
3624
+ display: block;
3625
+ fill: #798c9c;
3626
+ position: absolute;
3627
+ right: 10px;
3628
+ top: 50%;
3629
+ margin-top: -6px;
3630
+ pointer-events: none;
3631
+ }
3632
+
3633
+ .next-field--connected .next-select__wrapper {
3634
+ border-radius: 0 3px 3px 0;
3635
+ }
3636
+
3637
+ .next-select__wrapper--inline {
3638
+ display: inline-block;
3639
+ }
3640
+
3641
+ .next-input-wrapper--inline-group > * + * {
3642
+ margin-left: 10px;
3643
+ }
3644
+
3645
+ .next-select {
3646
+ -webkit-appearance: none;
3647
+ -moz-appearance: none;
3648
+ width: 100%;
3649
+ font-size: 15px;
3650
+ background: transparent;
3651
+ padding: 5px 10px;
3652
+ padding-right: 32px;
3653
+ border: none;
3654
+ box-sizing: border-box;
3655
+ height: auto;
3656
+ line-height: 20px;
3657
+ max-width: none;
3658
+ display: block;
3659
+ color: #31373d;
3660
+ }
3661
+
3662
+ .next-select:focus {
3663
+ outline: none;
3664
+ border: none;
3665
+ }
3666
+
3667
+ .next-select option {
3668
+ color: #31373d;
3669
+ }
3670
+
3671
+ .next-select:-moz-focusring {
3672
+ color: transparent;
3673
+ text-shadow: 0 0 0 #000;
3674
+ }
3675
+
3676
+ .next-select::-ms-expand {
3677
+ display: none;
3678
+ }
3679
+
3680
+ .next-select:focus::-ms-value {
3681
+ background: transparent;
3682
+ color: #31373d;
3683
+ }
3684
+
3685
+ .next-field__connected-wrapper {
3686
+ display: -webkit-box;
3687
+ display: -webkit-flex;
3688
+ display: -ms-flexbox;
3689
+ display: flex;
3690
+ }
3691
+
3692
+ .next-form--multi-column .next-field__connected-wrapper {
3693
+ -webkit-box-orient: vertical;
3694
+ -webkit-box-direction: normal;
3695
+ -webkit-flex-direction: column;
3696
+ -ms-flex-direction: column;
3697
+ flex-direction: column;
3698
+ }
3699
+
3700
+ .next-field__connected-wrapper--align-right {
3701
+ -webkit-box-pack: end;
3702
+ -webkit-justify-content: flex-end;
3703
+ -ms-flex-pack: end;
3704
+ justify-content: flex-end;
3705
+ }
3706
+
3707
+ .next-form--align-center .next-field__connected-wrapper--align-center {
3708
+ -webkit-box-align: center;
3709
+ -webkit-align-items: center;
3710
+ -ms-flex-align: center;
3711
+ align-items: center;
3712
+ }
3713
+
3714
+ .next-field--connected {
3715
+ position: relative;
3716
+ border-radius: 0;
3717
+ -webkit-box-flex: 1;
3718
+ -webkit-flex: 1 1 0%;
3719
+ -ms-flex: 1 1 0%;
3720
+ flex: 1 1 0%;
3721
+ width: auto;
3722
+ left: -1px;
3723
+ margin: 0 -1px 0 0;
3724
+ }
3725
+
3726
+ .next-field--connected:focus:not(.btn) + .next-field--connected, .next-field--connected.next-input--is-focused + .next-field--connected {
3727
+ border-left: solid 1px #479ccf;
3728
+ }
3729
+
3730
+ .next-field--connected.btn:focus + .next-field--connected {
3731
+ border-left: solid 1px #D6D6D6;
3732
+ }
3733
+
3734
+ .next-field--connected:first-child {
3735
+ left: 0;
3736
+ margin-right: 0;
3737
+ border-top-left-radius: 3px;
3738
+ border-bottom-left-radius: 3px;
3739
+ }
3740
+
3741
+ .next-field--connected:last-child {
3742
+ border-top-right-radius: 3px;
3743
+ border-bottom-right-radius: 3px;
3744
+ }
3745
+
3746
+ .next-field--connected--no-flex {
3747
+ -webkit-box-flex: 0;
3748
+ -webkit-flex: 0 0 auto;
3749
+ -ms-flex: 0 0 auto;
3750
+ flex: 0 0 auto;
3751
+ }
3752
+
3753
+ .next-field--connected--extra-padding {
3754
+ padding-left: 10px;
3755
+ }
3756
+
3757
+ .next-form--multi-column .next-field--connected--extra-padding {
3758
+ padding-left: 0;
3759
+ padding-top: 10px;
3760
+ }
3761
+
3762
+ .next-input--search {
3763
+ -webkit-appearance: textfield;
3764
+ }
3765
+
3766
+ .next-input--search::-webkit-search-decoration, .next-input--search::-webkit-search-cancel-button {
3767
+ -webkit-appearance: none;
3768
+ }
3769
+
3770
+ .unstyled .next-input-wrapper {
3771
+ margin-top: 10px;
3772
+ }
3773
+
3774
+ .next-heading {
3775
+ color: #31373d;
3776
+ margin: 0 0 20px 0;
3777
+ font-weight: 400;
3778
+ font-size: 18px;
3779
+ line-height: 1.2em;
3780
+ }
3781
+
3782
+ .next-heading--1 {
3783
+ font-size: 22px;
3784
+ }
3785
+
3786
+ .next-heading--2 {
3787
+ font-size: 20px;
3788
+ }
3789
+
3790
+ .next-heading--3 {
3791
+ font-size: 18px;
3792
+ }
3793
+
3794
+ .next-heading--tiny {
3795
+ font-size: 13px;
3796
+ }
3797
+
3798
+ .next-heading--small {
3799
+ font-size: 15px;
3800
+ }
3801
+
3802
+ .next-heading--large {
3803
+ font-size: 24px;
3804
+ }
3805
+
3806
+ .next-heading--xl {
3807
+ font-size: 32px;
3808
+ }
3809
+
3810
+ .next-heading--light-weight {
3811
+ font-weight: 300;
3812
+ }
3813
+
3814
+ .next-heading--semi-bold {
3815
+ font-weight: 500;
3816
+ }
3817
+
3818
+ .next-heading--subdued {
3819
+ color: #798c9c;
3820
+ }
3821
+
3822
+ .next-heading--callout {
3823
+ font-size: 11px;
3824
+ text-transform: uppercase;
3825
+ letter-spacing: 0.04em;
3826
+ color: #c3cfd8;
3827
+ font-weight: 500;
3828
+ }
3829
+
3830
+ .next-heading--callout a.subdued {
3831
+ text-decoration: none;
3832
+ }
3833
+
3834
+ .next-heading--callout a.subdued:hover {
3835
+ text-decoration: underline;
3836
+ }
3837
+
3838
+ .next-heading--callout--darker {
3839
+ color: #798c9c;
3840
+ }
3841
+
3842
+ .next-heading--micro-uppercase-bordered {
3843
+ color: #798c9c;
3844
+ padding: 5px 20px;
3845
+ padding-top: 10px;
3846
+ font-size: 11px;
3847
+ text-transform: uppercase;
3848
+ border-bottom: solid 1px #ebeef0;
3849
+ margin: 0;
3850
+ }
3851
+
3852
+ .next-heading--no-margin {
3853
+ margin: 0;
3854
+ }
3855
+
3856
+ .next-heading--half-margin {
3857
+ margin: 0 0 10px;
3858
+ }
3859
+
3860
+ .next-heading--quarter-margin {
3861
+ margin: 0 0 5px;
3862
+ }
3863
+
3864
+ .next-icon, .next-icon__text {
3865
+ display: inline-block;
3866
+ vertical-align: middle;
3867
+ }
3868
+
3869
+ .next-icon {
3870
+ background-size: contain;
3871
+ background-position: center;
3872
+ background-repeat: no-repeat;
3873
+ position: relative;
3874
+ top: -0.15em;
3875
+ fill: currentColor;
3876
+ }
3877
+
3878
+ .next-icon--header {
3879
+ top: -0.1em;
3880
+ margin-right: 5px;
3881
+ fill: #798c9c;
3882
+ }
3883
+
3884
+ .next-icon--sidebar {
3885
+ margin-right: 15px;
3886
+ vertical-align: top;
3887
+ }
3888
+
3889
+ .is-disabled .next-icon--rte {
3890
+ opacity: 0.5;
3891
+ }
3892
+
3893
+ .next-icon--left-spacing-halved {
3894
+ margin-left: 10px;
3895
+ }
3896
+
3897
+ .next-icon--right-spacing-halved {
3898
+ margin-right: 10px;
3899
+ }
3900
+
3901
+ .next-icon--right-spacing-quartered {
3902
+ margin-right: 5px;
3903
+ }
3904
+
3905
+ .next-icon__text {
3906
+ margin-left: 5px;
3907
+ text-decoration: inherit;
3908
+ }
3909
+
3910
+ .next-icon--beside-text {
3911
+ padding-left: 10px;
3912
+ vertical-align: sub;
3913
+ }
3914
+
3915
+ .next-icon--beside-input {
3916
+ top: -7px;
3917
+ }
3918
+
3919
+ .next-icon__with-text-wrapper {
3920
+ display: -webkit-box;
3921
+ display: -webkit-flex;
3922
+ display: -ms-flexbox;
3923
+ display: flex;
3924
+ -webkit-box-align: center;
3925
+ -webkit-align-items: center;
3926
+ -ms-flex-align: center;
3927
+ align-items: center;
3928
+ }
3929
+
3930
+ .next-icon__with-text-wrapper--halved .next-icon + *, .next-icon__with-text-wrapper--halved
3931
+ * + .next-icon {
3932
+ margin-left: 10px;
3933
+ }
3934
+
3935
+ .next-icon__with-text-wrapper--quartered .next-icon + *, .next-icon__with-text-wrapper--quartered
3936
+ * + .next-icon {
3937
+ margin-left: 5px;
3938
+ }
3939
+
3940
+ .next-icon--rotate-45 {
3941
+ -webkit-transform: rotate(45deg);
3942
+ -ms-transform: rotate(45deg);
3943
+ transform: rotate(45deg);
3944
+ }
3945
+
3946
+ .next-icon--rotate-90 {
3947
+ -webkit-transform: rotate(90deg);
3948
+ -ms-transform: rotate(90deg);
3949
+ transform: rotate(90deg);
3950
+ }
3951
+
3952
+ .next-icon--rotate-135 {
3953
+ -webkit-transform: rotate(135deg);
3954
+ -ms-transform: rotate(135deg);
3955
+ transform: rotate(135deg);
3956
+ }
3957
+
3958
+ .next-icon--rotate-180 {
3959
+ -webkit-transform: rotate(180deg);
3960
+ -ms-transform: rotate(180deg);
3961
+ transform: rotate(180deg);
3962
+ }
3963
+
3964
+ .next-icon--rotate-225 {
3965
+ -webkit-transform: rotate(225deg);
3966
+ -ms-transform: rotate(225deg);
3967
+ transform: rotate(225deg);
3968
+ }
3969
+
3970
+ .next-icon--rotate-270 {
3971
+ -webkit-transform: rotate(270deg);
3972
+ -ms-transform: rotate(270deg);
3973
+ transform: rotate(270deg);
3974
+ }
3975
+
3976
+ .next-icon--color-sky {
3977
+ fill: #ebeef0;
3978
+ }
3979
+
3980
+ .next-icon--sky {
3981
+ fill: #ebeef0;
3982
+ }
3983
+
3984
+ .next-icon--color-sky-dark {
3985
+ fill: #d3dbe2;
3986
+ }
3987
+
3988
+ .next-icon--sky-dark {
3989
+ fill: #d3dbe2;
3990
+ }
3991
+
3992
+ .next-icon--color-sky-darker {
3993
+ fill: #c3cfd8;
3994
+ }
3995
+
3996
+ .next-icon--sky-darker {
3997
+ fill: #c3cfd8;
3998
+ }
3999
+
4000
+ .next-icon--color-slate-lightest {
4001
+ fill: #95a7b7;
4002
+ }
4003
+
4004
+ .next-icon--slate-lightest {
4005
+ fill: #95a7b7;
4006
+ }
4007
+
4008
+ .next-icon--color-slate-lighter {
4009
+ fill: #798c9c;
4010
+ }
4011
+
4012
+ .next-icon--slate-lighter {
4013
+ fill: #798c9c;
4014
+ }
4015
+
4016
+ .next-icon--color-blue {
4017
+ fill: #479ccf;
4018
+ }
4019
+
4020
+ .next-icon--blue {
4021
+ fill: #479ccf;
4022
+ }
4023
+
4024
+ .next-icon--color-blue-lighter {
4025
+ fill: #cae9f7;
4026
+ }
4027
+
4028
+ .next-icon--blue-lighter {
4029
+ fill: #cae9f7;
4030
+ }
4031
+
4032
+ .next-icon--color-green {
4033
+ fill: #96bf48;
4034
+ }
4035
+
4036
+ .next-icon--green {
4037
+ fill: #96bf48;
4038
+ }
4039
+
4040
+ .next-icon--color-yellow {
4041
+ fill: #ffd117;
4042
+ }
4043
+
4044
+ .next-icon--yellow {
4045
+ fill: #ffd117;
4046
+ }
4047
+
4048
+ .next-icon--color-yellow-dark {
4049
+ fill: #d4a002;
4050
+ }
4051
+
4052
+ .next-icon--yellow-dark {
4053
+ fill: #d4a002;
4054
+ }
4055
+
4056
+ .next-icon--color-white {
4057
+ fill: #ffffff;
4058
+ }
4059
+
4060
+ .next-icon--white {
4061
+ fill: #ffffff;
4062
+ }
4063
+
4064
+ .next-icon--no-nudge {
4065
+ top: 0;
4066
+ }
4067
+
4068
+ .next-icon--baseline {
4069
+ vertical-align: baseline;
4070
+ }
4071
+
4072
+ .frame .next-icon {
4073
+ top: 0;
4074
+ }
4075
+
4076
+ .next-icon--size-8 {
4077
+ width: 8px;
4078
+ height: 8px;
4079
+ }
4080
+
4081
+ .next-icon--8 {
4082
+ width: 8px;
4083
+ height: 8px;
4084
+ }
4085
+
4086
+ .next-icon--size-10 {
4087
+ width: 10px;
4088
+ height: 10px;
4089
+ }
4090
+
4091
+ .next-icon--10 {
4092
+ width: 10px;
4093
+ height: 10px;
4094
+ }
4095
+
4096
+ .next-icon--size-12 {
4097
+ width: 12px;
4098
+ height: 12px;
4099
+ }
4100
+
4101
+ .next-icon--12 {
4102
+ width: 12px;
4103
+ height: 12px;
4104
+ }
4105
+
4106
+ .next-icon--size-16 {
4107
+ width: 16px;
4108
+ height: 16px;
4109
+ }
4110
+
4111
+ .next-icon--16 {
4112
+ width: 16px;
4113
+ height: 16px;
4114
+ }
4115
+
4116
+ .next-icon--size-20 {
4117
+ width: 20px;
4118
+ height: 20px;
4119
+ }
4120
+
4121
+ .next-icon--20 {
4122
+ width: 20px;
4123
+ height: 20px;
4124
+ }
4125
+
4126
+ .next-icon--size-24 {
4127
+ width: 24px;
4128
+ height: 24px;
4129
+ }
4130
+
4131
+ .next-icon--24 {
4132
+ width: 24px;
4133
+ height: 24px;
4134
+ }
4135
+
4136
+ .next-icon--size-40 {
4137
+ width: 40px;
4138
+ height: 40px;
4139
+ }
4140
+
4141
+ .next-icon--40 {
4142
+ width: 40px;
4143
+ height: 40px;
4144
+ }
4145
+
4146
+ .next-icon--size-80 {
4147
+ width: 80px;
4148
+ height: 80px;
4149
+ }
4150
+
4151
+ .next-icon--80 {
4152
+ width: 80px;
4153
+ height: 80px;
4154
+ }
4155
+
4156
+ .next-icon--inline {
4157
+ padding-left: 0.125em;
4158
+ margin-bottom: -0.125em;
4159
+
4160
+ height: 1em;
4161
+ width: 1em;
4162
+ }
4163
+
4164
+ .section {
4165
+ position: relative;
4166
+ padding: 25px 0;
4167
+ border-bottom: 1px solid #e6e6e6;
4168
+ }
4169
+
4170
+ .section h5 {
4171
+ color: #000;
4172
+ padding: 0 0 7px 0;
4173
+ font-weight: bold;
4174
+ }
4175
+
4176
+ .section.row {
4177
+ margin: 0;
4178
+ }
4179
+
4180
+ .section.first-section {
4181
+ padding-top: 5px;
4182
+ }
4183
+
4184
+ .section.last-section {
4185
+ padding-bottom: 5px;
4186
+ border-bottom: none;
4187
+ }
4188
+
4189
+ .section .section-summary {
4190
+ float: left;
4191
+ padding-left: 50px;
4192
+ padding-right: 0px;
4193
+ }
4194
+
4195
+ .section .section-summary h1, .section .section-summary h2 {
4196
+ font-size: 18px;
4197
+ margin-bottom: 10px;
4198
+ }
4199
+
4200
+ .section .section-summary p {
4201
+ margin-bottom: 15px;
4202
+ }
4203
+
4204
+ .section .section-content {
4205
+ float: right;
4206
+ padding: 0 20px 0 25px;
4207
+ }
4208
+
4209
+ .section > .section-content-full-width {
4210
+ float: none;
4211
+ padding: 0 20px 0 50px;
4212
+ }
4213
+
4214
+ .section.setting-summary {
4215
+ padding: 10px 50px 30px 50px;
4216
+ }
4217
+
4218
+ .section.setting-summary.setting-summary-centered {
4219
+ text-align: center;
4220
+ padding: 10px 0 30px 0;
4221
+ }
4222
+
4223
+ .section.setting-summary p {
4224
+ font-size: 18px;
4225
+ color: #000;
4226
+ line-height: 28px;
4227
+ }
4228
+
4229
+ .section.section-vertically-centered {
4230
+ display: table;
4231
+ }
4232
+
4233
+ .section.section-vertically-centered > .section-summary {
4234
+ float: none;
4235
+ display: table-cell;
4236
+ }
4237
+
4238
+ .section.section-vertically-centered > .section-content {
4239
+ float: none;
4240
+ display: table-cell;
4241
+ vertical-align: middle;
4242
+ }
4243
+
4244
+ .section-heading {
4245
+ font-size: 18px;
4246
+ margin: 0 10px 20px 0;
4247
+ display: inline-block;
4248
+ }
4249
+
4250
+ .section-heading-label {
4251
+ display: inline-block;
4252
+ margin: 0 5px 10px 0;
4253
+ }
4254
+
4255
+ .section-actions {
4256
+ list-style: none;
4257
+ display: inline-block;
4258
+ font-size: 0;
4259
+ margin: 0;
4260
+ }
4261
+
4262
+ .section-action {
4263
+ display: inline-block;
4264
+ margin: 0;
4265
+ font-size: 13px;
4266
+ }
4267
+
4268
+ .section-action::after {
4269
+ content: "\b7\a0";
4270
+ display: inline-block;
4271
+ padding: 0 2px 0 5px;
4272
+ }
4273
+
4274
+ .section-action:last-child::after {
4275
+ content: "";
4276
+ }
4277
+
4278
+ .section--divided {
4279
+ border-bottom: none;
4280
+ }
4281
+
4282
+ .section--divided + .section--divided {
4283
+ border-top: 1px solid #e6e6e6;
4284
+ }
4285
+
4286
+ .section--highlighted {
4287
+ background: #fff7b2;
4288
+ -webkit-animation-duration: 1s;
4289
+ animation-duration: 1s;
4290
+ -webkit-animation-name: flash-highlight;
4291
+ animation-name: flash-highlight;
4292
+ -webkit-animation-delay: 3s;
4293
+ animation-delay: 3s;
4294
+ -webkit-animation-fill-mode: forwards;
4295
+ animation-fill-mode: forwards;
4296
+ }
4297
+
4298
+ @-webkit-keyframes flash-highlight {
4299
+ from {
4300
+ background: #fff7b2;
4301
+ }
4302
+ to {
4303
+ background: rgba(255, 247, 178, 0);
4304
+ }
4305
+ }
4306
+
4307
+ @keyframes flash-highlight {
4308
+ from {
4309
+ background: #fff7b2;
4310
+ }
4311
+ to {
4312
+ background: rgba(255, 247, 178, 0);
4313
+ }
4314
+ }
4315
+
4316
+ .next-ui .section-summary,
4317
+ .next-ui .section-content,
4318
+ .next-ui .section {
4319
+ float: none;
4320
+ }
4321
+
4322
+ .next-ui .section {
4323
+ border-color: #d3dbe2;
4324
+ margin: 0;
4325
+ padding: 0;
4326
+ }
4327
+
4328
+ .next-ui .section-content {
4329
+ padding: 0;
4330
+ }
4331
+
4332
+ .next-ui .section-summary {
4333
+ padding: 20px 20px 20px 30px;
4334
+ }
4335
+
4336
+ .next-ui .section-summary h1 {
4337
+ color: #31373d;
4338
+ line-height: 1.325;
4339
+ margin-top: -4px;
4340
+ }
4341
+
4342
+ .next-ui .section-summary p {
4343
+ color: #798c9c;
4344
+ }
4345
+
4346
+ .next-ui .section-summary p:last-child {
4347
+ margin-bottom: 0;
4348
+ }
4349
+
4350
+ .next-ui .setting-summary {
4351
+ padding: 30px 50px;
4352
+ }
4353
+
4354
+ .next-ui .section--no-border {
4355
+ border: none;
4356
+ }
4357
+
4358
+ .next-ui .section .next-grid--space-between > .next-grid__cell:first-child .btn {
4359
+ margin-left: 30px;
4360
+ }
4361
+
4362
+ .next-ui .section-content .bulk-actions {
4363
+ left: 25%;
4364
+ margin-left: 34px;
4365
+ width: calc(75% - 54px);
4366
+ }
4367
+
4368
+ .next-ui .section--with-padding {
4369
+ padding: 20px;
4370
+ }
4371
+
4372
+ table {
4373
+ width: 100%;
4374
+ border-collapse: separate;
4375
+ border-spacing: 0;
4376
+ }
4377
+
4378
+ table.no-hover tr:hover td {
4379
+ background-color: transparent;
4380
+ border-color: #ececec;
4381
+ }
4382
+
4383
+ table.no-hover tr.summary:hover td {
4384
+ background: #f9f9f9;
4385
+ border-color: #ececec;
4386
+ }
4387
+
4388
+ table.no-hover tr:hover td.table-dropdown {
4389
+ background-color: #f9f9f9;
4390
+ border-color: #dcdcdc;
4391
+ border-top-color: #ccc;
4392
+ }
4393
+
4394
+ table.border-bottom tr:last-child td {
4395
+ border-bottom: 1px solid #ebeef0;
4396
+ }
4397
+
4398
+ table.border-bottom tr:last-child td.table-dropdown {
4399
+ border: 1px solid #dcdcdc;
4400
+ }
4401
+
4402
+ table.border-top th {
4403
+ border: 0;
4404
+ }
4405
+
4406
+ table.border-top td {
4407
+ border-bottom: 0;
4408
+ border-top: 1px solid #ececec;
4409
+ }
4410
+
4411
+ table.border-top tr.no-border td {
4412
+ border-top: 0;
4413
+ }
4414
+
4415
+ table.border-left td, table .border-left {
4416
+ border-left: solid 1px #d3dbe2;
4417
+ }
4418
+
4419
+ table.expanded td {
4420
+ padding-top: 8px;
4421
+ padding-bottom: 8px;
4422
+ }
4423
+
4424
+ tr.selected:hover td, tr.selected td, tr.selected td:hover {
4425
+ background-color: #fffbe9;
4426
+ }
4427
+
4428
+ tr:last-child > td {
4429
+ border-bottom: none;
4430
+ }
4431
+
4432
+ th {
4433
+ font-weight: 400;
4434
+ text-align: left;
4435
+ color: #31373d;
4436
+ padding: 8px 10px;
4437
+ border-bottom: 1px solid #ebeef0;
4438
+ -webkit-user-select: none;
4439
+ -moz-user-select: none;
4440
+ -ms-user-select: none;
4441
+ user-select: none;
4442
+ }
4443
+
4444
+ th.is-sortable {
4445
+ cursor: pointer;
4446
+ }
4447
+
4448
+ th.is-sortable:hover {
4449
+ background: #eff9fd;
4450
+ color: #479ccf;
4451
+ }
4452
+
4453
+ th.sorted-desc > span, th.sorted-asc > span {
4454
+ padding-right: 16px;
4455
+ position: relative;
4456
+ }
4457
+
4458
+ th.sorted-desc > span::before, th.sorted-asc > span::before {
4459
+ content: "";
4460
+ position: absolute;
4461
+ right: 0;
4462
+ top: 0;
4463
+ width: 10px;
4464
+ height: 100%;
4465
+ background-size: 100% auto;
4466
+ background-repeat: no-repeat;
4467
+ background-position: center;
4468
+ }
4469
+
4470
+ th.sorted-desc > span::before {
4471
+ -webkit-transform: rotate(0deg);
4472
+ -ms-transform: rotate(0deg);
4473
+ transform: rotate(0deg);
4474
+ }
4475
+
4476
+ th.sorted-asc > span::before {
4477
+ -webkit-transform: rotate(180deg);
4478
+ -ms-transform: rotate(180deg);
4479
+ transform: rotate(180deg);
4480
+ }
4481
+
4482
+ th.right-aligned {
4483
+ text-align: right;
4484
+ }
4485
+
4486
+ th.right-aligned > span {
4487
+ padding-right: 0;
4488
+ padding-left: 16px;
4489
+ }
4490
+
4491
+ th.right-aligned.sorted-desc > span::before {
4492
+ right: auto;
4493
+ left: 0;
4494
+ }
4495
+
4496
+ th.right-aligned.sorted-asc > span::before {
4497
+ right: auto;
4498
+ left: 0;
4499
+ }
4500
+
4501
+ th.select {
4502
+ width: 32px;
4503
+ max-width: 32px;
4504
+ z-index: 7;
4505
+ }
4506
+
4507
+ th.select input[type=checkbox] {
4508
+ position: relative;
4509
+ z-index: 8;
4510
+ }
4511
+
4512
+ th > span {
4513
+ display: inline-block;
4514
+ }
4515
+
4516
+ td {
4517
+ border-bottom: 1px solid #ebeef0;
4518
+ padding: 6px 10px;
4519
+ background: transparent;
4520
+ }
4521
+
4522
+ td.key {
4523
+ width: 15%;
4524
+ text-align: right;
4525
+ }
4526
+
4527
+ td.value {
4528
+ width: 85%;
4529
+ }
4530
+
4531
+ td.border-right {
4532
+ border-right: solid 1px #d3dbe2;
4533
+ }
4534
+
4535
+ td.select {
4536
+ width: 18px;
4537
+ max-width: 18px;
4538
+ }
4539
+
4540
+ td img {
4541
+ display: block;
4542
+ }
4543
+
4544
+ label.disabled {
4545
+ color: #a6a6a6;
4546
+ }
4547
+
4548
+ th.drag-handle, td.drag-handle {
4549
+ padding-right: 0;
4550
+ padding-left: 0;
4551
+ width: 21px;
4552
+ }
4553
+
4554
+ th.link-name, td.link-name {
4555
+ padding-left: 0;
4556
+ padding-right: 0;
4557
+ }
4558
+
4559
+ th.link-value, td.link-value {
4560
+ width: 100%;
4561
+ padding-right: 0;
4562
+ }
4563
+
4564
+ th.link-remove, td.link-remove {
4565
+ text-align: right;
4566
+ padding-right: 0;
4567
+ }
4568
+
4569
+ th.customer, td.customer {
4570
+ width: 250px;
4571
+ }
4572
+
4573
+ th.section, td.section {
4574
+ width: 20%;
4575
+ }
4576
+
4577
+ th.language, td.language {
4578
+ width: 200px;
4579
+ }
4580
+
4581
+ th.theme_language-actions, td.theme_language-actions {
4582
+ width: 180px;
4583
+ }
4584
+
4585
+ th.remove, td.remove {
4586
+ width: 21px;
4587
+ }
4588
+
4589
+ th.select, td.select {
4590
+ padding-right: 7px !important;
4591
+ padding-left: 7px !important;
4592
+ }
4593
+
4594
+ th.draggable, td.draggable {
4595
+ width: 21px;
4596
+ padding-right: 5px;
4597
+ }
4598
+
4599
+ th.border-bottom-none, td.border-bottom-none {
4600
+ border-bottom: none !important;
4601
+ }
4602
+
4603
+ tfoot, tfoot td {
4604
+ text-align: right;
4605
+ }
4606
+
4607
+ tfoot td {
4608
+ border: none;
4609
+ }
4610
+
4611
+ .table-hover tr:hover td {
4612
+ background: #eff9fd;
4613
+ }
4614
+
4615
+ .table-hover .table-blank-slate tr:hover td {
4616
+ background: transparent;
4617
+ }
4618
+
4619
+ .summary td {
4620
+ background: #fafbfc;
4621
+ }
4622
+
4623
+ td a.subdued {
4624
+ text-decoration: none;
4625
+ }
4626
+
4627
+ td a.subdued:hover {
4628
+ text-decoration: underline;
4629
+ }
4630
+
4631
+ .is-archived {
4632
+ color: #95a7b7;
4633
+ }
4634
+
4635
+ .is-archived td > a,
4636
+ .is-archived .customer-name > a {
4637
+ color: #95a7b7;
4638
+ }
4639
+
4640
+ .is-archived td > a:hover,
4641
+ .is-archived .customer-name > a:hover {
4642
+ color: #31373d;
4643
+ }
4644
+
4645
+ .is-cancelled td {
4646
+ color: #d83e3e;
4647
+ }
4648
+
4649
+ .is-cancelled td > a,
4650
+ .is-cancelled td .customer-name > a {
4651
+ color: #d83e3e;
4652
+ }
4653
+
4654
+ .is-cancelled td.total {
4655
+ text-decoration: line-through;
4656
+ }
4657
+
4658
+ .is-abandoned td {
4659
+ color: #e06b0c;
4660
+ }
4661
+
4662
+ .is-abandoned td > a,
4663
+ .is-abandoned td .customer-name > a {
4664
+ color: #e06b0c;
4665
+ }
4666
+
4667
+ .data-table-th {
4668
+ border-right: 1px solid #ececec;
4669
+ background: #fafafa;
4670
+ }
4671
+
4672
+ .data-table-td {
4673
+ border-right: 1px solid #ececec;
4674
+ -webkit-transition: all 0.15s;
4675
+ transition: all 0.15s;
4676
+ }
4677
+
4678
+ .table-label {
4679
+ background: #fafafa;
4680
+ border-right: 1px solid #e6e6e6;
4681
+ padding-left: 20px;
4682
+ padding-top: 8px;
4683
+ min-width: 220px;
4684
+ vertical-align: top;
4685
+ }
4686
+
4687
+ .table-label-copy {
4688
+ color: #444444;
4689
+ margin-top: 10px;
4690
+ }
4691
+
4692
+ .column-type {
4693
+ background: #fafafa;
4694
+ }
4695
+
4696
+ .column-type-ignored {
4697
+ color: #444444;
4698
+ text-decoration: line-through;
4699
+ }
4700
+
4701
+ .is-selected > td, .is-selected:hover > td {
4702
+ background-color: #fffbe9;
4703
+ border-color: #ebebda;
4704
+ }
4705
+
4706
+ .first-row td {
4707
+ padding-top: 15px;
4708
+ }
4709
+
4710
+ .last-row td {
4711
+ color: #333;
4712
+ border-top: 1px solid #ececec;
4713
+ }
4714
+
4715
+ .summary-total td {
4716
+ padding: 0;
4717
+ }
4718
+
4719
+ .summary-total td span {
4720
+ display: block;
4721
+ margin-top: 14px;
4722
+ padding: 6px 10px;
4723
+ border-top: 1px solid #ececec;
4724
+ font-weight: bold;
4725
+ background: #f6f6f6;
4726
+ }
4727
+
4728
+ .select {
4729
+ -webkit-user-select: none;
4730
+ -moz-user-select: none;
4731
+ -ms-user-select: none;
4732
+ user-select: none;
4733
+ }
4734
+
4735
+ .select input[type=checkbox] {
4736
+ margin: 0;
4737
+ height: auto;
4738
+ }
4739
+
4740
+ .image {
4741
+ width: 50px;
4742
+ padding-right: 5px;
4743
+ }
4744
+
4745
+ .image img {
4746
+ max-width: 50px;
4747
+ margin: 0 auto;
4748
+ border-radius: 4px;
4749
+ }
4750
+
4751
+ .image.thumb {
4752
+ height: 50px;
4753
+ }
4754
+
4755
+ .table-img {
4756
+ display: inline-block;
4757
+ vertical-align: middle;
4758
+ margin-right: 10px;
4759
+ }
4760
+
4761
+ .sortable-placeholder {
4762
+ display: block;
4763
+ }
4764
+
4765
+ .table-fixed {
4766
+ table-layout: fixed;
4767
+ }
4768
+
4769
+ .table-fixed td {
4770
+ word-wrap: break-word;
4771
+ word-break: break-word;
4772
+ }
4773
+
4774
+ .table--no-border {
4775
+ border: none;
4776
+ }
4777
+
4778
+ .table--no-border tbody {
4779
+ border: none;
4780
+ }
4781
+
4782
+ .table--no-border thead {
4783
+ border: none;
4784
+ }
4785
+
4786
+ .table--no-border tr {
4787
+ border: none;
4788
+ }
4789
+
4790
+ .table--no-border tfoot {
4791
+ border: none;
4792
+ }
4793
+
4794
+ .table--no-border th {
4795
+ border: none;
4796
+ }
4797
+
4798
+ .table--no-border td {
4799
+ border: none;
4800
+ }
4801
+
4802
+ .table__row--no-border td {
4803
+ border: none !important;
4804
+ }
4805
+
4806
+ .no-border-bottom {
4807
+ border-bottom: none !important;
4808
+ }
4809
+
4810
+ .table-dropdown {
4811
+ position: relative;
4812
+ background: #f9f9f9;
4813
+ padding: 25px 28px !important;
4814
+ border: 1px solid #dcdcdc;
4815
+ margin-top: -1px;
4816
+ }
4817
+
4818
+ .table-dropdown .heading {
4819
+ width: 100%;
4820
+ position: relative;
4821
+ left: -4px;
4822
+ }
4823
+
4824
+ .table-dropdown .buttons {
4825
+ position: relative;
4826
+ width: 100%;
4827
+ padding: 10px 10px 10px 46px;
4828
+ top: 25px;
4829
+ left: -28px;
4830
+ background: #fafafa;
4831
+ border-top: 1px solid #e6e6e6;
4832
+ border-bottom: none;
4833
+ }
4834
+
4835
+ .table-dropdown .buttons p {
4836
+ line-height: 32px;
4837
+ }
4838
+
4839
+ .table-dropdown table {
4840
+ border: none;
4841
+ }
4842
+
4843
+ .table-dropdown table th {
4844
+ cursor: default;
4845
+ border-top: none !important;
4846
+ }
4847
+
4848
+ .table-dropdown table th, .table-dropdown table tr:hover td, .table-dropdown table td {
4849
+ background: transparent !important;
4850
+ }
4851
+
4852
+ .table-dropdown table td {
4853
+ border-bottom: 1px solid #e6e6e6;
4854
+ }
4855
+
4856
+ .table-dropdown table th:first-child, .table-dropdown table td:first-child {
4857
+ padding-left: 0;
4858
+ }
4859
+
4860
+ .table-dropdown table th:last-child, .table-dropdown table td:last-child {
4861
+ padding-right: 0;
4862
+ }
4863
+
4864
+ .fulfillment-table th:first-child {
4865
+ width: 250px;
4866
+ }
4867
+
4868
+ .fulfillment-table th:last-child {
4869
+ width: 140px;
4870
+ }
4871
+
4872
+ .number-of-items {
4873
+ width: 90px;
4874
+ }
4875
+
4876
+ .table--no-side-padding th:first-child,
4877
+ .table--no-side-padding td:first-child {
4878
+ padding-left: 0;
4879
+ }
4880
+
4881
+ .table--no-side-padding th:last-child,
4882
+ .table--no-side-padding td:last-child {
4883
+ padding-right: 0;
4884
+ }
4885
+
4886
+ .table--nested td:first-child {
4887
+ padding-left: 0;
4888
+ }
4889
+
4890
+ .table--nested td:last-child {
4891
+ padding-right: 0;
4892
+ }
4893
+
4894
+ .table--nested tr:first-child td {
4895
+ padding-top: 0 !important;
4896
+ }
4897
+
4898
+ .table--extra-expanded td {
4899
+ padding-top: 10px;
4900
+ padding-bottom: 10px;
4901
+ }
4902
+
4903
+ .table--rounded-border {
4904
+ border: 1px solid #ebeef0;
4905
+ border-radius: 4px;
4906
+ }
4907
+
4908
+ .table--no-horizontal-padding td:first-child {
4909
+ padding-left: 0;
4910
+ }
4911
+
4912
+ .table--no-horizontal-padding td:last-child {
4913
+ padding-right: 0;
4914
+ }
4915
+
4916
+ .table-wrapper--scrollable {
4917
+ max-width: 100%;
4918
+ overflow-x: auto;
4919
+ -webkit-overflow-scrolling: touch;
4920
+ }
4921
+
4922
+ .table--divided {
4923
+ border-collapse: collapse;
4924
+ }
4925
+
4926
+ .table--divided tr {
4927
+ border-top: 1px solid #ebeef0;
4928
+ }
4929
+
4930
+ .table--divided tr:first-child {
4931
+ border-top: 0;
4932
+ }
4933
+
4934
+ .table--divided td {
4935
+ border: 0;
4936
+ }
4937
+
4938
+ .table-cell--no-left-padding {
4939
+ padding-left: 0;
4940
+ }
4941
+
4942
+ .table-cell--no-right-padding {
4943
+ padding-right: 0;
4944
+ }
4945
+
4946
+ .ui-sortable-helper > tr > td {
4947
+ background: #ffffff;
4948
+ }
4949
+
4950
+ .table-wrapper-sticky {
4951
+ position: relative;
4952
+ }
4953
+
4954
+ .table-wrapper-sticky--is-sticky td, .table-wrapper-sticky--is-sticky th {
4955
+ box-sizing: border-box;
4956
+ }
4957
+
4958
+ .table-wrapper-sticky--is-sticky .table-wrapper {
4959
+ overflow-x: scroll;
4960
+ }
4961
+
4962
+ .table-wrapper-sticky--is-sticky .table__cell--sticky {
4963
+ background-color: #ffffff;
4964
+ position: absolute;
4965
+ z-index: 4;
4966
+ display: -webkit-box;
4967
+ display: -webkit-flex;
4968
+ display: -ms-flexbox;
4969
+ display: flex;
4970
+ -webkit-box-align: center;
4971
+ -webkit-align-items: center;
4972
+ -ms-flex-align: center;
4973
+ align-items: center;
4974
+ }
4975
+
4976
+ .table-wrapper-sticky--is-sticky .table__cell--sticky:first-child {
4977
+ left: 0;
4978
+ box-shadow: 4px 0 3px -1px rgba(69, 78, 87, 0.05);
4979
+ border-right: solid 1px #d3dbe2;
4980
+ }
4981
+
4982
+ .table-wrapper-sticky--is-sticky .table__cell--sticky:last-child {
4983
+ right: 0;
4984
+ box-shadow: -4px 0 3px -1px rgba(69, 78, 87, 0.05);
4985
+ border-left: solid 1px #d3dbe2;
4986
+ }
4987
+
4988
+ .selected .table__cell--sticky {
4989
+ background-color: #fffbe9;
4990
+ }
4991
+
4992
+ .table-wrapper-sticky--supports-position-sticky .table__cell--sticky {
4993
+ display: table-cell;
4994
+ position: -webkit-sticky;
4995
+ position: sticky;
4996
+ }
4997
+
4998
+ .table-wrapper-sticky--is-sticky .table__cell--sticky--bulk-selection-active:first-child {
4999
+ width: 100% !important;
5000
+ border-left: none;
5001
+ border-right: none;
5002
+ box-shadow: none;
5003
+ display: block;
5004
+ position: absolute;
5005
+ z-index: 6;
5006
+ }
5007
+
5008
+ .table-wrapper-sticky--is-sticky.table-wrapper-sticky--is-resizing .table__cell--sticky--bulk-selection-active {
5009
+ width: auto !important;
5010
+ }
5011
+
5012
+ .ui-annotated-section {
5013
+ display: -webkit-box;
5014
+ display: -webkit-flex;
5015
+ display: -ms-flexbox;
5016
+ display: flex;
5017
+ -webkit-flex-wrap: wrap;
5018
+ -ms-flex-wrap: wrap;
5019
+ flex-wrap: wrap;
5020
+ -webkit-box-pack: center;
5021
+ -webkit-justify-content: center;
5022
+ -ms-flex-pack: center;
5023
+ justify-content: center;
5024
+ max-width: 1036px;
5025
+ margin: 0 auto 20px;
5026
+ }
5027
+
5028
+ .ui-annotated-section__content {
5029
+ -webkit-box-flex: 2;
5030
+ -webkit-flex: 2 1 480px;
5031
+ -ms-flex: 2 1 480px;
5032
+ flex: 2 1 480px;
5033
+ max-width: 100%;
5034
+ }
5035
+
5036
+ .ui-annotated-section__content .next-card {
5037
+ border-radius: 0;
5038
+ }
5039
+
5040
+ .ui-annotated-section__annotation {
5041
+ -webkit-box-flex: 1;
5042
+ -webkit-flex: 1 0 240px;
5043
+ -ms-flex: 1 0 240px;
5044
+ flex: 1 0 240px;
5045
+ color: #798c9c;
5046
+ }
5047
+
5048
+ .ui-annotated-section__title {
5049
+ padding: 20px;
5050
+ }
5051
+
5052
+ .ui-annotated-section__description {
5053
+ padding: 0 20px 20px 20px;
5054
+ }
5055
+
5056
+ .ui-annotated-section__description p {
5057
+ margin-bottom: 10px;
5058
+ }
5059
+
5060
+ @media screen and (min-width: 720px) {
5061
+ .ui-annotated-section {
5062
+ padding-top: 20px;
5063
+ }
5064
+ .ui-annotated-section + .ui-annotated-section {
5065
+ border-top: 1px solid #d3dbe2;
5066
+ }
5067
+
5068
+ .ui-annotated-section__content {
5069
+ padding: 0 20px;
5070
+ }
5071
+ .ui-annotated-section__content .next-card {
5072
+ border-radius: 3px;
5073
+ }
5074
+
5075
+ .ui-annotated-section__annotation {
5076
+ padding: 0 20px;
5077
+ }
5078
+ }
5079
+
5080
+ .next-select__wrapper:after {
5081
+ background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20version%3D%221.1%22%20id%3D%22Layer_1%22%20x%3D%220px%22%20y%3D%220px%22%20viewBox%3D%220%200%2028%2028%22%20enable-background%3D%22new%200%200%2028%2028%22%20xml%3Aspace%3D%22preserve%22%3E%3Cstyle%20type%3D%22text%2Fcss%22%3Ecircle%2Cellipse%2Cline%2Cpath%2Cpolygon%2Cpolyline%2Crect%2Ctext%7Bfill%3A%23798c9c%20%21important%3B%20%7D%3C%2Fstyle%3E%3Cpath%20fill%3D%22%23329ECC%22%20d%3D%22M24.5%2C6.2L13.9%2C16.8L3.5%2C6.2L0.8%2C9l13.2%2C13.3L27.2%2C9L24.5%2C6.2z%22%2F%3E%3C%2Fsvg%3E);
5082
+ }
5083
+
5084
+ .next-checkbox--styled {
5085
+ pointer-events: none;
5086
+ }