forked from BFORAZURE1/PingoTemp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GenbodyPrivacyPolicy.html
1039 lines (1022 loc) · 38.6 KB
/
GenbodyPrivacyPolicy.html
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
<!-- saved from url=(0042)https://genbody.flycricket.io/privacy.html -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="./Privacycss" rel="stylesheet">
<link href="./bootstrap.min.css" rel="stylesheet">
<style>/* these are overridden inline in the mustache compilation */
:root {
--background-color: #ffffff;
--poweredbybg-color: #f0f0f0;
--text-color: #000000;
--link-color: #008DD5;
--linkhover-color: #005A88;
--main-font: 'Arvo'; }
.editing-active {
transition: all 0.2s ease-in-out;
border: 3px dotted rgba(0, 0, 0, 0.2); }
.editing-active:hover {
border-color: rgba(31, 175, 132, 0.8);
background-color: rgba(31, 175, 132, 0.3);
cursor: pointer; }
.placeholder-text {
font-style: italic;
opacity: 0.6; }
* {
font-family: var(--main-font);
font-weight: 400;
color: var(--text-color); }
body {
padding: 0;
margin: 0;
-webkit-text-size-adjust: 100%;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
-webkit-font-feature-settings: "pnum";
font-feature-settings: "pnum";
font-variant-numeric: proportional-nums;
position: relative;
background: #fff; }
a {
color: var(--link-color);
transition: all 0.2s linear; }
a:focus, a:hover {
color: var(--linkhover-color); }
a.nohover:hover {
text-decoration: none; }
.claim-bar {
padding: 12px 0;
background: #fff;
color: #555;
font-family: 'Oxygen', Helvetica, sans-serif;
transition: all 0.3s ease-in-out; }
.claim-bar * {
font-family: 'Oxygen', Helvetica, sans-serif; }
.claim-bar div {
text-decoration: none;
transition: all 0.3s ease-in-out;
font-size: 0.9em;
cursor: pointer;
color: #555; }
.claim-bar div span {
transition: all 0.3s ease-in-out;
color: #008DD5; }
.claim-bar:hover {
text-decoration: none;
text-decoration: none;
background: #008DD5;
color: white; }
.claim-bar:hover div {
color: white; }
.claim-bar:hover div span {
color: white; }
.whitelabel-badge-mobile {
background: white;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.25em;
padding-bottom: 0.25em;
border-radius: 4px;
text-align: center;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
transition: 0.2s all ease-in-out; }
.whitelabel-badge-mobile .wl-label {
font-size: 0.8em;
color: #777; }
.whitelabel-badge-mobile * {
transition: 0.2s all ease-in-out; }
.whitelabel-badge-mobile .st0 {
fill: #1FAF84; }
.whitelabel-badge-mobile:hover {
background: #1FAF84; }
.whitelabel-badge-mobile:hover * {
color: white; }
.whitelabel-badge-mobile:hover .st0 {
fill: #ffffff; }
@media (min-width: 491px) {
.whitelabel-badge-mobile {
display: none; } }
.promo-badge {
display: block;
position: relative;
background: white;
padding-left: 0.5em;
padding-right: 0.5em;
padding-top: 0.5em;
padding-bottom: 0.5em;
text-align: left;
transition: 0.2s all ease-in-out;
cursor: pointer; }
.promo-badge * {
font-family: 'Oxygen', Helvetica, sans-serif;
transition: 0.2s all ease-in-out;
line-height: normal;
text-align: left; }
.promo-badge .pb-loading-container {
padding: 0.5em; }
.promo-badge .pb-loading-container .lds-ring {
display: inline-block;
position: relative;
width: 40px;
height: 40px; }
.promo-badge .pb-loading-container .lds-ring div {
box-sizing: border-box;
display: block;
position: absolute;
width: 32px;
height: 32px;
margin: 4px;
border: 4px solid #ddd;
border-radius: 50%;
animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
border-color: #ddd transparent transparent transparent; }
.promo-badge .pb-loading-container .lds-ring div:nth-child(1) {
animation-delay: -0.45s; }
.promo-badge .pb-loading-container .lds-ring div:nth-child(2) {
animation-delay: -0.3s; }
.promo-badge .pb-loading-container .lds-ring div:nth-child(3) {
animation-delay: -0.15s; }
@keyframes lds-ring {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
.promo-badge .pb-main-container {
display: none;
flex-direction: row; }
.promo-badge .pb-main-container .pb-text-container {
flex: 1;
padding-right: 0.5em;
align-self: center; }
.promo-badge .pb-main-container .pb-text-container .pb-h1 span {
color: #555;
font-size: 1.2em;
margin-right: 0.2em; }
.promo-badge .pb-main-container .pb-text-container .pb-h1 .pb-ios {
width: 16px;
height: 16px;
fill: #ccc;
margin-bottom: -1px;
display: none; }
.promo-badge .pb-main-container .pb-text-container .pb-h1 .pb-android {
width: 15px;
height: 15px;
fill: #ccc;
stroke: #ccc;
margin-bottom: -1px;
display: none; }
.promo-badge .pb-main-container .pb-text-container .pb-h2 {
color: #888;
font-size: 0.9em;
margin-top: -2px; }
.promo-badge .pb-main-container .pb-text-container .pb-by {
font-size: 0.7em;
text-transform: uppercase;
text-align: left;
margin-top: 4px; }
.promo-badge .pb-main-container .pb-text-container .pb-by a {
color: #aaa; }
.promo-badge .pb-main-container .pb-text-container .pb-by a:hover {
color: #25d5a1;
text-decoration: none; }
.promo-badge .pb-main-container img {
width: 58px;
height: 58px;
border-radius: 8px;
margin-right: 0.75em;
align-self: center;
border: none;
display: none; }
@media (min-width: 600px) {
.promo-badge {
position: fixed;
z-index: 999999999;
top: 10px;
right: 10px;
border-radius: 8px;
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24); } }
footer {
background: #222; }
footer .editing-active {
border-color: rgba(255, 255, 255, 0.8); }
footer p {
color: #777 !important; }
footer .social-icons {
background: #222;
width: auto;
display: inline-block; }
footer .social-icons .social-icon {
transition: opacity 0.2s ease-in-out;
display: inline-block;
width: 32px;
margin-right: 12px;
opacity: 0.5;
padding-top: 30px; }
footer .social-icons .social-icon path, footer .social-icons .social-icon polygon {
transition: all 0.2s linear;
fill: white; }
footer .social-icons .social-icon:hover {
opacity: 1; }
footer .social-icons .social-icon.si-muted {
border: 2px dashed rgba(255, 255, 255, 0.3);
border-radius: 50%; }
footer .social-icons .social-icon.si-muted path, footer .social-icons .social-icon.si-muted polygon {
transition: all 0.2s linear;
fill: rgba(255, 255, 255, 0.3); }
footer .social-icons.editing-active {
margin-top: 30px;
padding: 10px;
margin-left: -10px; }
footer .social-icons.editing-active .social-icon {
padding-top: 0; }
footer .footer-store-button-container {
text-align: right;
margin: auto;
vertical-align: middle; }
@media (max-width: 767px) {
footer .footer-store-button-container {
text-align: center; } }
footer .footer-store-button-container .footer-store-button {
padding-top: 2em;
padding-bottom: 2em;
display: inline-block; }
footer .footer-store-button-container .footer-store-button .store-button {
height: auto !important;
margin: 0 6px; }
footer .footer-store-button-container .footer-store-button .store-button img {
height: 50px !important; }
#header .store-button img {
height: 60px !important; }
#attribution {
transition: all 0.2s ease-in-out;
padding: 2em 0;
font-size: 0.8em;
color: #888 !important; }
#attribution p {
margin-bottom: 0.45em;
font-size: 1.1em; }
#attribution a {
color: #aaa !important;
text-decoration: none; }
#attribution a:hover {
color: #007bff !important; }
h1 {
font-size: 3.2em;
margin-bottom: 0;
font-weight: bold;
letter-spacing: 0.05em; }
h2 {
margin-top: 0.2em;
margin-bottom: 0.3em;
font-size: 1.8em; }
h3 {
font-weight: normal;
font-size: 16px; }
html {
height: 100%; }
body {
height: 100%;
color: var(--text-color);
text-align: center; }
.cover-container {
margin-right: auto;
margin-left: auto; }
.cover {
padding: 0 1.5rem; }
.cover .btn-lg {
padding: .75rem 1.25rem;
font-weight: 700; }
p[id='text.line2'] {
margin-bottom: 0 !important; }
.site-wrapper {
position: relative;
background-size: cover;
min-height: 100vh; }
.site-wrapper .editing-active {
border-color: var(--text-color); }
.site-wrapper .site-wrapper-background {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
opacity: 0.9;
background-color: var(--background-color); }
.site-wrapper .site-wrapper-inner {
padding-top: 30px;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh; }
@media (min-width: 767px) {
.site-wrapper .site-wrapper-inner {
padding-top: 0; } }
.site-wrapper .site-wrapper-inner .arrows {
width: 60px;
height: 32px;
position: absolute;
left: 50%;
margin-left: -30px;
bottom: 15px;
opacity: 0.5; }
@media (max-width: 786px) {
.site-wrapper .site-wrapper-inner .arrows {
display: none; } }
.site-wrapper .site-wrapper-inner .arrows path {
stroke: var(--text-color);
fill: transparent;
stroke-width: 2px; }
@media (min-width: 40em) {
.cover-container {
width: 100%; } }
@media (max-width: 786px) {
* {
text-align: center; } }
#header {
display: flex;
flex-wrap: wrap;
width: 100%;
margin: auto;
align-items: center;
justify-content: center; }
#header .text-container {
text-align: left;
position: relative;
display: block;
padding-left: 2em;
padding-right: 2em;
flex: 1;
max-width: 800px; }
#header .text-container .tc-table {
width: 100%;
display: table;
height: auto;
padding-bottom: 5em;
padding-top: 2em; }
@media (min-width: 787px) {
#header .text-container .tc-table {
height: 100%;
padding-bottom: 0; } }
#header .text-container .tc-table .editing-ttp {
padding: 1em;
font-size: 1.2em; }
#header .text-container .tc-table .editing-app-button {
font-style: italic;
padding: 0.25em;
font-size: 1.2em;
display: inline-block;
border-radius: 1em; }
#header .text-container .tc-table .editing-app-button:first-of-type {
margin-right: 0.5em; }
#header .text-container h1 {
font-size: 2em;
margin-bottom: 0.25em;
font-weight: bold;
letter-spacing: 0.05em;
line-height: 1.1em; }
@media (min-width: 787px) {
#header .text-container h1 {
font-size: 3.2em; } }
#header .text-container h2 {
margin-top: 0.2em;
margin-bottom: 0.3em;
font-size: 1.3em; }
@media (min-width: 787px) {
#header .text-container h2 {
font-size: 1.8em; } }
#header .device-container {
padding-bottom: 2em;
width: 100%; }
#header .device-container img {
max-height: 70vh;
max-width: 90%;
position: relative;
margin-top: 5em; }
@media (min-width: 787px) {
#header .device-container {
width: auto;
max-width: 40vw;
padding-bottom: 0; }
#header .device-container img {
margin-top: 0; } }
.store-button {
width: auto;
display: inline-block; }
.store-button:first-of-type {
margin-right: 12px; }
@media (max-width: 491px) {
.store-button:first-of-type {
margin-right: 0;
margin-bottom: 12px; } }
.store-button:hover {
transition: all 0.2s ease-in-out;
transform: scale(1.05); }
.store-button svg {
width: auto;
height: 100%;
display: block;
position: relative; }
@media (max-width: 768px) {
.store-button {
margin: auto; } }
@media (max-width: 491px) {
.text-to-phone:not(.email-subscribe) {
display: none !important; } }
.text-to-phone input[type='tel'], .text-to-phone input[type='email'] {
transition: all 0.2s linear;
padding-top: 4px;
padding-bottom: 4px;
border: 1px solid rgba(0, 0, 0, 0.2);
border-radius: 4px;
border-top-right-radius: 0;
border-bottom-right-radius: 0;
outline: none;
color: #333 !important;
text-align: left; }
.text-to-phone input[type='tel']:focus, .text-to-phone input[type='email']:focus {
border-color: var(--link-color); }
.text-to-phone input[type='email'] {
padding-left: 12px;
width: 230px; }
.text-to-phone button, .text-to-phone input[type='submit'] {
border-radius: 4px;
background: var(--link-color);
color: white;
font-size: 14px;
border: 0;
padding: 6px 8px;
padding-top: 7px;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
outline: none;
cursor: pointer; }
section {
padding: 5em 0;
background: white; }
section:not(.text-section) * {
color: #333; }
section h2 {
font-size: 2.5em;
color: #333;
padding-bottom: 0.25em;
margin-bottom: 0; }
#screenshots .owl-nav {
padding-top: 3em; }
#screenshots .owl-nav button {
outline: none; }
#screenshots .owl-nav .owl-next, #screenshots .owl-nav .owl-prev {
font-size: 2em; }
#screenshots .owl-nav .owl-next *, #screenshots .owl-nav .owl-prev * {
color: rgba(0, 0, 0, 0.25); }
#screenshots .owl-nav .owl-prev {
margin-right: 1em; }
#screenshots img {
border-radius: 0.5em;
-webkit-box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.49);
-moz-box-shadow: 2px 2px 10px -2px rgba(0, 0, 0, 0.49);
box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.49); }
#screenshots h2 {
padding-bottom: 0.5em;
margin-bottom: 2em;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
display: inline-block;
padding-left: 2em;
padding-right: 2em; }
@media (max-width: 767px) {
#screenshots h2 {
padding-left: 0;
padding-right: 0;
display: block; } }
#features p {
font-size: 1.4em; }
#features ul {
padding-left: 1em;
padding-top: 0.75em; }
#features ul li {
list-style-type: circle;
font-size: 1.2em;
padding-bottom: 0.5em; }
#features button {
transition: transform 0.2s ease-in-out;
padding: 0.75em 1.5em;
border: 0;
border-radius: 4px;
margin-top: 1em;
background-color: var(--background-color);
color: white;
cursor: pointer; }
#features button:hover {
transform: scale(1.1); }
#features .feature-right {
text-align: left;
padding-top: 2em; }
#features .feature-left {
text-align: center;
padding-right: 0; }
#features .feature-left img {
max-width: 100%;
max-height: 575px; }
@media (min-width: 767px) {
#features .feature-left {
margin: auto;
padding-right: 40px; } }
@media (max-width: 767px) {
#features .feature-right {
padding-top: 4em; }
#features ul {
padding-left: 0; }
#features ul li {
list-style: none; } }
#reviews .stars {
width: 100%;
padding-bottom: 1.5em; }
#reviews .stars svg {
color: #eec643;
height: 34px;
width: 34px; }
#reviews .stars svg path {
fill: #eec643; }
#reviews #quote-carousel {
padding: 0 80px; }
#reviews #quote-carousel .carousel-control svg {
width: 14px; }
#reviews #quote-carousel .carousel-control path {
fill: #999; }
#reviews #quote-carousel .carousel-indicators {
margin-bottom: -1em; }
#reviews #quote-carousel .carousel-indicators li {
background: #c0c0c0; }
#reviews #quote-carousel .carousel-indicators .active {
background: #666; }
#reviews blockquote {
position: relative;
font-size: 1em;
font-style: italic;
color: #666;
padding: 0 5%;
margin-bottom: 0; }
@media (min-width: 768px) {
#reviews blockquote {
font-size: 1.6em;
line-height: 1.5em;
padding: 0 10%; } }
#reviews blockquote footer {
background: none !important;
font-size: 0.6em;
font-weight: 700;
color: #c7c6c1; }
#reviews blockquote footer:before {
content: '\2015'; }
a.contact {
color: #999; }
a.contact:hover {
color: #fff;
text-decoration: none; }
@media (max-width: 767px) {
* {
text-align: center; }
section.text-section .col-xs-12 {
padding: 0 15px; } }
#dl-loader {
position: fixed;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: white;
padding-top: 5em;
display: none; }
#dl-loader .coffee_cup {
width: 20px;
height: 24px;
border: 1px #999 solid;
border-radius: 0px 0px 5px 5px;
position: relative;
margin: 12px auto; }
#dl-loader .coffee_cup:after, #dl-loader .coffee_cup:before {
position: absolute;
content: ""; }
#dl-loader .coffee_cup:after {
width: 5px;
height: 12px;
border: 1px #999 solid;
border-left: none;
border-radius: 0px 20px 20px 0px;
left: 20px; }
#dl-loader .coffee_cup:before {
width: 1px;
height: 6px;
background-color: #999;
top: -10px;
left: 4px;
box-shadow: 5px 0px 0px 0px #999, 5px -5px 0px 0px #999, 10px 0px 0px 0px #999;
-webkit-animation: steam 1s linear infinite alternate;
-moz-animation: steam 1s linear infinite alternate;
animation: steam 1s linear infinite alternate; }
@-webkit-keyframes steam {
0% {
height: 0px; }
100% {
height: 6px; } }
@-moz-keyframes steam {
0% {
height: 0px; }
100% {
height: 6px; } }
@keyframes steam {
0% {
height: 0px; }
100% {
height: 6px; } }
#dl-loader div {
color: #666;
font-size: 0.9em; }
</style>
<script type="text/javascript" async="" src="./Genbody - Privacy Policy_files/analytics.js.download"></script><script type="text/javascript" async="" src="./Genbody - Privacy Policy_files/js"></script><script src="./Genbody - Privacy Policy_files/jquery.min.js.download" type="text/javascript"></script>
<script src="./Genbody - Privacy Policy_files/bootstrap.min.js.download" type="text/javascript"></script>
<script src="./Genbody - Privacy Policy_files/bowser.min.js.download" type="text/javascript"></script>
<script type="text/javascript">
var _fc_stage = window.location.href.startsWith('file://') || window.location.href.startsWith('http://') ? "local" : "prod";
</script>
<style id="global_style">:root {
--background-color: #004AC5;
--text-color: #ffffff;
--link-color: #EEC643;
--linkhover-color: #005A88;
--main-font: 'Oxygen';
--backgroundgradient: True;
--backgroundopacity: 0.9;
}
</style>
<style>
.grecaptcha-badge {
visibility: hidden;
}
* {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.main-container {
color: #222;
padding: 2em 0;
padding-bottom: 4em;
text-align: left !important;
padding: 2em;
background: white;
min-height: 400px;
-webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
-moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.25);
}
.main-container * {
text-align: left !important;
}
.main-container *:not(a) {
color: #222;
}
.main-container ins.adsbygoogle {
background: #ccc;
}
.main-container #content p {
margin-top: 1rem;
margin-bottom: 1rem;
}
a {
color: #009c9c;
}
a:hover {
color: #007bff;
}
h2 {
font-size: 1.5em;
}
@media only screen and (max-width: 600px) {
h2 {
font-size: 1.2em;
}
}
a.nohover {
color: white;
text-decoration: none;
}
#preloader {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
background: white;
text-align: center;
align-items: center;
justify-content: center;
align-content: center;
z-index: 99999;
}
.loader {
border: 8px solid #f3f3f3;
/* Light grey */
border-top: 8px solid #009c9c;
/* Blue */
border-radius: 50%;
width: 60px;
height: 60px;
animation: spin 1.5s linear infinite;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
</style>
<style>
#fc123-promo {
padding-bottom: 20px;
background: #eee;
}
.fc123-promoclass {
padding: 10px 20px;
display: none;
flex-wrap: wrap;
cursor: pointer;
}
.fc123-promoclass * {
font-family: 'Exo 2', sans-serif;
}
.fc123-promoclass img {
display: inline-block;
margin-right: 20px;
border-radius: 8px;
max-height: 50px;
}
.fc123-promoclass .fc123-button {
padding: 10px 30px;
border-radius: 8px;
font-weight: bold;
transition: all 0.2s ease-in-out;
cursor: pointer;
margin-top: 10px;
}
.fc123-promoclass .fc123-button:hover {
background: #357DED;
}
.fc123-promoclass .fc123-pc-text {
padding-right: 1em;
}
.fc123-promoclass h1 {
text-align: left;
font-size: 1.8em;
margin: 0;
}
.fc123-promoclass h2 {
text-align: left;
font-size: 1.1em;
margin: 0;
}
.fc123-pr {
font-size: 0.7em;
text-align: right;
margin-top: 5px;
opacity: 0.8;
margin-right: 4px;
transition: all 0.2s ease-in-out;
}
.fc123-pr:hover {
opacity: 1;
}
.fc123-button svg {
width: 18px;
height: 18px;
position: relative;
top: 3px;
margin-right: 4px;
display: none;
}
.fc123-button svg.fc123-b-ios {
top: 2px;
}
@media only screen and (max-width: 768px) {
.fc123-promoclass h1 {
font-size: 1.5em;
}
.fc123-promoclass h2 {
font-size: 1em;
}
}
@media only screen and (max-width: 600px) {
.fc123-promoclass h1 {
font-size: 1.25em;
text-align: center;
}
.fc123-promoclass h2 {
font-size: 0.9em;
text-align: center;
}
.fc123-promoclass .fc123-button {
padding: 10px 24px;
border-radius: 4px;
font-size: 1em;
}
.fc123-pr {
text-align: center;
margin-right: 0;
}
.fc123-button svg {
width: 16px;
height: 16px;
position: relative;
top: 3px;
margin-right: 4px;
}
.fc123-promoclass {
text-align: center !important;
}
.fc123-promoclass img {
display: none;
}
.fc123-promoclass .fc123-pc-action {
text-align: center;
width: 100%;
}
.fc123-break {
flex-basis: 100%;
height: 0;
}
}
</style>
<meta content="Genbody - Privacy Policy" property="og:title">
<!-- <meta property="og:image" content="" /> -->
<meta content="" property="og:description">
<meta content="" name="description">
<title>Genbody - Privacy Policy</title>
</head>
<body style="background:#222;">
<div id="preloader" pro-remove="" style="display: none;">
<div style="flex:1;"></div>
<div class="loader"></div>
<div style="flex:1;"></div>
</div>
<div id="fc123-promo" pro-remove="" whitelist-remove=""></div>
</div>
<div class="container">
<div class=" main-container">
<h2>
Genbody
> Privacy Policy
</h2>
<hr>
<div id="content">
<p> Kwell Labs built the Genbody app as a Free app. This SERVICE is provided by Kwell Labs at no cost and is intended for use as is. </p>
<p> This page is used to inform visitors regarding our policies with the collection, use, and disclosure of Personal Information if anyone decided to use our Service. </p>
<p> If you choose to use our Service, then you agree to the collection and use of information in relation to this policy. The Personal Information is not collected in this application. </p>
<p> The terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, which is accessible at Genbody unless otherwise defined in this Privacy Policy. </p>
<p><strong>Information Collection and Use</strong></p>
<p> For a better experience, while using our Service, we will not require you to provide us with certain personally identifiable information. The information that we request is only to access camera and thar too for scanning the qr code from the test kit as described in this privacy policy. </p>
<div>
<p> The app does not use third party services that may collect information used to identify you. </p>
<p> Link to privacy policy of third party service providers used by the app </p>
<ul>
<li><a href="https://www.google.com/policies/privacy/" rel="noopener noreferrer" target="_blank">Google Play Services</a></li>
<!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- --><!-- -->
</ul>
</div>
<p><strong>Log Data</strong></p>
<p> Because, this app is meant only to provide digital instructions so ir does not maintains any logs about any of your information such as device entity,persoanl identity etc. </p>
<p><strong>Cookies</strong></p>
<p> Cookies are files with a small amount of data that are commonly used as anonymous unique identifiers. These are sent to your browser from the websites that you visit and are stored on your device's internal memory. </p>
<p> This Service does not use these “cookies” explicitly. Also, the app does not use third party code and libraries that use “cookies” to collect information and improve their services. You have the option to either accept or refuse these cookies and know when a cookie is being sent to your device. If you choose to refuse our cookies, you may not be able to use some portions of this Service. </p>
<p><strong>Service Providers</strong></p>
<p> We will never employ third-party companies and individuals for any reasons: </p>
<p><strong>Security</strong></p>
<p> Since we are not really collecting any of your personal information so it is 100% secure and reliable to use this application, </p>
<p><strong>Links to Other Sites</strong></p>
<p> This Service may contain links to other sites. If you click on a third-party link, you will be directed to that site. Note that these external sites are not operated by us. Therefore, we strongly advise you to review the Privacy Policy of these websites. We have no control over and assume no responsibility for the content, privacy policies, or practices of any third-party sites or services. </p>
<p><strong>Children’s Privacy</strong></p>
<p> These Services do not address anyone under the age of 13. We do not collect personally identifiable information from children under 13 years of age or any age group. </p>
<p><strong>Changes to This Privacy Policy</strong></p>
<p> We may update our Privacy Policy from time to time. Thus, you are advised to review this page periodically for any changes. We will notify you of any changes by posting the new Privacy Policy on this page. </p>
<p>This policy is effective as of 2021-08-02</p>
<p><strong>Contact Us</strong></p>
<p> If you have any questions or suggestions about our Privacy Policy, do not hesitate to contact us at [email protected]. </p>
</div>
</div>
</div>
</div>
<footer>
<footer>
<div class="container">
<div class="row">
<div class="col-xs-12 col-md-6" style="text-align:left;margin:auto;vertical-align:middle;">
</div>
<div class="col-xs-12 col-md-6 footer-store-button-container"></div>
</div>
</div>
</footer>
</footer>
<script async="" src="./Genbody - Privacy Policy_files/js(1)"></script>
<script id="script_analytics">// $(function () {
// $.ajax({
// type: "POST",
// url: "https://app.flycricket.com/api/website_view/532dcec217a1402e9b700aa13b09ec7c",
// dataType: 'json',
// contentType: 'application/json',
// data: JSON.stringify({ referrer: document.referrer }),
// success: function (resp) {
// console.log(resp);
// },
// error: function (xhr, ajaxOptions, thrownError) {
// console.error(thrownError);
// }
// });
// });
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-84588334-7');
</script>
<script pro-remove="" type="text/javascript" whitelist-remove="">
function _fc_dlog(identifier) {
console.log("Logging identifier:", identifier);
var xhr = new XMLHttpRequest();
xhr.open("POST", 'https://v4s77pzm9j.execute-api.us-east-1.amazonaws.com/' + _fc_stage + '/impression', true);
xhr.setRequestHeader("Content-Type", "application/json;charset=UTF-8");
xhr.send(JSON.stringify({
action: identifier,
source: btoa(window.location.href),
}));
}
function _fc_loadgeneric() {
var jqxhr = $.getJSON("https://cdn.flycricket.com/options.json?t=" + Date.now(), function (json) {
//var jqxhr = $.getJSON("../../options.json?t=" + Date.now(), function (json) {
// pick one at random
// TODO: later -- platform filtering
var ndx = Math.floor(Math.random() * 100) % json.options.length;
var selected = json.options[ndx];
// display it and mark it as the one used
$("#fc123-promo h1").text(selected.privacy.content.h1);
$("#fc123-promo h2").text(selected.privacy.content.h2);
$("#fc123-promo .fc123-button .fc123-btn-txt").text(selected.privacy.content.cta);
$(".fc123-promoclass").css('background', selected.privacy.style.main.background);
$(".fc123-promoclass").css('color', selected.privacy.style.main.color);
$(".fc123-promoclass h1").css('color', selected.privacy.style.main.color);
$(".fc123-promoclass h2").css('color', selected.privacy.style.main.color);
$(".fc123-pr a").css('color', selected.privacy.style.main.color);
$(".fc123-promoclass .fc123-button").css('background', selected.privacy.style.cta.background);
$(".fc123-promoclass .fc123-button").css('color', selected.privacy.style.cta.color);
$(".fc123-promoclass .fc123-button .fc123-btn-txt").css('color', selected.privacy.style.cta.color);
$(".fc123-promoclass .fc123-button .st0").css('fill', selected.privacy.style.cta.color);
$(".fc123-promoclass .fc123-button .st1").css('stroke', selected.privacy.style.cta.color);
$(".fc123-promoclass .fc123-button").mouseenter(function (elem) {
$(this).css('background', selected.privacy.style.cta.backgroundHover);
}).mouseleave(function (elem) {
$(this).css('background', selected.privacy.style.cta.background);
});
$(".fc123-promoclass img").attr('src', selected.privacy.image);
// a platform indicator depending on the platform
if (bowser.ios) {
$(".fc123-b-ios").css('display', 'inline-block');
} else if (bowser.android) {