kube_for_rails 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,2156 @@
1
+ /*
2
+ Kube. CSS & JS Framework
3
+ Version 6.5.2
4
+ Updated: February 2, 2017
5
+
6
+ http://imperavi.com/kube/
7
+
8
+ Copyright (c) 2009-2017, Imperavi LLC.
9
+ License: MIT
10
+ */
11
+ html {
12
+ box-sizing: border-box; }
13
+
14
+ *,
15
+ *:before,
16
+ *:after {
17
+ box-sizing: inherit; }
18
+
19
+ * {
20
+ margin: 0;
21
+ padding: 0;
22
+ outline: 0;
23
+ -webkit-overflow-scrolling: touch; }
24
+
25
+ img,
26
+ video,
27
+ audio {
28
+ max-width: 100%; }
29
+
30
+ img,
31
+ video {
32
+ height: auto; }
33
+
34
+ svg {
35
+ max-height: 100%; }
36
+
37
+ iframe {
38
+ border: none; }
39
+
40
+ ::-moz-focus-inner {
41
+ border: 0;
42
+ padding: 0; }
43
+
44
+ input[type="radio"],
45
+ input[type="checkbox"] {
46
+ vertical-align: middle;
47
+ position: relative;
48
+ bottom: 0.15rem;
49
+ font-size: 115%;
50
+ margin-right: 3px; }
51
+
52
+ input[type="search"] {
53
+ -webkit-appearance: textfield; }
54
+
55
+ input[type="search"]::-webkit-search-decoration,
56
+ input[type="search"]::-webkit-search-cancel-button {
57
+ -webkit-appearance: none; }
58
+
59
+ .black {
60
+ color: #0d0d0e; }
61
+
62
+ .inverted {
63
+ color: #fff; }
64
+
65
+ .error {
66
+ color: #f03c69; }
67
+
68
+ .success {
69
+ color: #35beb1; }
70
+
71
+ .warning {
72
+ color: #f7ba45; }
73
+
74
+ .focus {
75
+ color: #1c86f2; }
76
+
77
+ .aluminum {
78
+ color: #f8f8f8; }
79
+
80
+ .silver {
81
+ color: #e0e1e1; }
82
+
83
+ .lightgray {
84
+ color: #d4d4d4; }
85
+
86
+ .gray {
87
+ color: #bdbdbd; }
88
+
89
+ .midgray {
90
+ color: #676b72; }
91
+
92
+ .darkgray {
93
+ color: #313439; }
94
+
95
+ .bg-black {
96
+ background-color: #0d0d0e; }
97
+
98
+ .bg-inverted {
99
+ background-color: #fff; }
100
+
101
+ .bg-error {
102
+ background-color: #f03c69; }
103
+
104
+ .bg-success {
105
+ background-color: #35beb1; }
106
+
107
+ .bg-warning {
108
+ background-color: #f7ba45; }
109
+
110
+ .bg-focus {
111
+ background-color: #1c86f2; }
112
+
113
+ .bg-aluminum {
114
+ background-color: #f8f8f8; }
115
+
116
+ .bg-silver {
117
+ background-color: #e0e1e1; }
118
+
119
+ .bg-lightgray {
120
+ background-color: #d4d4d4; }
121
+
122
+ .bg-gray {
123
+ background-color: #bdbdbd; }
124
+
125
+ .bg-midgray {
126
+ background-color: #676b72; }
127
+
128
+ .bg-darkgray {
129
+ background-color: #313439; }
130
+
131
+ .bg-highlight {
132
+ background-color: #edf2ff; }
133
+
134
+ html,
135
+ body {
136
+ font-size: 16px;
137
+ line-height: 24px; }
138
+
139
+ body {
140
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
141
+ color: #313439;
142
+ background-color: transparent; }
143
+
144
+ a {
145
+ color: #3794de; }
146
+
147
+ a:hover {
148
+ color: #f03c69; }
149
+
150
+ h1.title, h1, h2, h3, h4, h5, h6 {
151
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
152
+ font-weight: bold;
153
+ color: #0d0d0e;
154
+ text-rendering: optimizeLegibility;
155
+ margin-bottom: 16px; }
156
+
157
+ h1.title {
158
+ font-size: 60px;
159
+ line-height: 64px;
160
+ margin-bottom: 8px; }
161
+
162
+ h1,
163
+ .h1 {
164
+ font-size: 48px;
165
+ line-height: 52px; }
166
+
167
+ h2,
168
+ .h2 {
169
+ font-size: 36px;
170
+ line-height: 40px; }
171
+
172
+ h3,
173
+ .h3 {
174
+ font-size: 24px;
175
+ line-height: 32px; }
176
+
177
+ h4,
178
+ .h4 {
179
+ font-size: 21px;
180
+ line-height: 32px; }
181
+
182
+ h5,
183
+ .h5 {
184
+ font-size: 18px;
185
+ line-height: 28px; }
186
+
187
+ h6,
188
+ .h6 {
189
+ font-size: 16px;
190
+ line-height: 24px; }
191
+
192
+ h1 a, .h1 a,
193
+ h2 a, .h2 a,
194
+ h3 a, .h3 a,
195
+ h4 a, .h4 a,
196
+ h5 a, .h5 a,
197
+ h6 a, .h6 a {
198
+ color: inherit; }
199
+
200
+ p + h2,
201
+ p + h3,
202
+ p + h4,
203
+ p + h5,
204
+ p + h6,
205
+ ul + h2,
206
+ ul + h3,
207
+ ul + h4,
208
+ ul + h5,
209
+ ul + h6,
210
+ ol + h2,
211
+ ol + h3,
212
+ ol + h4,
213
+ ol + h5,
214
+ ol + h6,
215
+ dl + h2,
216
+ dl + h3,
217
+ dl + h4,
218
+ dl + h5,
219
+ dl + h6,
220
+ blockquote + h2,
221
+ blockquote + h3,
222
+ blockquote + h4,
223
+ blockquote + h5,
224
+ blockquote + h6,
225
+ hr + h2,
226
+ hr + h3,
227
+ hr + h4,
228
+ hr + h5,
229
+ hr + h6,
230
+ pre + h2,
231
+ pre + h3,
232
+ pre + h4,
233
+ pre + h5,
234
+ pre + h6,
235
+ table + h2,
236
+ table + h3,
237
+ table + h4,
238
+ table + h5,
239
+ table + h6,
240
+ form + h2,
241
+ form + h3,
242
+ form + h4,
243
+ form + h5,
244
+ form + h6,
245
+ figure + h2,
246
+ figure + h3,
247
+ figure + h4,
248
+ figure + h5,
249
+ figure + h6 {
250
+ margin-top: 24px; }
251
+
252
+ ul,
253
+ ul ul,
254
+ ul ol,
255
+ ol,
256
+ ol ul,
257
+ ol ol {
258
+ margin: 0 0 0 24px; }
259
+
260
+ ol ol li {
261
+ list-style-type: lower-alpha; }
262
+
263
+ ol ol ol li {
264
+ list-style-type: lower-roman; }
265
+
266
+ nav ul,
267
+ nav ol {
268
+ margin: 0;
269
+ list-style: none; }
270
+ nav ul ul,
271
+ nav ul ol,
272
+ nav ol ul,
273
+ nav ol ol {
274
+ margin-left: 24px; }
275
+
276
+ dl dt {
277
+ font-weight: bold; }
278
+
279
+ dd {
280
+ margin-left: 24px; }
281
+
282
+ p, blockquote, hr, pre, ol, ul, dl, table, fieldset, figure, address, form {
283
+ margin-bottom: 16px; }
284
+
285
+ hr {
286
+ border: none;
287
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1);
288
+ margin-top: -1px; }
289
+
290
+ blockquote {
291
+ padding-left: 1rem;
292
+ border-left: 4px solid rgba(0, 0, 0, 0.1);
293
+ font-style: italic;
294
+ color: rgba(49, 52, 57, 0.65); }
295
+ blockquote p {
296
+ margin-bottom: .5rem; }
297
+
298
+ time, cite, small, figcaption {
299
+ font-size: 87.5%; }
300
+
301
+ cite {
302
+ opacity: .6; }
303
+
304
+ abbr[title], dfn[title] {
305
+ border-bottom: 1px dotted rgba(0, 0, 0, 0.5);
306
+ cursor: help; }
307
+
308
+ var {
309
+ font-size: 16px;
310
+ opacity: .6;
311
+ font-style: normal; }
312
+
313
+ mark, code, samp, kbd {
314
+ position: relative;
315
+ top: -1px;
316
+ padding: 4px 4px 2px 4px;
317
+ display: inline-block;
318
+ line-height: 1;
319
+ color: rgba(49, 52, 57, 0.85); }
320
+
321
+ code {
322
+ background: #e0e1e1; }
323
+
324
+ mark {
325
+ background: #f7ba45; }
326
+
327
+ samp {
328
+ color: #fff;
329
+ background: #1c86f2; }
330
+
331
+ kbd {
332
+ border: 1px solid rgba(0, 0, 0, 0.1); }
333
+
334
+ sub,
335
+ sup {
336
+ font-size: x-small;
337
+ line-height: 0;
338
+ margin-left: 1rem/4;
339
+ position: relative; }
340
+
341
+ sup {
342
+ top: 0; }
343
+
344
+ sub {
345
+ bottom: 1px; }
346
+
347
+ pre, code, samp, var, kbd {
348
+ font-family: Consolas, Monaco, "Courier New", monospace; }
349
+
350
+ pre, code, samp, var, kbd, mark {
351
+ font-size: 87.5%; }
352
+
353
+ pre,
354
+ pre code {
355
+ background: #f8f8f8;
356
+ padding: 0;
357
+ top: 0;
358
+ display: block;
359
+ line-height: 20px;
360
+ color: rgba(49, 52, 57, 0.85);
361
+ overflow: none;
362
+ white-space: pre-wrap; }
363
+
364
+ pre {
365
+ padding: 1rem; }
366
+
367
+ figcaption {
368
+ opacity: .6; }
369
+
370
+ figure figcaption {
371
+ position: relative;
372
+ top: -1rem/2; }
373
+
374
+ figure pre {
375
+ background: none;
376
+ border: 1px solid rgba(0, 0, 0, 0.1);
377
+ border-radius: 4px; }
378
+
379
+ figure .video-container,
380
+ figure pre {
381
+ margin-bottom: 8px; }
382
+
383
+ .text-left {
384
+ text-align: left; }
385
+
386
+ .text-center {
387
+ text-align: center; }
388
+
389
+ .text-right {
390
+ text-align: right; }
391
+
392
+ ul.unstyled {
393
+ margin-left: 0; }
394
+
395
+ ul.unstyled,
396
+ ul.unstyled ul {
397
+ list-style: none; }
398
+
399
+ .monospace {
400
+ font-family: Consolas, Monaco, "Courier New", monospace; }
401
+
402
+ .upper {
403
+ text-transform: uppercase; }
404
+
405
+ .lower {
406
+ text-transform: lowercase; }
407
+
408
+ .italic {
409
+ font-style: italic !important; }
410
+
411
+ .strong {
412
+ font-weight: bold !important; }
413
+
414
+ .normal {
415
+ font-weight: normal !important; }
416
+
417
+ .muted {
418
+ opacity: .55; }
419
+
420
+ a.muted {
421
+ color: #0d0d0e; }
422
+
423
+ a.muted:hover {
424
+ opacity: 1; }
425
+
426
+ .black {
427
+ color: #0d0d0e; }
428
+
429
+ .smaller {
430
+ font-size: 12px;
431
+ line-height: 20px; }
432
+
433
+ .small {
434
+ font-size: 14px;
435
+ line-height: 20px; }
436
+
437
+ .big {
438
+ font-size: 18px;
439
+ line-height: 28px; }
440
+
441
+ .large {
442
+ font-size: 20px;
443
+ line-height: 32px; }
444
+
445
+ .end {
446
+ margin-bottom: 0 !important; }
447
+
448
+ .highlight {
449
+ background-color: #edf2ff; }
450
+
451
+ .nowrap,
452
+ .nowrap td {
453
+ white-space: nowrap; }
454
+
455
+ @media (min-width: 768px) and (max-width: 1024px) {
456
+ .columns-2,
457
+ .columns-3,
458
+ .columns-4 {
459
+ column-gap: 24px; }
460
+ .columns-2 {
461
+ column-count: 2; }
462
+ .columns-3 {
463
+ column-count: 3; }
464
+ .columns-4 {
465
+ column-count: 4; } }
466
+
467
+ .row {
468
+ display: flex;
469
+ flex-direction: row;
470
+ flex-wrap: wrap; }
471
+ @media (max-width: 768px) {
472
+ .row {
473
+ flex-direction: column;
474
+ flex-wrap: nowrap; } }
475
+ .row.gutters,
476
+ .row.gutters > .row {
477
+ margin-left: -2%; }
478
+ @media (max-width: 768px) {
479
+ .row.gutters,
480
+ .row.gutters > .row {
481
+ margin-left: 0; } }
482
+ .row.gutters > .col,
483
+ .row.gutters > .row > .col {
484
+ margin-left: 2%; }
485
+ @media (max-width: 768px) {
486
+ .row.gutters > .col,
487
+ .row.gutters > .row > .col {
488
+ margin-left: 0; } }
489
+ .row.around {
490
+ justify-content: space-around; }
491
+ .row.between {
492
+ justify-content: space-between; }
493
+ .row.auto .col {
494
+ flex-grow: 1; }
495
+
496
+ .col-1 {
497
+ width: 8.33333%; }
498
+
499
+ .offset-1 {
500
+ margin-left: 8.33333%; }
501
+
502
+ .col-2 {
503
+ width: 16.66667%; }
504
+
505
+ .offset-2 {
506
+ margin-left: 16.66667%; }
507
+
508
+ .col-3 {
509
+ width: 25%; }
510
+
511
+ .offset-3 {
512
+ margin-left: 25%; }
513
+
514
+ .col-4 {
515
+ width: 33.33333%; }
516
+
517
+ .offset-4 {
518
+ margin-left: 33.33333%; }
519
+
520
+ .col-5 {
521
+ width: 41.66667%; }
522
+
523
+ .offset-5 {
524
+ margin-left: 41.66667%; }
525
+
526
+ .col-6 {
527
+ width: 50%; }
528
+
529
+ .offset-6 {
530
+ margin-left: 50%; }
531
+
532
+ .col-7 {
533
+ width: 58.33333%; }
534
+
535
+ .offset-7 {
536
+ margin-left: 58.33333%; }
537
+
538
+ .col-8 {
539
+ width: 66.66667%; }
540
+
541
+ .offset-8 {
542
+ margin-left: 66.66667%; }
543
+
544
+ .col-9 {
545
+ width: 75%; }
546
+
547
+ .offset-9 {
548
+ margin-left: 75%; }
549
+
550
+ .col-10 {
551
+ width: 83.33333%; }
552
+
553
+ .offset-10 {
554
+ margin-left: 83.33333%; }
555
+
556
+ .col-11 {
557
+ width: 91.66667%; }
558
+
559
+ .offset-11 {
560
+ margin-left: 91.66667%; }
561
+
562
+ .col-12 {
563
+ width: 100%; }
564
+
565
+ .offset-12 {
566
+ margin-left: 100%; }
567
+
568
+ .gutters > .col-1 {
569
+ width: calc(8.33333% - 2%); }
570
+
571
+ .gutters > .offset-1 {
572
+ margin-left: calc(8.33333% + 2%) !important; }
573
+
574
+ .gutters > .col-2 {
575
+ width: calc(16.66667% - 2%); }
576
+
577
+ .gutters > .offset-2 {
578
+ margin-left: calc(16.66667% + 2%) !important; }
579
+
580
+ .gutters > .col-3 {
581
+ width: calc(25% - 2%); }
582
+
583
+ .gutters > .offset-3 {
584
+ margin-left: calc(25% + 2%) !important; }
585
+
586
+ .gutters > .col-4 {
587
+ width: calc(33.33333% - 2%); }
588
+
589
+ .gutters > .offset-4 {
590
+ margin-left: calc(33.33333% + 2%) !important; }
591
+
592
+ .gutters > .col-5 {
593
+ width: calc(41.66667% - 2%); }
594
+
595
+ .gutters > .offset-5 {
596
+ margin-left: calc(41.66667% + 2%) !important; }
597
+
598
+ .gutters > .col-6 {
599
+ width: calc(50% - 2%); }
600
+
601
+ .gutters > .offset-6 {
602
+ margin-left: calc(50% + 2%) !important; }
603
+
604
+ .gutters > .col-7 {
605
+ width: calc(58.33333% - 2%); }
606
+
607
+ .gutters > .offset-7 {
608
+ margin-left: calc(58.33333% + 2%) !important; }
609
+
610
+ .gutters > .col-8 {
611
+ width: calc(66.66667% - 2%); }
612
+
613
+ .gutters > .offset-8 {
614
+ margin-left: calc(66.66667% + 2%) !important; }
615
+
616
+ .gutters > .col-9 {
617
+ width: calc(75% - 2%); }
618
+
619
+ .gutters > .offset-9 {
620
+ margin-left: calc(75% + 2%) !important; }
621
+
622
+ .gutters > .col-10 {
623
+ width: calc(83.33333% - 2%); }
624
+
625
+ .gutters > .offset-10 {
626
+ margin-left: calc(83.33333% + 2%) !important; }
627
+
628
+ .gutters > .col-11 {
629
+ width: calc(91.66667% - 2%); }
630
+
631
+ .gutters > .offset-11 {
632
+ margin-left: calc(91.66667% + 2%) !important; }
633
+
634
+ .gutters > .col-12 {
635
+ width: calc(100% - 2%); }
636
+
637
+ .gutters > .offset-12 {
638
+ margin-left: calc(100% + 2%) !important; }
639
+
640
+ @media (max-width: 768px) {
641
+ [class^='offset-'],
642
+ [class*=' offset-'] {
643
+ margin-left: 0; } }
644
+
645
+ .first {
646
+ order: -1; }
647
+
648
+ .last {
649
+ order: 1; }
650
+
651
+ @media (max-width: 768px) {
652
+ .row .col {
653
+ margin-left: 0;
654
+ width: 100%; }
655
+ .row.gutters .col {
656
+ margin-bottom: 16px; }
657
+ .first-sm {
658
+ order: -1; }
659
+ .last-sm {
660
+ order: 1; } }
661
+
662
+ table {
663
+ border-collapse: collapse;
664
+ border-spacing: 0;
665
+ max-width: 100%;
666
+ width: 100%;
667
+ empty-cells: show;
668
+ font-size: 15px;
669
+ line-height: 24px; }
670
+
671
+ table caption {
672
+ text-align: left;
673
+ font-size: 14px;
674
+ font-weight: 500;
675
+ color: #676b72; }
676
+
677
+ th {
678
+ text-align: left;
679
+ font-weight: 700;
680
+ vertical-align: bottom; }
681
+
682
+ td {
683
+ vertical-align: top; }
684
+
685
+ tr.align-middle td,
686
+ td.align-middle {
687
+ vertical-align: middle; }
688
+
689
+ th,
690
+ td {
691
+ padding: 1rem 1rem;
692
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
693
+ th:first-child,
694
+ td:first-child {
695
+ padding-left: 0; }
696
+ th:last-child,
697
+ td:last-child {
698
+ padding-right: 0; }
699
+
700
+ tfoot th,
701
+ tfoot td {
702
+ color: rgba(49, 52, 57, 0.5); }
703
+
704
+ table.bordered td,
705
+ table.bordered th {
706
+ border: 1px solid rgba(0, 0, 0, 0.05); }
707
+
708
+ table.striped tr:nth-child(odd) td {
709
+ background: #f8f8f8; }
710
+
711
+ table.bordered td:first-child,
712
+ table.bordered th:first-child,
713
+ table.striped td:first-child,
714
+ table.striped th:first-child {
715
+ padding-left: 1rem; }
716
+
717
+ table.bordered td:last-child,
718
+ table.bordered th:last-child,
719
+ table.striped td:last-child,
720
+ table.striped th:last-child {
721
+ padding-right: 1rem; }
722
+
723
+ table.unstyled td,
724
+ table.unstyled th {
725
+ border: none;
726
+ padding: 0; }
727
+
728
+ fieldset {
729
+ font-family: inherit;
730
+ border: 1px solid rgba(0, 0, 0, 0.1);
731
+ padding: 2rem;
732
+ margin-bottom: 2rem;
733
+ margin-top: 2rem; }
734
+
735
+ legend {
736
+ font-weight: bold;
737
+ font-size: 12px;
738
+ text-transform: uppercase;
739
+ padding: 0 1rem;
740
+ margin-left: -1rem;
741
+ top: 2px;
742
+ position: relative;
743
+ line-height: 0; }
744
+
745
+ input,
746
+ textarea,
747
+ select {
748
+ display: block;
749
+ width: 100%;
750
+ font-family: inherit;
751
+ font-size: 15px;
752
+ height: 40px;
753
+ outline: none;
754
+ vertical-align: middle;
755
+ background-color: #fff;
756
+ border: 1px solid #d4d4d4;
757
+ border-radius: 3px;
758
+ box-shadow: none;
759
+ padding: 0 12px; }
760
+
761
+ input.small,
762
+ textarea.small,
763
+ select.small {
764
+ height: 36px;
765
+ font-size: 13px;
766
+ padding: 0 12px;
767
+ border-radius: 3px; }
768
+
769
+ input.big,
770
+ textarea.big,
771
+ select.big {
772
+ height: 48px;
773
+ font-size: 17px;
774
+ padding: 0 12px;
775
+ border-radius: 3px; }
776
+
777
+ input:focus,
778
+ textarea:focus,
779
+ select:focus {
780
+ outline: none;
781
+ background-color: #fff;
782
+ border-color: #1c86f2;
783
+ box-shadow: 0 0 1px #1c86f2 inset; }
784
+
785
+ input.error,
786
+ textarea.error,
787
+ select.error {
788
+ background-color: rgba(240, 60, 105, 0.1);
789
+ border: 1px solid #f583a0; }
790
+ input.error:focus,
791
+ textarea.error:focus,
792
+ select.error:focus {
793
+ border-color: #f03c69;
794
+ box-shadow: 0 0 1px #f03c69 inset; }
795
+
796
+ input.success,
797
+ textarea.success,
798
+ select.success {
799
+ background-color: rgba(53, 190, 177, 0.1);
800
+ border: 1px solid #6ad5cb; }
801
+ input.success:focus,
802
+ textarea.success:focus,
803
+ select.success:focus {
804
+ border-color: #35beb1;
805
+ box-shadow: 0 0 1px #35beb1 inset; }
806
+
807
+ input:disabled, input.disabled,
808
+ textarea:disabled,
809
+ textarea.disabled,
810
+ select:disabled,
811
+ select.disabled {
812
+ resize: none;
813
+ opacity: 0.6;
814
+ cursor: default;
815
+ font-style: italic;
816
+ color: rgba(0, 0, 0, 0.5); }
817
+
818
+ select {
819
+ -webkit-appearance: none;
820
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="9" height="12" viewBox="0 0 9 12"><path fill="#5e6c75" d="M0.722,4.823L-0.01,4.1,4.134-.01,4.866,0.716Zm7.555,0L9.01,4.1,4.866-.01l-0.732.726ZM0.722,7.177L-0.01,7.9,4.134,12.01l0.732-.726Zm7.555,0L9.01,7.9,4.866,12.01l-0.732-.726Z"/></svg>');
821
+ background-repeat: no-repeat;
822
+ background-position: right 1rem center; }
823
+
824
+ select[multiple] {
825
+ background-image: none;
826
+ height: auto;
827
+ padding: .5rem .75rem; }
828
+
829
+ textarea {
830
+ height: auto;
831
+ padding: 8px 12px;
832
+ line-height: 24px;
833
+ vertical-align: top; }
834
+
835
+ input[type="file"] {
836
+ width: auto;
837
+ border: none;
838
+ padding: 0;
839
+ height: auto;
840
+ background: none;
841
+ box-shadow: none;
842
+ display: inline-block; }
843
+
844
+ input[type="search"],
845
+ input.search {
846
+ background-repeat: no-repeat;
847
+ background-position: 8px 53%;
848
+ background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 16 16"><path fill="#000" fill-opacity="0.4" d="M14.891,14.39l-0.5.5a0.355,0.355,0,0,1-.5,0L9.526,10.529a5.3,5.3,0,1,1,2.106-4.212,5.268,5.268,0,0,1-1.1,3.21l4.362,4.362A0.354,0.354,0,0,1,14.891,14.39ZM6.316,2.418a3.9,3.9,0,1,0,3.9,3.9A3.9,3.9,0,0,0,6.316,2.418Z"/></svg>');
849
+ padding-left: 32px; }
850
+
851
+ input[type="radio"],
852
+ input[type="checkbox"] {
853
+ display: inline-block;
854
+ width: auto;
855
+ height: auto;
856
+ padding: 0; }
857
+
858
+ label {
859
+ display: block;
860
+ color: #313439;
861
+ margin-bottom: 4px;
862
+ font-size: 15px; }
863
+ label.checkbox,
864
+ label .desc,
865
+ label .success,
866
+ label .error {
867
+ text-transform: none;
868
+ font-weight: normal; }
869
+ label.checkbox {
870
+ font-size: 16px;
871
+ line-height: 24px;
872
+ cursor: pointer;
873
+ color: inherit; }
874
+ label.checkbox input {
875
+ margin-top: 0; }
876
+
877
+ .form-checkboxes label.checkbox {
878
+ display: inline-block;
879
+ margin-right: 16px; }
880
+
881
+ .req {
882
+ position: relative;
883
+ top: 1px;
884
+ font-weight: bold;
885
+ color: #f03c69;
886
+ font-size: 110%; }
887
+
888
+ .desc {
889
+ color: rgba(49, 52, 57, 0.5);
890
+ font-size: 12px;
891
+ line-height: 20px; }
892
+
893
+ span.desc {
894
+ margin-left: 4px; }
895
+
896
+ div.desc {
897
+ margin-top: 4px;
898
+ margin-bottom: -8px; }
899
+
900
+ .form-buttons button,
901
+ .form-buttons .button {
902
+ margin-right: 8px; }
903
+
904
+ form,
905
+ .form-item {
906
+ margin-bottom: 2rem; }
907
+
908
+ .form > .form-item:last-child {
909
+ margin-bottom: 0; }
910
+
911
+ .form .row:last-child .form-item {
912
+ margin-bottom: 0; }
913
+
914
+ .form span.success,
915
+ .form span.error {
916
+ font-size: 12px;
917
+ line-height: 20px;
918
+ margin-left: 4px; }
919
+
920
+ .form-inline input,
921
+ .form-inline textarea,
922
+ .form-inline select {
923
+ display: inline-block;
924
+ width: auto; }
925
+
926
+ .append,
927
+ .prepend {
928
+ display: flex; }
929
+ .append input,
930
+ .prepend input {
931
+ flex: 1; }
932
+ .append .button,
933
+ .append span,
934
+ .prepend .button,
935
+ .prepend span {
936
+ flex-shrink: 0; }
937
+ .append span,
938
+ .prepend span {
939
+ display: flex;
940
+ flex-direction: column;
941
+ justify-content: center;
942
+ font-weight: normal;
943
+ border: 1px solid #d4d4d4;
944
+ background-color: #f8f8f8;
945
+ padding: 0 .875rem;
946
+ color: rgba(0, 0, 0, 0.5);
947
+ font-size: 12px;
948
+ white-space: nowrap; }
949
+
950
+ .prepend input {
951
+ border-radius: 0 3px 3px 0; }
952
+
953
+ .prepend .button {
954
+ margin-right: -1px;
955
+ border-radius: 3px 0 0 3px !important; }
956
+
957
+ .prepend span {
958
+ border-right: none;
959
+ border-radius: 3px 0 0 3px; }
960
+
961
+ .append input {
962
+ border-radius: 3px 0 0 3px; }
963
+
964
+ .append .button {
965
+ margin-left: -1px;
966
+ border-radius: 0 3px 3px 0 !important; }
967
+
968
+ .append span {
969
+ border-left: none;
970
+ border-radius: 0 3px 3px 0; }
971
+
972
+ button,
973
+ .button {
974
+ font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
975
+ font-size: 15px;
976
+ color: #fff;
977
+ background-color: #1c86f2;
978
+ border-radius: 3px;
979
+ min-height: 40px;
980
+ padding: 8px 20px;
981
+ font-weight: 500;
982
+ text-decoration: none;
983
+ cursor: pointer;
984
+ display: inline-block;
985
+ line-height: 20px;
986
+ border: 1px solid transparent;
987
+ vertical-align: middle;
988
+ -webkit-appearance: none; }
989
+ button i,
990
+ .button i {
991
+ position: relative;
992
+ top: 1px;
993
+ margin: 0 2px; }
994
+
995
+ input[type="submit"] {
996
+ width: auto; }
997
+
998
+ button:hover,
999
+ .button:hover {
1000
+ outline: none;
1001
+ text-decoration: none;
1002
+ color: #fff;
1003
+ background-color: #4ca0f5; }
1004
+
1005
+ .button:disabled,
1006
+ .button.disabled {
1007
+ cursor: default;
1008
+ font-style: normal;
1009
+ color: rgba(255, 255, 255, 0.7);
1010
+ background-color: rgba(28, 134, 242, 0.7); }
1011
+
1012
+ .button.small {
1013
+ font-size: 13px;
1014
+ min-height: 36px;
1015
+ padding: 6px 20px;
1016
+ border-radius: 3px; }
1017
+
1018
+ .button.big {
1019
+ font-size: 17px;
1020
+ min-height: 48px;
1021
+ padding: 13px 24px;
1022
+ border-radius: 3px; }
1023
+
1024
+ .button.large {
1025
+ font-size: 19px;
1026
+ min-height: 56px;
1027
+ padding: 20px 36px;
1028
+ border-radius: 3px; }
1029
+
1030
+ .button.outline {
1031
+ background: none;
1032
+ border-width: 2px;
1033
+ border-color: #1c86f2;
1034
+ color: #1c86f2; }
1035
+ .button.outline:hover {
1036
+ background: none;
1037
+ color: rgba(28, 134, 242, 0.6);
1038
+ border-color: rgba(28, 134, 242, 0.5); }
1039
+ .button.outline:disabled, .button.outline.disabled {
1040
+ background: none;
1041
+ color: rgba(28, 134, 242, 0.7);
1042
+ border-color: rgba(28, 134, 242, 0.5); }
1043
+
1044
+ .button.inverted {
1045
+ color: #000;
1046
+ background-color: #fff; }
1047
+ .button.inverted:hover {
1048
+ color: #000;
1049
+ background-color: white; }
1050
+ .button.inverted:disabled, .button.inverted.disabled {
1051
+ color: rgba(0, 0, 0, 0.7);
1052
+ background-color: rgba(255, 255, 255, 0.7); }
1053
+ .button.inverted.outline {
1054
+ background: none;
1055
+ color: #fff;
1056
+ border-color: #fff; }
1057
+ .button.inverted.outline:hover {
1058
+ color: rgba(255, 255, 255, 0.6);
1059
+ border-color: rgba(255, 255, 255, 0.5); }
1060
+ .button.inverted.outline:disabled, .button.inverted.outline.disabled {
1061
+ background: none;
1062
+ color: rgba(255, 255, 255, 0.7);
1063
+ border-color: rgba(255, 255, 255, 0.5); }
1064
+ .button.inverted:hover {
1065
+ opacity: .7; }
1066
+
1067
+ .button.round {
1068
+ border-radius: 56px; }
1069
+
1070
+ .button.raised {
1071
+ box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3); }
1072
+
1073
+ .button.upper {
1074
+ text-transform: uppercase;
1075
+ letter-spacing: .04em;
1076
+ font-size: 13px; }
1077
+ .button.upper.small {
1078
+ font-size: 11px; }
1079
+ .button.upper.big {
1080
+ font-size: 13px; }
1081
+ .button.upper.large {
1082
+ font-size: 15px; }
1083
+
1084
+ .button.secondary {
1085
+ color: #fff;
1086
+ background-color: #313439; }
1087
+ .button.secondary:hover {
1088
+ color: #fff;
1089
+ background-color: #606670; }
1090
+ .button.secondary:disabled, .button.secondary.disabled {
1091
+ color: rgba(255, 255, 255, 0.7);
1092
+ background-color: rgba(49, 52, 57, 0.7); }
1093
+ .button.secondary.outline {
1094
+ background: none;
1095
+ color: #313439;
1096
+ border-color: #313439; }
1097
+ .button.secondary.outline:hover {
1098
+ color: rgba(49, 52, 57, 0.6);
1099
+ border-color: rgba(49, 52, 57, 0.5); }
1100
+ .button.secondary.outline:disabled, .button.secondary.outline.disabled {
1101
+ background: none;
1102
+ color: rgba(49, 52, 57, 0.7);
1103
+ border-color: rgba(49, 52, 57, 0.5); }
1104
+
1105
+ .label {
1106
+ display: inline-block;
1107
+ font-size: 13px;
1108
+ background: #e0e1e1;
1109
+ line-height: 18px;
1110
+ padding: 0 10px;
1111
+ font-weight: 500;
1112
+ color: #313439;
1113
+ border: 1px solid transparent;
1114
+ vertical-align: middle;
1115
+ text-decoration: none;
1116
+ border-radius: 4px; }
1117
+ .label a,
1118
+ .label a:hover {
1119
+ color: inherit;
1120
+ text-decoration: none; }
1121
+
1122
+ .label.big {
1123
+ font-size: 14px;
1124
+ line-height: 24px;
1125
+ padding: 0 12px; }
1126
+
1127
+ .label.upper {
1128
+ text-transform: uppercase;
1129
+ font-size: 11px; }
1130
+
1131
+ .label.outline {
1132
+ background: none;
1133
+ border-color: #bdbdbd; }
1134
+
1135
+ .label.badge {
1136
+ text-align: center;
1137
+ border-radius: 64px;
1138
+ padding: 0 6px; }
1139
+ .label.badge.big {
1140
+ padding: 0 8px; }
1141
+
1142
+ .label.tag {
1143
+ padding: 0;
1144
+ background: none;
1145
+ border: none;
1146
+ text-transform: uppercase;
1147
+ font-size: 11px; }
1148
+ .label.tag.big {
1149
+ font-size: 13px; }
1150
+
1151
+ .label.success {
1152
+ background: #35beb1;
1153
+ color: #fff; }
1154
+ .label.success.tag, .label.success.outline {
1155
+ background: none;
1156
+ border-color: #35beb1;
1157
+ color: #35beb1; }
1158
+
1159
+ .label.error {
1160
+ background: #f03c69;
1161
+ color: #fff; }
1162
+ .label.error.tag, .label.error.outline {
1163
+ background: none;
1164
+ border-color: #f03c69;
1165
+ color: #f03c69; }
1166
+
1167
+ .label.warning {
1168
+ background: #f7ba45;
1169
+ color: #0d0d0e; }
1170
+ .label.warning.tag, .label.warning.outline {
1171
+ background: none;
1172
+ border-color: #f7ba45;
1173
+ color: #f7ba45; }
1174
+
1175
+ .label.focus {
1176
+ background: #1c86f2;
1177
+ color: #fff; }
1178
+ .label.focus.tag, .label.focus.outline {
1179
+ background: none;
1180
+ border-color: #1c86f2;
1181
+ color: #1c86f2; }
1182
+
1183
+ .label.black {
1184
+ background: #0d0d0e;
1185
+ color: #fff; }
1186
+ .label.black.tag, .label.black.outline {
1187
+ background: none;
1188
+ border-color: #0d0d0e;
1189
+ color: #0d0d0e; }
1190
+
1191
+ .label.inverted {
1192
+ background: #fff;
1193
+ color: #0d0d0e; }
1194
+ .label.inverted.tag, .label.inverted.outline {
1195
+ background: none;
1196
+ border-color: #fff;
1197
+ color: #fff; }
1198
+
1199
+ .breadcrumbs {
1200
+ font-size: 14px;
1201
+ margin-bottom: 24px; }
1202
+ .breadcrumbs ul {
1203
+ display: flex;
1204
+ align-items: center; }
1205
+ .breadcrumbs.push-center ul {
1206
+ justify-content: center; }
1207
+ .breadcrumbs span,
1208
+ .breadcrumbs a {
1209
+ font-style: normal;
1210
+ padding: 0 10px;
1211
+ display: inline-block;
1212
+ white-space: nowrap; }
1213
+ .breadcrumbs li:after {
1214
+ display: inline-block;
1215
+ content: '/';
1216
+ color: rgba(0, 0, 0, 0.3); }
1217
+ .breadcrumbs li:last-child:after {
1218
+ display: none; }
1219
+ .breadcrumbs li:first-child span,
1220
+ .breadcrumbs li:first-child a {
1221
+ padding-left: 0; }
1222
+ .breadcrumbs li.active a {
1223
+ color: #313439;
1224
+ text-decoration: none;
1225
+ cursor: text; }
1226
+
1227
+ .pagination {
1228
+ margin: 24px 0;
1229
+ font-size: 14px; }
1230
+ .pagination ul {
1231
+ display: flex;
1232
+ margin: 0; }
1233
+ .pagination.align-center ul {
1234
+ justify-content: center; }
1235
+ .pagination span,
1236
+ .pagination a {
1237
+ border-radius: 3px;
1238
+ display: inline-block;
1239
+ padding: 8px 12px;
1240
+ line-height: 1;
1241
+ white-space: nowrap;
1242
+ border: 1px solid transparent; }
1243
+ .pagination a {
1244
+ text-decoration: none;
1245
+ color: #313439; }
1246
+ .pagination a:hover {
1247
+ color: rgba(0, 0, 0, 0.5);
1248
+ border-color: #e0e1e1; }
1249
+ .pagination span,
1250
+ .pagination li.active a {
1251
+ color: rgba(0, 0, 0, 0.5);
1252
+ border-color: #e0e1e1;
1253
+ cursor: text; }
1254
+ .pagination.upper {
1255
+ font-size: 12px; }
1256
+
1257
+ .pager span {
1258
+ line-height: 24px; }
1259
+
1260
+ .pager span,
1261
+ .pager a {
1262
+ padding-left: 16px;
1263
+ padding-right: 16px;
1264
+ border-radius: 64px;
1265
+ border-color: rgba(0, 0, 0, 0.1); }
1266
+
1267
+ .pager li {
1268
+ flex-basis: 50%; }
1269
+
1270
+ .pager li.next {
1271
+ text-align: right; }
1272
+
1273
+ .pager.align-center li {
1274
+ flex-basis: auto;
1275
+ margin-left: 4px;
1276
+ margin-right: 4px; }
1277
+
1278
+ .pager.flat span,
1279
+ .pager.flat a {
1280
+ border: none;
1281
+ display: block;
1282
+ padding: 0; }
1283
+
1284
+ .pager.flat a {
1285
+ font-weight: bold; }
1286
+ .pager.flat a:hover {
1287
+ background: none;
1288
+ text-decoration: underline; }
1289
+
1290
+ @media (max-width: 768px) {
1291
+ .pager.flat ul {
1292
+ flex-direction: column; }
1293
+ .pager.flat li {
1294
+ flex-basis: 100%;
1295
+ margin-bottom: 8px;
1296
+ text-align: left; } }
1297
+
1298
+ @font-face {
1299
+ font-family: 'Kube';
1300
+ src: url("data:application/x-font-ttf;charset=utf-8;base64,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") format("truetype");
1301
+ font-weight: normal;
1302
+ font-style: normal; }
1303
+
1304
+ [class^="kube-"], [class*=" kube-"], .close, .caret {
1305
+ /* use !important to prevent issues with browser extensions that change fonts */
1306
+ font-family: 'Kube' !important;
1307
+ speak: none;
1308
+ font-style: normal;
1309
+ font-weight: normal;
1310
+ font-variant: normal;
1311
+ text-transform: none;
1312
+ line-height: 1;
1313
+ /* Better Font Rendering =========== */
1314
+ -webkit-font-smoothing: antialiased;
1315
+ -moz-osx-font-smoothing: grayscale; }
1316
+
1317
+ .kube-calendar:before {
1318
+ content: "\e900"; }
1319
+
1320
+ .caret.down:before,
1321
+ .kube-caret-down:before {
1322
+ content: "\e901"; }
1323
+
1324
+ .caret.left:before,
1325
+ .kube-caret-left:before {
1326
+ content: "\e902"; }
1327
+
1328
+ .caret.right:before,
1329
+ .kube-caret-right:before {
1330
+ content: "\e903"; }
1331
+
1332
+ .caret.up:before,
1333
+ .kube-caret-up:before {
1334
+ content: "\e904"; }
1335
+
1336
+ .close:before,
1337
+ .kube-close:before {
1338
+ content: "\e905"; }
1339
+
1340
+ .kube-menu:before {
1341
+ content: "\e906"; }
1342
+
1343
+ .kube-search:before {
1344
+ content: "\e907"; }
1345
+
1346
+ .gutters .column.push-left,
1347
+ .push-left {
1348
+ margin-right: auto; }
1349
+
1350
+ .gutters .column.push-right,
1351
+ .push-right {
1352
+ margin-left: auto; }
1353
+
1354
+ .gutters .column.push-center,
1355
+ .push-center {
1356
+ margin-left: auto;
1357
+ margin-right: auto; }
1358
+
1359
+ .gutters .column.push-middle,
1360
+ .push-middle {
1361
+ margin-top: auto;
1362
+ margin-bottom: auto; }
1363
+
1364
+ .push-bottom {
1365
+ margin-top: auto; }
1366
+
1367
+ @media (max-width: 768px) {
1368
+ .gutters .column.push-left-sm,
1369
+ .push-left-sm {
1370
+ margin-left: 0; }
1371
+ .gutters .column.push-center-sm,
1372
+ .push-center-sm {
1373
+ margin-left: auto;
1374
+ margin-right: auto; }
1375
+ .push-top-sm {
1376
+ margin-top: 0; } }
1377
+
1378
+ .align-middle {
1379
+ align-items: center; }
1380
+
1381
+ .align-right {
1382
+ justify-content: flex-end; }
1383
+
1384
+ .align-center {
1385
+ justify-content: center; }
1386
+
1387
+ @media (max-width: 768px) {
1388
+ .align-left-sm {
1389
+ justify-content: flex-start; } }
1390
+
1391
+ .float-right {
1392
+ float: right; }
1393
+
1394
+ .float-left {
1395
+ float: left; }
1396
+
1397
+ @media (max-width: 768px) {
1398
+ .float-right {
1399
+ float: none; }
1400
+ .float-left {
1401
+ float: none; } }
1402
+
1403
+ .fixed {
1404
+ position: fixed;
1405
+ top: 0;
1406
+ left: 0;
1407
+ z-index: 100;
1408
+ width: 100%; }
1409
+
1410
+ .w5 {
1411
+ width: 5%; }
1412
+
1413
+ .w10 {
1414
+ width: 10%; }
1415
+
1416
+ .w15 {
1417
+ width: 15%; }
1418
+
1419
+ .w20 {
1420
+ width: 20%; }
1421
+
1422
+ .w25 {
1423
+ width: 25%; }
1424
+
1425
+ .w30 {
1426
+ width: 30%; }
1427
+
1428
+ .w35 {
1429
+ width: 35%; }
1430
+
1431
+ .w40 {
1432
+ width: 40%; }
1433
+
1434
+ .w45 {
1435
+ width: 45%; }
1436
+
1437
+ .w50 {
1438
+ width: 50%; }
1439
+
1440
+ .w55 {
1441
+ width: 55%; }
1442
+
1443
+ .w60 {
1444
+ width: 60%; }
1445
+
1446
+ .w65 {
1447
+ width: 65%; }
1448
+
1449
+ .w70 {
1450
+ width: 70%; }
1451
+
1452
+ .w75 {
1453
+ width: 75%; }
1454
+
1455
+ .w80 {
1456
+ width: 80%; }
1457
+
1458
+ .w85 {
1459
+ width: 85%; }
1460
+
1461
+ .w90 {
1462
+ width: 90%; }
1463
+
1464
+ .w95 {
1465
+ width: 95%; }
1466
+
1467
+ .w100 {
1468
+ width: 100%; }
1469
+
1470
+ .w-auto {
1471
+ width: auto; }
1472
+
1473
+ .w-small {
1474
+ width: 480px; }
1475
+
1476
+ .w-medium {
1477
+ width: 600px; }
1478
+
1479
+ .w-big {
1480
+ width: 740px; }
1481
+
1482
+ .w-large {
1483
+ width: 840px; }
1484
+
1485
+ @media (max-width: 768px) {
1486
+ .w-auto-sm {
1487
+ width: auto; }
1488
+ .w100-sm,
1489
+ .w-small,
1490
+ .w-medium,
1491
+ .w-big,
1492
+ .w-large {
1493
+ width: 100%; } }
1494
+
1495
+ .max-w5 {
1496
+ max-width: 5%; }
1497
+
1498
+ .max-w10 {
1499
+ max-width: 10%; }
1500
+
1501
+ .max-w15 {
1502
+ max-width: 15%; }
1503
+
1504
+ .max-w20 {
1505
+ max-width: 20%; }
1506
+
1507
+ .max-w25 {
1508
+ max-width: 25%; }
1509
+
1510
+ .max-w30 {
1511
+ max-width: 30%; }
1512
+
1513
+ .max-w35 {
1514
+ max-width: 35%; }
1515
+
1516
+ .max-w40 {
1517
+ max-width: 40%; }
1518
+
1519
+ .max-w45 {
1520
+ max-width: 45%; }
1521
+
1522
+ .max-w50 {
1523
+ max-width: 50%; }
1524
+
1525
+ .max-w55 {
1526
+ max-width: 55%; }
1527
+
1528
+ .max-w60 {
1529
+ max-width: 60%; }
1530
+
1531
+ .max-w65 {
1532
+ max-width: 65%; }
1533
+
1534
+ .max-w70 {
1535
+ max-width: 70%; }
1536
+
1537
+ .max-w75 {
1538
+ max-width: 75%; }
1539
+
1540
+ .max-w80 {
1541
+ max-width: 80%; }
1542
+
1543
+ .max-w85 {
1544
+ max-width: 85%; }
1545
+
1546
+ .max-w90 {
1547
+ max-width: 90%; }
1548
+
1549
+ .max-w95 {
1550
+ max-width: 95%; }
1551
+
1552
+ .max-w100 {
1553
+ max-width: 100%; }
1554
+
1555
+ .max-w-small {
1556
+ max-width: 480px; }
1557
+
1558
+ .max-w-medium {
1559
+ max-width: 600px; }
1560
+
1561
+ .max-w-big {
1562
+ max-width: 740px; }
1563
+
1564
+ .max-w-large {
1565
+ max-width: 840px; }
1566
+
1567
+ @media (max-width: 768px) {
1568
+ .max-w-auto-sm,
1569
+ .max-w-small,
1570
+ .max-w-medium,
1571
+ .max-w-big,
1572
+ .max-w-large {
1573
+ max-width: auto; } }
1574
+
1575
+ .min-w5 {
1576
+ min-width: 5%; }
1577
+
1578
+ .min-w10 {
1579
+ min-width: 10%; }
1580
+
1581
+ .min-w15 {
1582
+ min-width: 15%; }
1583
+
1584
+ .min-w20 {
1585
+ min-width: 20%; }
1586
+
1587
+ .min-w25 {
1588
+ min-width: 25%; }
1589
+
1590
+ .min-w30 {
1591
+ min-width: 30%; }
1592
+
1593
+ .min-w35 {
1594
+ min-width: 35%; }
1595
+
1596
+ .min-w40 {
1597
+ min-width: 40%; }
1598
+
1599
+ .min-w45 {
1600
+ min-width: 45%; }
1601
+
1602
+ .min-w50 {
1603
+ min-width: 50%; }
1604
+
1605
+ .min-w55 {
1606
+ min-width: 55%; }
1607
+
1608
+ .min-w60 {
1609
+ min-width: 60%; }
1610
+
1611
+ .min-w65 {
1612
+ min-width: 65%; }
1613
+
1614
+ .min-w70 {
1615
+ min-width: 70%; }
1616
+
1617
+ .min-w75 {
1618
+ min-width: 75%; }
1619
+
1620
+ .min-w80 {
1621
+ min-width: 80%; }
1622
+
1623
+ .min-w85 {
1624
+ min-width: 85%; }
1625
+
1626
+ .min-w90 {
1627
+ min-width: 90%; }
1628
+
1629
+ .min-w95 {
1630
+ min-width: 95%; }
1631
+
1632
+ .min-w100 {
1633
+ min-width: 100%; }
1634
+
1635
+ .h25 {
1636
+ height: 25%; }
1637
+
1638
+ .h50 {
1639
+ height: 50%; }
1640
+
1641
+ .h100 {
1642
+ height: 100%; }
1643
+
1644
+ .group:after {
1645
+ content: '';
1646
+ display: table;
1647
+ clear: both; }
1648
+
1649
+ .flex {
1650
+ display: flex; }
1651
+
1652
+ @media (max-width: 768px) {
1653
+ .flex-column-sm {
1654
+ flex-direction: column; }
1655
+ .flex-w100-sm {
1656
+ flex: 0 0 100%; } }
1657
+ @media (max-width: 768px) and (max-width: 768px) {
1658
+ .flex-w100-sm {
1659
+ flex: 0 0 100% !important; } }
1660
+
1661
+ .invisible {
1662
+ visibility: hidden; }
1663
+
1664
+ .visible {
1665
+ visibility: visible; }
1666
+
1667
+ .display-block {
1668
+ display: block; }
1669
+
1670
+ .hide {
1671
+ display: none !important; }
1672
+
1673
+ @media (max-width: 768px) {
1674
+ .hide-sm {
1675
+ display: none !important; } }
1676
+
1677
+ @media (min-width: 768px) {
1678
+ .show-sm {
1679
+ display: none !important; } }
1680
+
1681
+ @media print {
1682
+ .hide-print {
1683
+ display: none !important; }
1684
+ .show-print {
1685
+ display: block !important; } }
1686
+
1687
+ .no-scroll {
1688
+ overflow: hidden;
1689
+ position: fixed;
1690
+ top: 0;
1691
+ left: 0;
1692
+ width: 100%;
1693
+ height: 100% !important; }
1694
+
1695
+ .scrollbar-measure {
1696
+ position: absolute;
1697
+ top: -9999px;
1698
+ width: 50px;
1699
+ height: 50px;
1700
+ overflow: scroll; }
1701
+
1702
+ .video-container {
1703
+ height: 0;
1704
+ padding-bottom: 56.25%;
1705
+ position: relative;
1706
+ margin-bottom: 16px; }
1707
+ .video-container iframe,
1708
+ .video-container object,
1709
+ .video-container embed {
1710
+ position: absolute;
1711
+ top: 0;
1712
+ left: 0;
1713
+ width: 100% !important;
1714
+ height: 100% !important; }
1715
+
1716
+ .close {
1717
+ display: inline-block;
1718
+ min-height: 16px;
1719
+ min-width: 16px;
1720
+ line-height: 16px;
1721
+ vertical-align: middle;
1722
+ text-align: center;
1723
+ font-size: 12px;
1724
+ opacity: .6; }
1725
+ .close:hover {
1726
+ opacity: 1; }
1727
+ .close.small {
1728
+ font-size: 8px; }
1729
+ .close.big {
1730
+ font-size: 18px; }
1731
+ .close.white {
1732
+ color: #fff; }
1733
+
1734
+ .caret {
1735
+ display: inline-block; }
1736
+
1737
+ .button .caret {
1738
+ margin-right: -8px; }
1739
+
1740
+ .overlay {
1741
+ position: fixed;
1742
+ z-index: 200;
1743
+ top: 0;
1744
+ left: 0;
1745
+ right: 0;
1746
+ bottom: 0;
1747
+ background-color: rgba(255, 255, 255, 0.95); }
1748
+ .overlay > .close {
1749
+ position: fixed;
1750
+ top: 1rem;
1751
+ right: 1rem; }
1752
+
1753
+ @media print {
1754
+ * {
1755
+ background: transparent !important;
1756
+ color: black !important;
1757
+ box-shadow: none !important;
1758
+ text-shadow: none !important; }
1759
+ a,
1760
+ a:visited {
1761
+ text-decoration: underline; }
1762
+ pre, blockquote {
1763
+ border: 1px solid #999;
1764
+ page-break-inside: avoid; }
1765
+ p, h2, h3 {
1766
+ orphans: 3;
1767
+ widows: 3; }
1768
+ thead {
1769
+ display: table-header-group; }
1770
+ tr, img {
1771
+ page-break-inside: avoid; }
1772
+ img {
1773
+ max-width: 100% !important; }
1774
+ h2, h3, h4 {
1775
+ page-break-after: avoid; }
1776
+ @page {
1777
+ margin: 0.5cm; } }
1778
+
1779
+ @keyframes slideUp {
1780
+ to {
1781
+ height: 0;
1782
+ padding-top: 0;
1783
+ padding-bottom: 0; } }
1784
+
1785
+ @keyframes slideDown {
1786
+ from {
1787
+ height: 0;
1788
+ padding-top: 0;
1789
+ padding-bottom: 0; } }
1790
+
1791
+ @keyframes fadeIn {
1792
+ from {
1793
+ opacity: 0; }
1794
+ to {
1795
+ opacity: 1; } }
1796
+
1797
+ @keyframes fadeOut {
1798
+ from {
1799
+ opacity: 1; }
1800
+ to {
1801
+ opacity: 0; } }
1802
+
1803
+ @keyframes flipIn {
1804
+ from {
1805
+ opacity: 0;
1806
+ transform: scaleY(0); }
1807
+ to {
1808
+ opacity: 1;
1809
+ transform: scaleY(1); } }
1810
+
1811
+ @keyframes flipOut {
1812
+ from {
1813
+ opacity: 1;
1814
+ transform: scaleY(1); }
1815
+ to {
1816
+ opacity: 0;
1817
+ transform: scaleY(0); } }
1818
+
1819
+ @keyframes zoomIn {
1820
+ from {
1821
+ opacity: 0;
1822
+ transform: scale3d(0.3, 0.3, 0.3); }
1823
+ 50% {
1824
+ opacity: 1; } }
1825
+
1826
+ @keyframes zoomOut {
1827
+ from {
1828
+ opacity: 1; }
1829
+ 50% {
1830
+ opacity: 0;
1831
+ transform: scale3d(0.3, 0.3, 0.3); }
1832
+ to {
1833
+ opacity: 0; } }
1834
+
1835
+ @keyframes slideInRight {
1836
+ from {
1837
+ transform: translate3d(100%, 0, 0);
1838
+ visibility: visible; }
1839
+ to {
1840
+ transform: translate3d(0, 0, 0); } }
1841
+
1842
+ @keyframes slideInLeft {
1843
+ from {
1844
+ transform: translate3d(-100%, 0, 0);
1845
+ visibility: visible; }
1846
+ to {
1847
+ transform: translate3d(0, 0, 0); } }
1848
+
1849
+ @keyframes slideInDown {
1850
+ from {
1851
+ transform: translate3d(0, -100%, 0);
1852
+ visibility: visible; }
1853
+ to {
1854
+ transform: translate3d(0, 0, 0); } }
1855
+
1856
+ @keyframes slideOutLeft {
1857
+ from {
1858
+ transform: translate3d(0, 0, 0); }
1859
+ to {
1860
+ visibility: hidden;
1861
+ transform: translate3d(-100%, 0, 0); } }
1862
+
1863
+ @keyframes slideOutRight {
1864
+ from {
1865
+ transform: translate3d(0, 0, 0); }
1866
+ to {
1867
+ visibility: hidden;
1868
+ transform: translate3d(100%, 0, 0); } }
1869
+
1870
+ @keyframes slideOutUp {
1871
+ from {
1872
+ transform: translate3d(0, 0, 0); }
1873
+ to {
1874
+ visibility: hidden;
1875
+ transform: translate3d(0, -100%, 0); } }
1876
+
1877
+ @keyframes rotate {
1878
+ from {
1879
+ transform: rotate(0deg); }
1880
+ to {
1881
+ transform: rotate(360deg); } }
1882
+
1883
+ @keyframes pulse {
1884
+ from {
1885
+ transform: scale3d(1, 1, 1); }
1886
+ 50% {
1887
+ transform: scale3d(1.03, 1.03, 1.03); }
1888
+ to {
1889
+ transform: scale3d(1, 1, 1); } }
1890
+
1891
+ @keyframes shake {
1892
+ 15% {
1893
+ transform: translateX(0.5rem); }
1894
+ 30% {
1895
+ transform: translateX(-0.4rem); }
1896
+ 45% {
1897
+ transform: translateX(0.3rem); }
1898
+ 60% {
1899
+ transform: translateX(-0.2rem); }
1900
+ 75% {
1901
+ transform: translateX(0.1rem); }
1902
+ 90% {
1903
+ transform: translateX(0); }
1904
+ 90% {
1905
+ transform: translateX(0); } }
1906
+
1907
+ .fadeIn {
1908
+ animation: fadeIn 250ms; }
1909
+
1910
+ .fadeOut {
1911
+ animation: fadeOut 250ms; }
1912
+
1913
+ .zoomIn {
1914
+ animation: zoomIn 200ms; }
1915
+
1916
+ .zoomOut {
1917
+ animation: zoomOut 500ms; }
1918
+
1919
+ .slideInRight {
1920
+ animation: slideInRight 500ms; }
1921
+
1922
+ .slideInLeft {
1923
+ animation: slideInLeft 500ms; }
1924
+
1925
+ .slideInDown {
1926
+ animation: slideInDown 500ms; }
1927
+
1928
+ .slideOutLeft {
1929
+ animation: slideOutLeft 500ms; }
1930
+
1931
+ .slideOutRight {
1932
+ animation: slideOutRight 500ms; }
1933
+
1934
+ .slideOutUp {
1935
+ animation: slideOutUp 500ms; }
1936
+
1937
+ .slideUp {
1938
+ overflow: hidden;
1939
+ animation: slideUp 200ms ease-in-out; }
1940
+
1941
+ .slideDown {
1942
+ overflow: hidden;
1943
+ animation: slideDown 80ms ease-in-out; }
1944
+
1945
+ .flipIn {
1946
+ animation: flipIn 250ms cubic-bezier(0.5, -0.5, 0.5, 1.5); }
1947
+
1948
+ .flipOut {
1949
+ animation: flipOut 500ms cubic-bezier(0.5, -0.5, 0.5, 1.5); }
1950
+
1951
+ .rotate {
1952
+ animation: rotate 500ms; }
1953
+
1954
+ .pulse {
1955
+ animation: pulse 250ms 2; }
1956
+
1957
+ .shake {
1958
+ animation: shake 500ms; }
1959
+
1960
+ .dropdown {
1961
+ position: absolute;
1962
+ z-index: 100;
1963
+ top: 0;
1964
+ right: 0;
1965
+ width: 280px;
1966
+ color: #000;
1967
+ font-size: 15px;
1968
+ background: #fff;
1969
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
1970
+ border-radius: 3px;
1971
+ max-height: 300px;
1972
+ margin: 0;
1973
+ padding: 0;
1974
+ overflow: hidden; }
1975
+ .dropdown.dropdown-mobile {
1976
+ position: fixed;
1977
+ top: 0;
1978
+ left: 0;
1979
+ right: 0;
1980
+ bottom: 0;
1981
+ width: 100%;
1982
+ max-height: none;
1983
+ border: none; }
1984
+ .dropdown .close {
1985
+ margin: 20px auto; }
1986
+ .dropdown.open {
1987
+ overflow: auto; }
1988
+ .dropdown ul {
1989
+ list-style: none;
1990
+ margin: 0; }
1991
+ .dropdown ul li {
1992
+ border-bottom: 1px solid rgba(0, 0, 0, 0.07); }
1993
+ .dropdown ul li:last-child {
1994
+ border-bottom: none; }
1995
+ .dropdown ul a {
1996
+ display: block;
1997
+ padding: 12px;
1998
+ text-decoration: none;
1999
+ color: #000; }
2000
+ .dropdown ul a:hover {
2001
+ background: rgba(0, 0, 0, 0.05); }
2002
+
2003
+ .message {
2004
+ font-family: Consolas, Monaco, "Courier New", monospace;
2005
+ font-size: 14px;
2006
+ line-height: 20px;
2007
+ background: #e0e1e1;
2008
+ color: #313439;
2009
+ padding: 1rem;
2010
+ padding-right: 2.5em;
2011
+ padding-bottom: .75rem;
2012
+ margin-bottom: 24px;
2013
+ position: relative; }
2014
+ .message a {
2015
+ color: inherit; }
2016
+ .message h2,
2017
+ .message h3,
2018
+ .message h4,
2019
+ .message h5,
2020
+ .message h6 {
2021
+ margin-bottom: 0; }
2022
+ .message .close {
2023
+ position: absolute;
2024
+ right: 1rem;
2025
+ top: 1.1rem; }
2026
+
2027
+ .message.error {
2028
+ background: #f03c69;
2029
+ color: #fff; }
2030
+
2031
+ .message.success {
2032
+ background: #35beb1;
2033
+ color: #fff; }
2034
+
2035
+ .message.warning {
2036
+ background: #f7ba45; }
2037
+
2038
+ .message.focus {
2039
+ background: #1c86f2;
2040
+ color: #fff; }
2041
+
2042
+ .message.black {
2043
+ background: #0d0d0e;
2044
+ color: #fff; }
2045
+
2046
+ .message.inverted {
2047
+ background: #fff; }
2048
+
2049
+ .modal-box {
2050
+ position: fixed;
2051
+ top: 0;
2052
+ left: 0;
2053
+ bottom: 0;
2054
+ right: 0;
2055
+ overflow-x: hidden;
2056
+ overflow-y: auto;
2057
+ z-index: 200; }
2058
+
2059
+ .modal {
2060
+ position: relative;
2061
+ margin: auto;
2062
+ margin-top: 16px;
2063
+ padding: 0;
2064
+ background: #fff;
2065
+ box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
2066
+ border-radius: 8px;
2067
+ color: #000; }
2068
+ @media (max-width: 768px) {
2069
+ .modal input,
2070
+ .modal textarea {
2071
+ font-size: 16px; } }
2072
+ .modal .close {
2073
+ position: absolute;
2074
+ top: 18px;
2075
+ right: 16px;
2076
+ opacity: .3; }
2077
+ .modal .close:hover {
2078
+ opacity: 1; }
2079
+
2080
+ .modal-header {
2081
+ padding: 24px 32px;
2082
+ font-size: 18px;
2083
+ font-weight: bold;
2084
+ border-bottom: 1px solid rgba(0, 0, 0, 0.05); }
2085
+ .modal-header:empty {
2086
+ display: none; }
2087
+
2088
+ .modal-body {
2089
+ padding: 36px 56px; }
2090
+
2091
+ @media (max-width: 768px) {
2092
+ .modal-header,
2093
+ .modal-body {
2094
+ padding: 24px; } }
2095
+
2096
+ .offcanvas {
2097
+ background: #fff;
2098
+ position: fixed;
2099
+ padding: 24px;
2100
+ height: 100%;
2101
+ top: 0;
2102
+ left: 0;
2103
+ z-index: 300;
2104
+ overflow-y: scroll; }
2105
+
2106
+ .offcanvas .close {
2107
+ position: absolute;
2108
+ top: 8px;
2109
+ right: 8px; }
2110
+
2111
+ .offcanvas-left {
2112
+ border-right: 1px solid rgba(0, 0, 0, 0.1); }
2113
+
2114
+ .offcanvas-right {
2115
+ left: auto;
2116
+ right: 0;
2117
+ border-left: 1px solid rgba(0, 0, 0, 0.1); }
2118
+
2119
+ .offcanvas-push-body {
2120
+ position: relative; }
2121
+
2122
+ .tabs {
2123
+ margin-bottom: 24px;
2124
+ font-size: 14px; }
2125
+ .tabs li em,
2126
+ .tabs li.active a {
2127
+ color: #313439;
2128
+ border: 1px solid rgba(0, 0, 0, 0.1);
2129
+ cursor: default;
2130
+ text-decoration: none;
2131
+ background: none; }
2132
+ .tabs em,
2133
+ .tabs a {
2134
+ position: relative;
2135
+ top: 1px;
2136
+ font-style: normal;
2137
+ display: block;
2138
+ padding: .5rem 1rem;
2139
+ border: 1px solid transparent;
2140
+ color: rgba(0, 0, 0, 0.5);
2141
+ text-decoration: none; }
2142
+ .tabs a:hover {
2143
+ -moz-transition: all linear 0.2s;
2144
+ transition: all linear 0.2s;
2145
+ color: #313439;
2146
+ text-decoration: underline;
2147
+ background-color: #e0e1e1; }
2148
+
2149
+ @media (min-width: 768px) {
2150
+ .tabs ul {
2151
+ display: flex;
2152
+ margin-top: -1px;
2153
+ border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
2154
+ .tabs li em,
2155
+ .tabs li.active a {
2156
+ border-bottom: 1px solid #fff; } }