-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.scss
3718 lines (3690 loc) · 91 KB
/
app.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@import 'fonts';
$theme-primary: #4fb067;//#3cf;//#8BC34A;#99c73b
//Macro Variables
$protein-color: #4FB267;
$carb-color: #3D78DF;
$fat-color: #F0B04F;
$fiber-color: #979dac;
$alcohol-color: #7E589B;
.downvote-recipe-btn.active {
color: orange !important;
}
.upvote-recipe-btn.active {
color: red !important;
.action-icon {
color: red;
}
}
.protein-text, .calories-text {
color: $protein-color !important;
}
.carb-text, .carbs-text {
color: $carb-color !important;
}
.fat-text {
color: $fat-color !important;
}
.fiber-text {
color: $fiber-color !important;
}
.alcohol-text {
color: $alcohol-color !important;
}
.display-flex {
display: flex;
}
.align-center {
align-items: center;
}
.flex-grow {
flex-grow: 1;
}
.fixed-call-to-action {
z-index: 10;
position: fixed;
bottom: 20px;
left: 50%;
-webkit-transform: translateX(-50%);
-ms-transform: translateX(-50%);
transform: translateX(-50%);
width: 150px;
padding-top: 20px;
padding-bottom: 20px;
font-size: 18px;
background-color: $theme-primary;
color: white;
-moz-border-radius: 10px; /* or 50% */
border-radius: 10px; /* or 50% */
text-align: center;
box-shadow: 3px 3px 2px rgba(0,0,0,0.15);
&:focus, &:active {
box-shadow: none;
}
&.outline-only {
background-color: #fff;
border: 2px solid $theme-primary;
color: $theme-primary;
}
}
.ajax-form {
.show-while-logging {
display: none;
}
.errors, .show-after-error {
display: none;
}
&.logged {
.input-field:not(.no-hide) {
display: none;
}
.ajax-submit-btn:not(.no-hide) {
display: none;
}
.hide-after-save {
display: none;
}
}
&.unlogged {
.show-after-save {
display: none;
}
.saved-field, .saved-group {
display: none;
}
}
&.saving {
.show-after-save {
display: none;
}
}
.ajax-input-group {
&.unsaved {
.group-saving-icon {
display: none;
}
.group-saved-icon {
display: none;
}
}
&.saving {
.group-saving-icon {
display: none;
}
.group-saved-icon {
display: none;
}
}
&.saved {
.group-saving-icon {
display: none;
}
.group-saved-icon {
display: none;
}
}
}
}
.adjust-down-50 {
-webkit-transform: translateY(50%);
-ms-transform: translateY(50%);
transform: translateY(50%);
}
.ui-widget {
font-family: Verdana,Arial,sans-serif/*{ffDefault}*/;
font-size: 1.1em/*{fsDefault}*/;
}
.ui-widget-content {
border: 1px solid #aaaaaa/*{borderColorContent}*/;
background: #ffffff/*{bgColorContent}*/ image_url('jquery-ui/ui-bg_flat_75_ffffff_40x100.png')/*{bgImgUrlContent}*/ 50%/*{bgContentXPos}*/ 50%/*{bgContentYPos}*/ repeat-x/*{bgContentRepeat}*/;
color: #222222/*{fcContent}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 4px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 4px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 4px/*{cornerRadius}*/;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 4px/*{cornerRadius}*/;
}
.ui-helper-hidden-accessible {
border: 0;
clip: rect(0 0 0 0);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
}
.ui-tooltip {
padding: 8px;
position: absolute;
z-index: 9999;
max-width: 300px;
-webkit-box-shadow: 0 0 5px #aaa;
box-shadow: 0 0 5px #aaa;
}
body .ui-tooltip {
border-width: 2px;
}
.barba-container.app-screen, #barba-error-page {
-webkit-touch-callout: none;
/* prevent callout to copy image, etc when tap to hold */
-webkit-text-size-adjust: none;
/* prevent webkit from resizing text to fit */
-webkit-user-select: none;
/* prevent copy paste, to allow, change 'none' to 'text' */
background-color: #fff;
font-family: "Roboto", sans-serif;
font-size: 12px;
height: 100%;
margin: 0px;
padding: 0px;
width: 100%;
}
.barba-container.app-screen .app, #barba-error-page .app {
background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg version='1.1' width='300px' height='100px' viewBox='0 0 89 32' xmlns='http://www.w3.org/2000/svg'%3E%3Ctitle%3Elogo%3C/title%3E%3Cpath d='M15.971 0.576c8.534 0 15.453 6.919 15.453 15.453s-6.919 15.453-15.453 15.453c-8.534 0-15.453-6.919-15.453-15.453s6.919-15.453 15.453-15.453zM9.562 17.76c0.013-0.068 0.043-0.133 0.091-0.184l-0.091 0.184zM15.075 24.71c0 0-0.11-0.292-0.284-0.293l0.227 0.227c0.021 0.021 0.040 0.043 0.057 0.066zM6.63 17.111l-1.642 1.642c-0.17 0.17-0.176 0.444-0.012 0.608l7.662 7.662c0.164 0.164 0.437 0.158 0.608-0.013l1.642-1.642c0.17-0.17 0.176-0.444 0.013-0.608l-7.663-7.663c-0.164-0.164-0.437-0.158-0.608 0.012v0.002zM17.053 6.688c-0.17 0.17-0.176 0.444-0.012 0.608l7.662 7.662c0.164 0.164 0.437 0.158 0.608-0.013l1.642-1.642c0.17-0.17 0.176-0.444 0.013-0.608l-7.662-7.662c-0.164-0.164-0.437-0.158-0.608 0.013l-1.643 1.642zM21.91 6.656c-0.079 0.079-0.087 0.199-0.019 0.267l3.186 3.185c0.068 0.068 0.188 0.060 0.267-0.019l0.757-0.757c0.079-0.079 0.087-0.199 0.019-0.267l-3.186-3.185c-0.068-0.068-0.188-0.060-0.267 0.019l-0.757 0.757zM6.599 21.968l-0.757 0.757c-0.079 0.079-0.087 0.199-0.019 0.267l3.185 3.186c0.068 0.068 0.188 0.060 0.267-0.019l0.757-0.757c0.079-0.079 0.087-0.199 0.019-0.267l-3.186-3.186c-0.068-0.068-0.188-0.060-0.267 0.019h0.001zM20.096 11.49c-0.382-0.527-0.831-1.005-1.335-1.42-1.408 0.815-3.247 2.718-4.778 4.573-0.488-0.222-0.965-0.324-1.392 0.095-0.939 0.983-1.877 1.968-2.815 2.952-0.129 0.14-0.010 0.439 0.201 0.324 0.691-0.68 1.383-1.36 2.073-2.041 0.251-0.168 0.51 0.079 0.287 0.39-0.76 0.671-1.501 1.412-2.262 2.084-0.070 0.089 0.079 0.396 0.272 0.245 0.744-0.669 1.487-1.339 2.231-2.007 0.28-0.222 0.542 0.095 0.251 0.412-0.767 0.657-1.534 1.314-2.301 1.971-0.1 0.145 0.083 0.469 0.298 0.303 0.762-0.655 1.524-1.31 2.287-1.966 0.267-0.262 0.441 0.072 0.188 0.346-0.365 0.394-1.558 1.288-2.295 1.908-0.094 0.145 0.061 0.388 0.293 0.241 1.15-0.802 2.251-1.642 3.122-2.661 0.608-0.743 0.401-1.363 0.034-2.011 1.084-1.246 3.954-4.169 5.643-3.735l-0.002-0.003zM13.29 14.872c0.792 0.344 1.201 1.33 0.759 2.257 0.8-0.466 0.425-2.208-0.759-2.257zM11.489 20.178c0.382 0.527 0.831 1.005 1.335 1.42 1.455-0.842 3.752-3.162 4.778-4.573h0.001c0.062 0.028 0.124 0.054 0.185 0.077l-0.044-0.044c1.675 0.357 2.956-0.759 3.525-2.039 1.117-2.513-0.739-3.709-2.625-2.409-1.109 0.764-1.835 2.31-1.512 3.832l-0.002 0.002c-1.085 1.246-3.953 4.167-5.641 3.733v0.001zM18.323 16.072c-0.129 0.167-0.188 0.349-0.318 0.516 1.266 0.266 2.293-0.382 2.864-1.411-0.692 0.611-1.493 1.15-2.546 0.894v0.001z' style='fill: rgb(79, 176, 103);'/%3E%3Ctitle%3Elogo-text1%3C/title%3E%3Cpath d='M 34.564 13.62 L 35.224 13.226 C 35.688 14.079 36.225 14.506 36.834 14.506 C 37.093 14.506 37.338 14.446 37.566 14.324 C 37.795 14.203 37.97 14.041 38.089 13.836 C 38.209 13.633 38.268 13.417 38.268 13.188 C 38.268 12.926 38.18 12.673 38.004 12.422 C 37.761 12.078 37.318 11.663 36.675 11.178 C 36.028 10.688 35.625 10.335 35.467 10.117 C 35.193 9.752 35.056 9.356 35.056 8.93 C 35.056 8.592 35.135 8.284 35.297 8.006 C 35.459 7.729 35.687 7.509 35.982 7.349 C 36.276 7.188 36.594 7.109 36.938 7.109 C 37.305 7.109 37.647 7.199 37.964 7.381 C 38.283 7.561 38.619 7.896 38.974 8.38 L 38.342 8.86 C 38.05 8.473 37.8 8.217 37.595 8.095 C 37.389 7.973 37.164 7.909 36.923 7.909 C 36.61 7.909 36.355 8.005 36.154 8.196 C 35.956 8.385 35.857 8.619 35.857 8.896 C 35.857 9.066 35.891 9.229 35.961 9.388 C 36.033 9.547 36.162 9.717 36.347 9.905 C 36.449 10.002 36.784 10.261 37.349 10.679 C 38.021 11.176 38.482 11.617 38.732 12.004 C 38.981 12.392 39.107 12.779 39.107 13.17 C 39.107 13.733 38.893 14.221 38.466 14.637 C 38.038 15.051 37.518 15.258 36.907 15.258 C 36.435 15.258 36.008 15.134 35.624 14.882 C 35.24 14.63 34.888 14.208 34.563 13.618 Z M 39.978 8.059 L 39.978 7.304 L 44.236 7.304 L 44.236 8.059 L 42.505 8.059 L 42.505 15.066 L 41.715 15.066 L 41.715 8.059 Z M 45.392 7.304 L 46.937 7.304 C 47.8 7.304 48.383 7.341 48.689 7.411 C 49.15 7.517 49.525 7.742 49.813 8.088 C 50.101 8.435 50.246 8.862 50.246 9.368 C 50.246 9.79 50.146 10.16 49.948 10.481 C 49.749 10.801 49.466 11.042 49.095 11.206 C 48.726 11.37 48.216 11.453 47.566 11.457 L 50.358 15.066 L 49.396 15.066 L 46.611 11.457 L 46.169 11.457 L 46.169 15.066 L 45.392 15.066 Z M 46.168 8.064 L 46.168 10.702 L 47.502 10.713 C 48.019 10.713 48.401 10.664 48.649 10.565 C 48.898 10.466 49.09 10.31 49.229 10.093 C 49.367 9.877 49.438 9.634 49.438 9.368 C 49.438 9.107 49.367 8.871 49.227 8.659 C 49.088 8.447 48.901 8.293 48.672 8.201 C 48.444 8.111 48.064 8.064 47.533 8.064 Z M 55.606 7.11 C 56.78 7.11 57.764 7.502 58.557 8.286 C 59.347 9.071 59.744 10.037 59.744 11.184 C 59.744 12.32 59.35 13.283 58.559 14.074 C 57.77 14.867 56.806 15.261 55.67 15.261 C 54.52 15.261 53.55 14.869 52.757 14.08 C 51.967 13.293 51.57 12.339 51.57 11.22 C 51.57 10.474 51.75 9.783 52.111 9.147 C 52.47 8.51 52.963 8.013 53.585 7.651 C 54.209 7.29 54.882 7.11 55.606 7.11 Z M 55.644 7.869 C 55.07 7.869 54.528 8.019 54.012 8.318 C 53.499 8.617 53.099 9.02 52.809 9.526 C 52.521 10.032 52.376 10.597 52.376 11.219 C 52.376 12.141 52.695 12.919 53.335 13.555 C 53.972 14.188 54.743 14.506 55.643 14.506 C 56.245 14.506 56.801 14.36 57.313 14.068 C 57.824 13.776 58.224 13.377 58.51 12.871 C 58.796 12.365 58.94 11.801 58.94 11.184 C 58.94 10.568 58.796 10.011 58.51 9.512 C 58.224 9.015 57.82 8.617 57.3 8.319 C 56.779 8.02 56.226 7.87 55.643 7.87 Z M 61.305 15.066 L 61.305 7.304 L 61.474 7.304 L 66.634 13.245 L 66.634 7.304 L 67.399 7.304 L 67.399 15.066 L 67.224 15.066 L 62.108 9.198 L 62.108 15.066 Z M 76.78 8.608 L 76.178 9.177 C 75.744 8.752 75.271 8.429 74.755 8.209 C 74.24 7.989 73.738 7.88 73.25 7.88 C 72.641 7.88 72.062 8.03 71.51 8.329 C 70.961 8.627 70.534 9.033 70.232 9.544 C 69.93 10.056 69.778 10.598 69.778 11.167 C 69.778 11.75 69.935 12.305 70.248 12.831 C 70.561 13.357 70.994 13.771 71.545 14.072 C 72.098 14.373 72.703 14.522 73.361 14.522 C 74.16 14.522 74.836 14.297 75.387 13.847 C 75.94 13.397 76.266 12.814 76.369 12.096 L 73.894 12.096 L 73.894 11.347 L 77.24 11.347 C 77.233 12.546 76.877 13.497 76.17 14.203 C 75.466 14.909 74.522 15.261 73.339 15.261 C 71.906 15.261 70.769 14.773 69.931 13.795 C 69.287 13.041 68.966 12.172 68.966 11.183 C 68.966 10.448 69.149 9.764 69.518 9.13 C 69.888 8.498 70.395 8.003 71.038 7.644 C 71.683 7.287 72.41 7.109 73.222 7.109 C 73.88 7.109 74.499 7.228 75.079 7.466 C 75.661 7.703 76.226 8.083 76.779 8.608 Z M 78.757 7.304 L 80.303 7.304 C 81.166 7.304 81.749 7.341 82.055 7.411 C 82.516 7.517 82.891 7.742 83.179 8.088 C 83.467 8.435 83.611 8.862 83.611 9.368 C 83.611 9.79 83.512 10.16 83.314 10.481 C 83.114 10.801 82.831 11.042 82.46 11.206 C 82.091 11.37 81.581 11.453 80.932 11.457 L 83.723 15.066 L 82.761 15.066 L 79.977 11.457 L 79.534 11.457 L 79.534 15.066 L 78.758 15.066 Z M 79.534 8.064 L 79.534 10.702 L 80.868 10.713 C 81.385 10.713 81.766 10.664 82.015 10.565 C 82.263 10.466 82.456 10.31 82.594 10.093 C 82.733 9.877 82.803 9.634 82.803 9.368 C 82.803 9.107 82.734 8.871 82.593 8.659 C 82.452 8.447 82.267 8.293 82.038 8.201 C 81.809 8.111 81.429 8.064 80.898 8.064 L 79.534 8.064 Z' style='fill: rgb(79, 176, 103); fill-opacity: 0.7;'/%3E%3Ctitle%3Elogo-text2%3C/title%3E%3Cpath d='M 35.406 16.666 L 39.414 16.666 L 39.414 18.165 L 36.925 18.165 L 36.925 19.63 L 39.414 19.63 L 39.414 21.109 L 36.925 21.109 L 36.925 24.742 L 35.406 24.742 Z M 48.144 16.666 L 49.704 16.666 L 52.81 24.742 L 51.213 24.742 L 50.581 23.078 L 47.289 23.078 L 46.629 24.742 L 45.033 24.742 Z M 48.935 18.807 L 47.858 21.578 L 50.005 21.578 Z M 63.137 17.764 L 62.002 18.768 C 61.603 18.213 61.196 17.934 60.782 17.934 C 60.582 17.934 60.417 17.989 60.288 18.097 C 60.16 18.204 60.097 18.326 60.097 18.461 C 60.097 18.597 60.142 18.725 60.234 18.847 C 60.36 19.006 60.734 19.353 61.36 19.883 C 61.945 20.374 62.301 20.682 62.424 20.811 C 62.735 21.125 62.957 21.427 63.086 21.714 C 63.215 22.002 63.281 22.315 63.281 22.656 C 63.281 23.317 63.052 23.865 62.595 24.298 C 62.137 24.729 61.54 24.944 60.805 24.944 C 60.23 24.944 59.73 24.804 59.304 24.523 C 58.877 24.239 58.512 23.797 58.208 23.194 L 59.5 22.415 C 59.888 23.129 60.333 23.485 60.837 23.485 C 61.102 23.485 61.323 23.408 61.502 23.255 C 61.682 23.101 61.77 22.923 61.77 22.722 C 61.77 22.539 61.703 22.357 61.568 22.173 C 61.432 21.99 61.135 21.71 60.674 21.334 C 59.795 20.616 59.228 20.061 58.971 19.672 C 58.716 19.282 58.586 18.894 58.586 18.506 C 58.586 17.946 58.8 17.466 59.227 17.066 C 59.653 16.665 60.179 16.464 60.805 16.464 C 61.207 16.464 61.59 16.558 61.955 16.743 C 62.319 16.93 62.712 17.271 63.138 17.764 Z M 68.859 16.666 L 73.322 16.666 L 73.322 18.182 L 71.851 18.182 L 71.851 24.742 L 70.292 24.742 L 70.292 18.182 L 68.859 18.182 Z M 79.386 16.666 L 81.016 16.666 C 81.91 16.666 82.545 16.746 82.924 16.906 C 83.302 17.065 83.607 17.329 83.838 17.698 C 84.068 18.067 84.183 18.506 84.183 19.01 C 84.183 19.542 84.057 19.984 83.803 20.342 C 83.548 20.698 83.164 20.967 82.652 21.151 L 84.563 24.741 L 82.882 24.741 L 81.064 21.322 L 80.922 21.322 L 80.922 24.741 L 79.386 24.741 Z M 80.923 19.823 L 81.407 19.823 C 81.898 19.823 82.235 19.76 82.42 19.63 C 82.604 19.503 82.696 19.291 82.696 18.995 C 82.696 18.819 82.651 18.665 82.559 18.536 C 82.467 18.406 82.345 18.313 82.192 18.257 C 82.038 18.198 81.757 18.171 81.347 18.171 L 80.924 18.171 L 80.924 19.823 Z' style='fill: rgb(79, 176, 103);'/%3E%3C/svg%3E") no-repeat center;
/* 170px x 200px */
position: absolute;
/* position in the center of the screen */
left: 50%;
top: 50%;
text-align: center;
transform: translateX(-50%) translateY(-50%);
-webkit-transform: translateX(-50%) translateY(-50%);
-moz-transform: translateX(-50%) translateY(-50%);
-ms-transform: translateX(-50%) translateY(-50%);
-o-transform: translateX(-50%) translateY(-50%);
width: 100%;
height: 50px;
padding: 180px 0 0 0;
}
.barba-container.app-screen .app .error-msg, #barba-error-page .app .error-msg {
color: orange;
font-weight: bold;
}
#get-app-wrapper {
position: fixed;
bottom: 0;
width: 100vw;
z-index: 999;
}
#get-app-panel {
text-align: center;
background-color: #ffffff;
padding-bottom: 45px;
box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
}
.get-app-btns {
white-space: nowrap;
display: inline-block;
}
.get-app-btns a {
display: inline;
}
.get-app-btns a:hover, .get-app-btns a:active, .get-app-btns a:focus {
text-decoration: none;
background-color: unset;
}
.get-app-btns a img {
margin-left: -10px;
height: 75px;
}
.get-app-btns a.app-store img {
margin-left: 0;
height: 51px;
}
@media (max-width: 365px) {
.get-app-btns a img {
margin-left: -10px;
height: 62px;
}
.get-app-btns a.app-store img {
margin-left: -10;
height: 42px;
}
}
.btn {
-webkit-transition: all 0.15s ease;
-o-transition: all 0.15s ease;
transition: all 0.15s ease;
border: 1px solid #dbdbdb;
border-radius: 4px;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.2);
text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
}
.btn-default {
border-radius: 3px;
}
.btn-flat {
text-shadow: none;
box-shadow: none;
}
html {
font-family: sans-serif;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
display: block;
}
audio,
canvas,
progress,
video {
display: inline-block;
vertical-align: baseline;
}
a {
background-color: transparent;
}
a:active,
a:hover {
outline: 0;
}
b,
strong {
font-weight: bold;
}
h1 {
font-size: 2em;
margin: 0.67em 0;
}
small {
font-size: 80%;
}
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sup {
top: -0.5em;
}
img {
border: 0;
}
svg:not(:root) {
overflow: hidden;
}
figure {
margin: 1em 40px;
}
hr {
box-sizing: content-box;
height: 0;
}
button,
input,
optgroup,
select,
textarea {
color: inherit;
font: inherit;
margin: 0;
}
button {
overflow: visible;
}
button,
select {
text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
-webkit-appearance: button;
cursor: pointer;
}
button[disabled],
html input[disabled] {
cursor: default;
}
input {
line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
box-sizing: border-box;
padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
height: auto;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
td,
th {
padding: 0;
}
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
html {
font-size: 10px;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
font-size: 16px;
line-height: 1.61538;
color: #222222;
background-color: #fff;
}
input,
button,
select,
textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
a {
color: #959595;
text-decoration: none;
}
a:hover, a:focus {
color: #6f6f6f;
text-decoration: underline;
}
a:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
figure {
margin: 0;
}
img {
vertical-align: middle;
}
hr {
margin-top: 25px;
margin-bottom: 25px;
border: 0;
border-top: 1px solid #eeeeee;
}
.sr-only {
position: absolute;
width: 1px;
height: 1px;
margin: -1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
font-family: inherit;
font-weight: 500;
line-height: 1.1;
color: inherit;
}
h1 small,
h1 .small,
h1 .blog-post .post-footer,
.blog-post h1 .post-footer,
h1 .blog-post .comments time,
.blog-post .comments h1 time, h2 small,
h2 .small,
h2 .blog-post .post-footer,
.blog-post h2 .post-footer,
h2 .blog-post .comments time,
.blog-post .comments h2 time, h3 small,
h3 .small,
h3 .blog-post .post-footer,
.blog-post h3 .post-footer,
h3 .blog-post .comments time,
.blog-post .comments h3 time, h4 small,
h4 .small,
h4 .blog-post .post-footer,
.blog-post h4 .post-footer,
h4 .blog-post .comments time,
.blog-post .comments h4 time, h5 small,
h5 .small,
h5 .blog-post .post-footer,
.blog-post h5 .post-footer,
h5 .blog-post .comments time,
.blog-post .comments h5 time, h6 small,
h6 .small,
h6 .blog-post .post-footer,
.blog-post h6 .post-footer,
h6 .blog-post .comments time,
.blog-post .comments h6 time,
.h1 small,
.h1 .small,
.h1 .blog-post .post-footer,
.blog-post .h1 .post-footer,
.h1 .blog-post .comments time,
.blog-post .comments .h1 time, .h2 small,
.h2 .small,
.h2 .blog-post .post-footer,
.blog-post .h2 .post-footer,
.h2 .blog-post .comments time,
.blog-post .comments .h2 time, .h3 small,
.h3 .small,
.h3 .blog-post .post-footer,
.blog-post .h3 .post-footer,
.h3 .blog-post .comments time,
.blog-post .comments .h3 time, .h4 small,
.h4 .small,
.h4 .blog-post .post-footer,
.blog-post .h4 .post-footer,
.h4 .blog-post .comments time,
.blog-post .comments .h4 time, .h5 small,
.h5 .small,
.h5 .blog-post .post-footer,
.blog-post .h5 .post-footer,
.h5 .blog-post .comments time,
.blog-post .comments .h5 time, .h6 small,
.h6 .small,
.h6 .blog-post .post-footer,
.blog-post .h6 .post-footer,
.h6 .blog-post .comments time,
.blog-post .comments .h6 time {
font-weight: normal;
line-height: 1;
color: #777777;
}
h1, .h1,
h2, .h2,
h3, .h3 {
margin-top: 25px;
margin-bottom: 12.5px;
}
h4, .h4,
h5, .h5,
h6, .h6 {
margin-top: 12.5px;
margin-bottom: 12.5px;
}
h4 small,
h4 .small,
h4 .blog-post .post-footer,
.blog-post h4 .post-footer,
h4 .blog-post .comments time,
.blog-post .comments h4 time, .h4 small,
.h4 .small,
.h4 .blog-post .post-footer,
.blog-post .h4 .post-footer,
.h4 .blog-post .comments time,
.blog-post .comments .h4 time,
h5 small,
h5 .small,
h5 .blog-post .post-footer,
.blog-post h5 .post-footer,
h5 .blog-post .comments time,
.blog-post .comments h5 time, .h5 small,
.h5 .small,
.h5 .blog-post .post-footer,
.blog-post .h5 .post-footer,
.h5 .blog-post .comments time,
.blog-post .comments .h5 time,
h6 small,
h6 .small,
h6 .blog-post .post-footer,
.blog-post h6 .post-footer,
h6 .blog-post .comments time,
.blog-post .comments h6 time, .h6 small,
.h6 .small,
.h6 .blog-post .post-footer,
.blog-post .h6 .post-footer,
.h6 .blog-post .comments time,
.blog-post .comments .h6 time {
font-size: 75%;
}
h1, .h1 {
font-size: 41px;
}
h2, .h2 {
font-size: 34px;
}
h3, .h3 {
font-size: 28px;
}
h4, .h4 {
font-size: 20px;
}
p {
margin: 0 0 12.5px;
}
small,
.small,
.blog-post .post-footer,
.blog-post .comments time {
font-size: 87%;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.text-muted, .blog-archive .article-meta time {
color: #777777;
}
.text-primary {
color: #212121;
}
ul,
ol {
margin-top: 0;
margin-bottom: 12.5px;
}
ul ul,
ul ol,
ol ul,
ol ol {
margin-bottom: 0;
}
.list-inline {
padding-left: 0;
list-style: none;
margin-left: -5px;
}
.list-inline > li {
display: inline-block;
padding-left: 5px;
padding-right: 5px;
}
.container {
margin-right: auto;
margin-left: auto;
padding-left: 15px;
padding-right: 15px;
}
.container:before, .container:after {
content: " ";
display: table;
}
.container:after {
clear: both;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
.row {
margin-left: -15px;
margin-right: -15px;
}
.row:before, .row:after {
content: " ";
display: table;
}
.row:after {
clear: both;
}
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
position: relative;
min-height: 1px;
padding-left: 15px;
padding-right: 15px;
}
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
float: left;
}
.col-xs-2 {
width: 16.66667%;
}
.col-xs-10 {
width: 83.33333%;
}
.col-xs-12 {
width: 100%;
}
@media (min-width: 768px) {
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
float: left;
}
.col-sm-6 {
width: 50%;
}
.col-sm-12 {
width: 100%;
}
.col-sm-pull-6 {
right: 50%;
}
.col-sm-push-6 {
left: 50%;
}
}
@media (min-width: 992px) {
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
float: left;
}
.col-md-4 {
width: 33.33333%;
}
.col-md-6 {
width: 50%;
}
.col-md-8 {
width: 66.66667%;
}
.col-md-12 {
width: 100%;
}
.col-md-offset-2 {
margin-left: 16.66667%;
}
.col-md-offset-3 {
margin-left: 25%;
}
}
table {
background-color: transparent;
}
th {
text-align: left;
}
label {
display: inline-block;
max-width: 100%;
margin-bottom: 5px;
font-weight: bold;
}
input[type="radio"],
input[type="checkbox"] {
margin: 4px 0 0;
margin-top: 1px \9;
line-height: normal;
}
select[multiple],
select[size] {
height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}
.form-control {
display: block;
width: 100%;
height: 39px;
padding: 6px 12px;
font-size: 16px;
line-height: 1.61538;
color: #555555;
background-color: #fff;
background-image: none;
border: 1px solid #ccc;
border-radius: 4px;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
-webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
-o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.form-control:focus {
border-color: #66afe9;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-webkit-input-placeholder {
color: #999;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
background-color: #eeeeee;
opacity: 1;
}
.form-control[disabled], fieldset[disabled] .form-control {
cursor: not-allowed;
}
.form-group {
margin-bottom: 15px;
}
input[type="radio"][disabled], input[type="radio"].disabled, fieldset[disabled] input[type="radio"],
input[type="checkbox"][disabled],
input[type="checkbox"].disabled, fieldset[disabled]
input[type="checkbox"] {
cursor: not-allowed;
}
@media (min-width: 768px) {
.form-inline .form-control {
display: inline-block;
width: auto;
vertical-align: middle;
}
}
.form-horizontal .form-group {
margin-left: -15px;
margin-right: -15px;
}
.form-horizontal .form-group:before, .form-horizontal .form-group:after {
content: " ";
display: table;
}
.form-horizontal .form-group:after {
clear: both;
}
.btn {
display: inline-block;
margin-bottom: 0;
font-weight: normal;
text-align: center;
vertical-align: middle;
touch-action: manipulation;
cursor: pointer;
background-image: none;
border: 1px solid transparent;
white-space: nowrap;
padding: 6px 12px;
font-size: 16px;
line-height: 1.61538;
border-radius: 4px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
.btn:hover, .btn:focus, .btn.focus {
color: #333;
text-decoration: none;
}
.btn:active, .btn.active {
outline: 0;
background-image: none;
-webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-default {
color: #333;
background-color: #fff;
border-color: #ccc;
}
.btn-default:hover {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
color: #333;
background-color: #e6e6e6;
border-color: #adadad;
}
.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
color: #333;
background-color: #d4d4d4;
border-color: #8c8c8c;
}
.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
background-image: none;
}
.fade {
opacity: 0;
-webkit-transition: opacity 0.15s linear;
-o-transition: opacity 0.15s linear;
transition: opacity 0.15s linear;
}
.fade.in {
opacity: 1;
}
.collapse {
display: none;
}
.collapse.in {
display: block;
}
.collapsing {
position: relative;
height: 0;
overflow: hidden;
-webkit-transition-property: height, visibility;
transition-property: height, visibility;
-webkit-transition-duration: 0.35s;
transition-duration: 0.35s;
-webkit-transition-timing-function: ease;
transition-timing-function: ease;
}
.nav {
margin-bottom: 0;
padding-left: 0;
list-style: none;
}
.nav:before, .nav:after {
content: " ";
display: table;
}
.nav:after {
clear: both;
}
.nav > li {
position: relative;
display: block;
}
.nav > li > a {
position: relative;
display: block;
padding: 10px 15px;
}
.nav > li > a:hover, .nav > li > a:focus {
text-decoration: none;
background-color: #eeeeee;
}
.tab-content > .tab-pane {
display: none;
}
.tab-content > .active {
display: block;
}
.navbar {
position: relative;
min-height: 55px;
margin-bottom: 25px;
border: 1px solid transparent;
}
.navbar:before, .navbar:after {
content: " ";
display: table;
}
.navbar:after {
clear: both;
}
@media (min-width: 768px) {
.navbar {
border-radius: 4px;
}
}
.navbar-header:before, .navbar-header:after {
content: " ";
display: table;
}
.navbar-header:after {
clear: both;
}
@media (min-width: 768px) {
.navbar-header {
float: left;
}
}
.navbar-collapse {
overflow-x: visible;
padding-right: 15px;
padding-left: 15px;
border-top: 1px solid transparent;
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-overflow-scrolling: touch;
}
.navbar-collapse:before, .navbar-collapse:after {
content: " ";
display: table;
}
.navbar-collapse:after {
clear: both;
}
.navbar-collapse.in {
overflow-y: auto;
}
@media (min-width: 768px) {