abhicodes commited on
Commit
a74e4d8
1 Parent(s): 932fda6

Delete static

Browse files
static/505error.gif DELETED

Git LFS Details

  • SHA256: 974aade8c7afe61ff53afabaf425a8618244b80b4ca6e1405e5d2d3ddfb15388
  • Pointer size: 132 Bytes
  • Size of remote file: 4.06 MB
static/back-index.svg DELETED
static/background.svg DELETED
static/bin.png DELETED
Binary file (19.9 kB)
 
static/chat.png DELETED
Binary file (5.18 kB)
 
static/check-mark.png DELETED
Binary file (18.6 kB)
 
static/css/style.css DELETED
@@ -1,2827 +0,0 @@
1
- /*============ Google fonts ============*/
2
- @import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
3
-
4
- /*======= CSS variables =======*/
5
- :root {
6
- --white-color: #000;
7
- --dark-color: #fff;
8
- --body-bg-color: #fff;
9
- --section-bg-color: #fff;
10
- --navigation-item-hover-color: #ff9900;
11
-
12
- --text-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
13
- --box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
14
-
15
- --scroll-bar-color: #fff;
16
- --scroll-thumb-color: #ff9100;
17
- --scroll-thumb-hover-color: #ff6800;
18
- }
19
-
20
- /*======= Scroll bar =======*/
21
- ::-webkit-scrollbar{
22
- width: 11px;
23
- background: var(--scroll-bar-color);
24
- }
25
-
26
- ::-webkit-scrollbar-thumb{
27
- width: 100%;
28
- background: var(--scroll-thumb-color);
29
- border-radius: 2em;
30
- }
31
-
32
- ::-webkit-scrollbar-thumb:hover{
33
- background: var(--scroll-thumb-hover-color);
34
- }
35
-
36
- /*======= Main CSS =======*/
37
- *{
38
- margin: 0;
39
- padding: 0;
40
- box-sizing: border-box;
41
- font-family: 'Poppins', sans-serif;
42
- }
43
-
44
- body{
45
- background: var(--body-bg-color);
46
- }
47
- html {
48
- scroll-behavior: smooth;
49
- }
50
- section{
51
- position: relative;
52
- }
53
-
54
- .section{
55
- color: var(--white-color);
56
- background: var(--section-bg-color);
57
- padding: 35px 200px;
58
- transition: 0.3s ease;
59
- }
60
-
61
- /*======= Header =======*/
62
- header{
63
- z-index: 999;
64
- position: fixed;
65
- width: 100%;
66
- height: calc(5rem + 1rem);
67
- top: 0;
68
- left: 0;
69
- display: flex;
70
- justify-content: center;
71
- transition: 0.5s ease;
72
- transition-property: height, background;
73
- }
74
-
75
- header.sticky{
76
- height: calc(2.5rem + 1rem);
77
- background: rgba(255, 255, 255, 0.1);
78
- backdrop-filter: blur(20px);
79
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
80
- }
81
-
82
- header .nav-bar{
83
- position: relative;
84
- width: 100%;
85
- display: flex;
86
- align-items: center;
87
- justify-content: space-between;
88
- padding: 0 200px;
89
- transition: 0.3s ease;
90
- }
91
-
92
- .nav-close-btn, .nav-menu-btn{
93
- display: none;
94
- }
95
-
96
- .nav-bar .logo{
97
- color: var(--white-color);
98
- font-size: 1.8em;
99
- font-weight: 600;
100
- letter-spacing: 2px;
101
- text-transform: uppercase;
102
- text-decoration: none;
103
- text-shadow: var(--text-shadow);
104
- }
105
-
106
- .navigation .nav-items a{
107
- color: var(--white-color);
108
- font-size: 1em;
109
- text-decoration: none;
110
- text-shadow: var(--text-shadow);
111
- position: relative;
112
- }
113
-
114
- .navigation .nav-items a i{
115
- display: none;
116
- }
117
-
118
- .navigation .nav-items a:not(:last-child){
119
- margin-right: 45px;
120
- }
121
-
122
- .navigation .nav-items a .svgContainer {
123
- position: absolute;
124
- top : -50%;
125
- left: 100%;
126
- width: 50px;
127
- height: 50px;
128
- margin: 0 auto 1em;
129
- border-radius: 50%;
130
- background: none;
131
- border: solid 2.5px #3A5E77;
132
- overflow: hidden;
133
- }
134
-
135
- .navigation .nav-items a .svgContainer div {
136
- position: relative;
137
- width: 100%;
138
- height: 0;
139
- overflow: hidden;
140
- padding-bottom: 100%;
141
- }
142
-
143
- .navigation .nav-items a .svgContainer .mySVG {
144
- position: absolute;
145
- width: 100%;
146
- height: 100%;
147
- pointer-events: none;
148
- }
149
-
150
- .profile {
151
- position: relative;
152
- }
153
-
154
- .floating-div {
155
- position: absolute;
156
- display: none;
157
- top: 80px;
158
- right: 10%;
159
- padding: 10px;
160
- background-color: #fff;
161
- border-radius: 10px;
162
- border: 1px solid #333;
163
- }
164
-
165
- .floating-div .svgContainer {
166
- position: relative;
167
- width: 100px;
168
- height: 100px;
169
- margin: 0 auto 1em;
170
- border-radius: 50%;
171
- background: none;
172
- border: solid 2.5px #3A5E77;
173
- overflow: hidden;
174
- }
175
-
176
- .floating-div .svgContainer div {
177
- position: relative;
178
- width: 100%;
179
- height: 0;
180
- overflow: hidden;
181
- padding-bottom: 100%;
182
- }
183
-
184
- .floating-div .svgContainer .mySVG {
185
- position: absolute;
186
- width: 100%;
187
- height: 100%;
188
- pointer-events: none;
189
- }
190
-
191
- .flex-div {
192
- padding: 10px;
193
- margin:10px auto;
194
- }
195
-
196
- .flex-div a{
197
- color:black;
198
- line-height:400%;
199
- }
200
-
201
- .flex-div .svgContainer {
202
- position: relative;
203
- width: 100px;
204
- height: 100px;
205
- margin: 0 auto 1em;
206
- border-radius: 50%;
207
- background: none;
208
- border: solid 2.5px #3A5E77;
209
- overflow: hidden;
210
- }
211
-
212
- .flex-div .svgContainer div {
213
- position: relative;
214
- width: 100%;
215
- height: 0;
216
- overflow: hidden;
217
- padding-bottom: 100%;
218
- }
219
-
220
- .flex-div .svgContainer .mySVG {
221
- position: absolute;
222
- width: 100%;
223
- height: 100%;
224
- pointer-events: none;
225
- }
226
-
227
- /*======= Home =======*/
228
- .home{
229
- min-height: 100vh;
230
- }
231
-
232
- .home:before{
233
- z-index: 888;
234
- content: '';
235
- position: absolute;
236
- width: 100%;
237
- height: 50px;
238
- bottom: 0;
239
- left: 0;
240
- background: linear-gradient(transparent, var(--section-bg-color));
241
- }
242
-
243
- /*======= Background slider =======*/
244
- .bg-slider{
245
- z-index: 777;
246
- position: relative;
247
- width: 100%;
248
- min-height: 100vh;
249
- }
250
-
251
- .bg-slider .swiper-slide{
252
- background-image: url('/static/index-backed.svg');
253
- background-size: cover;
254
- background-repeat: no-repeat;
255
- background-position: center center;
256
- position: relative;
257
- width: 100%;
258
- height: 100vh;
259
- }
260
-
261
- .bg-slider .swiper-slide img{
262
- width: 100%;
263
- height: 100vh;
264
- object-fit: cover;
265
- background-position: center;
266
- background-size: cover;
267
- pointer-events: none;
268
- }
269
-
270
- @media screen and (max-width: 700px){
271
- .bg-slider .swiper-slide img {
272
- width: 100%;
273
- height: 50vh;
274
- }
275
-
276
- }
277
-
278
- .swiper-slide .text-content{
279
- position: absolute;
280
- top: 25%;
281
- color: var(--white-color);
282
- margin: 0 200px;
283
- transition: 0.3s ease;
284
- }
285
-
286
- .swiper-slide .text-content .title{
287
- font-size: 4em;
288
- font-weight: 700;
289
- text-shadow: var(--text-shadow);
290
- margin-bottom: 20px;
291
- transform: translateY(-50px);
292
- opacity: 0;
293
- }
294
-
295
- .swiper-slide-active .text-content .title{
296
- transform: translateY(0);
297
- opacity: 1;
298
- transition: 1s ease;
299
- transition-delay: 0.3s;
300
- transition-property: transform, opacity;
301
- }
302
-
303
- .swiper-slide .text-content .title span{
304
- font-size: 0.3em;
305
- font-weight: 300;
306
- }
307
-
308
- .swiper-slide .text-content p{
309
- max-width: 700px;
310
- background: rgba(255, 255, 255, 0.1);
311
- backdrop-filter: blur(10px);
312
- text-shadow: var(--text-shadow);
313
- padding: 20px;
314
- border-radius: 10px;
315
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
316
- border-right: 1px solid rgba(255, 255, 255, 0.1);
317
- box-shadow: var(--box-shadow);
318
- transform: translateX(-80px);
319
- opacity: 0;
320
- }
321
-
322
- .swiper-slide-active .text-content p{
323
- transform: translateX(0);
324
- opacity: 1;
325
- transition: 1s ease;
326
- transition-delay: 0.3s;
327
- transition-property: transform, opacity;
328
- }
329
-
330
- .swiper-slide .text-content .read-btn{
331
- border: none;
332
- outline: none;
333
- background: var(--white-color);
334
- color: var(--dark-color);
335
- font-size: 1em;
336
- font-weight: 500;
337
- padding: 8px 25px;
338
- display: flex;
339
- align-items: center;
340
- margin-top: 40px;
341
- border-radius: 10px;
342
- cursor: pointer;
343
- transform: translateX(50px);
344
- opacity: 0;
345
- }
346
-
347
- .swiper-slide-active .text-content .read-btn{
348
- transform: translateX(0);
349
- opacity: 1;
350
- transition: 1s ease;
351
- transition-delay: 0.3s;
352
- transition-property: transform, opacity;
353
- }
354
-
355
- .swiper-slide .text-content .read-btn i{
356
- font-size: 1.6em;
357
- transition: 0.3s ease;
358
- }
359
-
360
- .swiper-slide .text-content .read-btn:hover i{
361
- transform: translateX(5px);
362
- }
363
-
364
- .dark-layer:before{
365
- content: '';
366
- position: absolute;
367
- width: 100%;
368
- height: 100vh;
369
- top: 0;
370
- left: 0;
371
- background: rgba(0, 0, 0, 0.1);
372
- }
373
-
374
- .bg-slider-thumbs{
375
- z-index: 777;
376
- position: absolute;
377
- bottom: 7em;
378
- left: 50%;
379
- transform: translateX(-50%);
380
- transition: 0.3s ease;
381
- }
382
-
383
- .thumbs-container{
384
- background: rgba(255, 255, 255, 0.1);
385
- backdrop-filter: blur(10px);
386
- padding: 10px 3px;
387
- border-radius: 10px;
388
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
389
- border-right: 1px solid rgba(255, 255, 255, 0.1);
390
- box-shadow: var(--box-shadow);
391
- }
392
-
393
- .thumbs-container img{
394
- width: 50px;
395
- height: 35px;
396
- margin: 0 5px;
397
- border-radius: 5px;
398
- cursor: pointer;
399
- }
400
-
401
- .swiper-slide-thumb-active{
402
- border: 1px solid var(--white-color);
403
- }
404
-
405
- #visual {
406
- width:100%;
407
- height:100%;
408
- animation: spin 30s linear infinite;
409
- }
410
-
411
- @keyframes spin {
412
- 100% {
413
- transform: rotate(360deg);
414
- }
415
- }
416
-
417
- #visual2 {
418
- width:100%;
419
- height:100%;
420
- animation: spin2 30s linear infinite;
421
- }
422
-
423
- @keyframes spin2 {
424
- 100% {
425
- transform: rotate(-360deg);
426
- }
427
- }
428
-
429
- /*======= Media icons =======*/
430
- .media-icons{
431
- z-index: 999;
432
- position: absolute;
433
- display: flex;
434
- flex-direction: column;
435
- top: 50%;
436
- transform: translateY(-50%);
437
- margin-left: 90px;
438
- }
439
-
440
- .media-icons a{
441
- color: var(--white-color);
442
- font-size: 1.7em;
443
- margin: 10px 0;
444
- }
445
-
446
- /*======= About section =======*/
447
- .about h2{
448
- font-size: 3em;
449
- font-weight: 600;
450
- }
451
-
452
- .about p{
453
- margin: 25px 0;
454
- }
455
-
456
- /*======= Media queries (max-width: 1100px) =======*/
457
- @media screen and (max-width: 1100px){
458
- header .nav-bar{
459
- padding: 0 50px;
460
- }
461
-
462
- .section{
463
- padding: 25px 50px;
464
- }
465
-
466
- .media-icons{
467
- right: 0;
468
- margin-right: 50px;
469
- }
470
-
471
- .swiper-slide .text-content{
472
- margin: 0 120px 0 50px;
473
- }
474
-
475
- .bg-slider-thumbs{
476
- bottom: 3em;
477
- }
478
- }
479
-
480
- /*======= Media queries (max-width: 900px) =======*/
481
- @media screen and (max-width: 900px){
482
- header .nav-bar{
483
- padding: 25px 20px;
484
- }
485
-
486
- .section{
487
- padding: 25px 20px;
488
- }
489
-
490
- .media-icons{
491
- margin-right: 20px;
492
- }
493
-
494
- .media-icons a{
495
- font-size: 1.5em;
496
- }
497
-
498
- .swiper-slide .text-content{
499
- margin: 0 70px 0 20px;
500
- }
501
-
502
- .swiper-slide .text-content .title{
503
- font-size: 2em;
504
- }
505
-
506
- .swiper-slide .text-content .title span{
507
- font-size: 0.35em;
508
- }
509
-
510
- .swiper-slide .text-content p{
511
- font-size: 0.7em;
512
- }
513
-
514
- /*======= Navigation menu =======*/
515
- .nav-menu-btn{
516
- display: block;
517
- color: var(--white-color);
518
- font-size: 1.5em;
519
- cursor: pointer;
520
- }
521
-
522
- .nav-close-btn{
523
- display: block;
524
- color: var(--white-color);
525
- position: absolute;
526
- top: 0;
527
- right: 0;
528
- font-size: 1.3em;
529
- margin: 10px;
530
- cursor: pointer;
531
- transition: 0.3s ease;
532
- }
533
-
534
- .navigation{
535
- z-index: 99999;
536
- position: fixed;
537
- width: 100%;
538
- height: 100vh;
539
- top: 0;
540
- left: 0;
541
- background: rgba(0, 0, 0, 0.25);
542
- display: flex;
543
- justify-content: center;
544
- align-items: center;
545
- visibility: hidden;
546
- opacity: 0;
547
- transition: 0.3s ease;
548
- }
549
-
550
- .navigation.active{
551
- visibility: visible;
552
- opacity: 1;
553
- }
554
-
555
- .navigation .nav-items{
556
- position: relative;
557
- background: var(--dark-color);
558
- width: 400px;
559
- max-width: 400px;
560
- display: grid;
561
- place-content: center;
562
- margin: 20px;
563
- padding: 40px;
564
- border-radius: 20px;
565
- box-shadow: var(--box-shadow);
566
- transform: translateY(-200px);
567
- transition: 0.3s ease;
568
- }
569
-
570
- .navigation.active .nav-items{
571
- transform: translateY(0);
572
- }
573
-
574
- .navigation .nav-items a{
575
- color: var(--white-color);
576
- font-size: 1em;
577
- margin: 15px 50px;
578
- transition: 0.3s ease;
579
- }
580
-
581
- .navigation .nav-items a:hover{
582
- color: var(--navigation-item-hover-color);
583
- }
584
-
585
- .navigation .nav-items > a > i{
586
- display: inline-block;
587
- font-size: 1.3em;
588
- margin-right: 5px;
589
- }
590
-
591
- .swiper-slide .text-content .read-btn{
592
- font-size: 0.9em;
593
- padding: 5px 15px;
594
- }
595
-
596
- /*======= About section =======*/
597
- .about h2{
598
- font-size: 2.5em;
599
- }
600
-
601
- .about p{
602
- font-size: 0.9em;
603
- }
604
- }
605
-
606
- /*======= Features section =======*/
607
- #features {
608
- background-image: url('/static/feature-back.svg');
609
- background-size: cover;
610
- background-repeat: no-repeat;
611
- background-position: center center;
612
- width:100%;
613
- }
614
-
615
- .flex-container {
616
- display: flex;
617
- justify-content: space-around;
618
- align-items: center;
619
- }
620
-
621
- .flex-item1,
622
- .flex-item4,
623
- .flex-item5,
624
- .flex-item8 {
625
- border: 2px;
626
- border-radius: 15px;
627
- margin:20px;
628
- padding: 20px;
629
- text-align: justify;
630
- background: rgba(255, 255, 255, 0.1);
631
- backdrop-filter: blur(10px);
632
- text-shadow: var(--text-shadow);
633
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
634
- border-right: 1px solid rgba(255, 255, 255, 0.1);
635
- box-shadow: var(--box-shadow);
636
- }
637
-
638
- .flex-item2,
639
- .flex-item3,
640
- .flex-item6,
641
- .flex-item7 {
642
- margin:20px;
643
- width:40%;
644
- flex-basis: 50%;
645
- padding: 10px;
646
- text-align: center;
647
- }
648
- /*
649
- .flex-item-line{
650
- width: 25%;
651
- height: 50px;
652
- position: absolute;
653
- border-bottom: 3px solid grey
654
- }*/
655
-
656
- .numbers {
657
- margin:10px auto;
658
- border-radius:50%;
659
- height:150px;
660
- width:150px;
661
- text-align:center;
662
- justify-content:center;
663
- padding:30px;
664
- font-size:40px;
665
- background: rgb(255,153,0);
666
- background: linear-gradient(45deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
667
- box-shadow: var(--box-shadow);
668
- }
669
-
670
- .marker {
671
- display:none;
672
- }
673
-
674
- @media screen and (max-width: 900px) {
675
- .marker {
676
- display: block;
677
- }
678
- .flex-item2,
679
- .flex-item3,
680
- .flex-item6,
681
- .flex-item7 {
682
- display: none;
683
- }
684
- .flex-item1,
685
- .flex-item4,
686
- .flex-item5,
687
- .flex-item8 {
688
- flex-basis: 75%;
689
- font-size:0.8em;
690
- width:100%;
691
- }
692
- }
693
-
694
-
695
- /* ============== Footer ================ */
696
- .footer-flex {
697
- display: flex;
698
- flex-direction:row;
699
- justify-content: space-around;
700
- align-items: flex-end;
701
- padding:20px;
702
- font-weight:bold;
703
- }
704
- .logo-foot {
705
- padding:20px;
706
- margin:10px auto;
707
- }
708
- .copyright {
709
- padding:20px;
710
- margin:10px auto;
711
- }
712
- .follow {
713
- padding:20px;
714
- margin:10px auto;
715
- }
716
-
717
- .flex { /*Flexbox for containers*/
718
- display: flex;
719
- justify-content: center;
720
- align-items: center;
721
- text-align: center;
722
- }
723
-
724
- .waves {
725
- position:relative;
726
- width: 100%;
727
- height:auto;
728
- margin-bottom:-7px; /*Fix for safari gap*/
729
- min-height:100px;
730
- max-height:150px;
731
- }
732
-
733
- .content {
734
- position:relative;
735
- height:20vh;
736
- text-align:center;
737
- background-color: rgba(255, 157, 0, 1);
738
- }
739
-
740
- /* Animation */
741
-
742
- .parallax > use {
743
- animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
744
- }
745
- .parallax > use:nth-child(1) {
746
- animation-delay: -2s;
747
- animation-duration: 7s;
748
- }
749
- .parallax > use:nth-child(2) {
750
- animation-delay: -3s;
751
- animation-duration: 10s;
752
- }
753
- .parallax > use:nth-child(3) {
754
- animation-delay: -4s;
755
- animation-duration: 13s;
756
- }
757
- .parallax > use:nth-child(4) {
758
- animation-delay: -5s;
759
- animation-duration: 20s;
760
- }
761
- @keyframes move-forever {
762
- 0% {
763
- transform: translate3d(-90px,0,0);
764
- }
765
- 100% {
766
- transform: translate3d(85px,0,0);
767
- }
768
- }
769
- /*Shrinking for mobile*/
770
- @media (max-width: 768px) {
771
- .waves {
772
- height:40px;
773
- min-height:40px;
774
- }
775
- .content {
776
- height:30vh;
777
- }
778
- h1 {
779
- font-size:24px;
780
- }
781
- .footer-flex {
782
- flex-direction:column;
783
- }
784
- .logo-foot {
785
- padding:10px;
786
- margin:5px auto;
787
- }
788
- .copyright {
789
- padding:10px;
790
- margin:5px auto;
791
- }
792
- .follow {
793
- padding:10px;
794
- margin:5px auto;
795
- }
796
- .content {
797
- height:45vh;
798
- }
799
- }
800
-
801
- .contact-items a{
802
- color: var(--white-color);
803
- font-size: 1em;
804
- text-decoration:none;
805
- text-shadow: var(--text-shadow);
806
- }
807
-
808
- .loader {
809
- position: fixed;
810
- top: 0;
811
- left: 0;
812
- width: 100%;
813
- height: 100%;
814
- background: #fff;
815
- margin:auto;
816
- justify-content: center;
817
- align-items: center;
818
- transition: opacity 0.5s ease-in-out;
819
- opacity: 1;
820
- }
821
-
822
- .loader.hide {
823
- opacity: 0.15;
824
- }
825
-
826
- .loader3{
827
- position: relative;
828
- width: 150px;
829
- height: 20px;
830
- top: 45%;
831
- top: -webkit-calc(50% - 10px);
832
- top: calc(50% - 10px);
833
- left: 25%;
834
- left: -webkit-calc(50% - 75px);
835
- left: calc(50% - 75px);
836
- }
837
-
838
- .loader3:after{
839
- content: "LOADING ...";
840
- color: #000;
841
- font-weight: 200;
842
- font-size: 16px;
843
- position: absolute;
844
- width: 100%;
845
- height: 20px;
846
- line-height: 20px;
847
- left: 0;
848
- top: 0;
849
- background-color: #fff;
850
- z-index: 1;
851
- }
852
-
853
- .loader3:before{
854
- content: "";
855
- position: absolute;
856
- background: linear-gradient(to right, #FF416C, #FFA63E);
857
- top: -5px;
858
- left: 0px;
859
- height: 30px;
860
- width: 0px;
861
- z-index: 0;
862
- opacity: 1;
863
- -webkit-transform-origin: 100% 0%;
864
- transform-origin: 100% 0% ;
865
- -webkit-animation: loader3 3s ease-in-out infinite;
866
- animation: loader3 3s ease-in-out infinite;
867
- }
868
-
869
- @-webkit-keyframes loader3{
870
- 0%{width: 0px;}
871
- 70%{width: 100%; opacity: 1;}
872
- 90%{opacity: 0; width: 100%;}
873
- 100%{opacity: 0;width: 0px;}
874
- }
875
-
876
- @keyframes loader3{
877
- 0%{width: 0px;}
878
- 70%{width: 100%; opacity: 1;}
879
- 90%{opacity: 0; width: 100%;}
880
- 100%{opacity: 0;width: 0px;}
881
- }
882
-
883
- /*===== Admin Table ====*/
884
- .accordion {
885
- background-color: #eee;
886
- color: #444;
887
- cursor: pointer;
888
- padding: 10px;
889
- margin:10px;
890
- margin-left:30px;
891
- width: 95%;
892
- border: none;
893
- text-align: left;
894
- outline: none;
895
- font-size: 20px;
896
- transition: 0.4s;
897
- }
898
-
899
- .active, .accordion:hover {
900
- background-color: #ccc;
901
- }
902
-
903
- .accordion:after {
904
- content: '\002B';
905
- color: #777;
906
- font-weight: bold;
907
- float: right;
908
- margin-left: 5px;
909
- }
910
-
911
- .active:after {
912
- content: "\2212";
913
- }
914
-
915
- .panel {
916
- padding: 0 18px;
917
- background-color: white;
918
- max-height: 0;
919
- font-size:14px;
920
- overflow: hidden;
921
- transition: max-height 0.2s ease-out;
922
- }
923
-
924
- .my-div {
925
- padding: 20px;
926
- margin: 0 auto;
927
- max-width: 100%;
928
- text-align: center;
929
- font-size: 14px;
930
- color: #333;
931
- }
932
-
933
- .flexbox {
934
- display:flex;
935
- flex-direction:row;
936
- align-items:stretch;
937
- }
938
-
939
- .flexbox1 {
940
- width:25%;
941
- margin:20px auto;
942
- }
943
-
944
- .flexbox1 button {
945
- background:white;
946
- padding:5px;
947
- width:100%;
948
- align-items:left;
949
- text-align:left;
950
- font-weight:bold;
951
- border-radius:10px;
952
- border:none;
953
- margin:10px;
954
- cursor: pointer;
955
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
956
- }
957
-
958
- .flexbox2 {
959
- width:80%;
960
- margin:20px auto;
961
- }
962
-
963
- .feed {
964
- text-align: center;
965
- padding:5px;
966
- width:80%;
967
- margin:10px auto;
968
- line-height:300%;
969
- border-radius: 30px;
970
- border:solid green;
971
- background: rgba(0, 255, 21, 0.3);
972
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
973
- }
974
-
975
- .forminfo-admin {
976
- display: flex;
977
- flex-direction: column;
978
- justify-content: start;
979
- align-items: stretch;
980
- align-content: stretch;
981
- text-align: justify;
982
- padding: 10px;
983
- margin: 10px auto;
984
- width:80%;
985
- height: 85vh;
986
- font-size: 15px;
987
- border-radius: 20px;
988
- background: #ffeab0;
989
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
990
- position: -webkit-sticky;
991
- position: sticky;
992
- top: 80px;
993
- }
994
-
995
- .flex-container {
996
- display: flex;
997
- flex-direction: row;
998
- flex-wrap: nowrap;
999
- justify-content: space-around;
1000
- align-items: center;
1001
- align-content: center;
1002
- font-size:1em;
1003
- padding:30px;
1004
- }
1005
-
1006
- .flex-items:nth-child(1) {
1007
- display: block;
1008
- flex-grow: 0;
1009
- flex-shrink: 1;
1010
- flex-basis: auto;
1011
- align-self: auto;
1012
- order: 0;
1013
- border: 2px;
1014
- border-radius: 10px;
1015
- background: linear-gradient(45deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
1016
- color:black;
1017
- width:20%;
1018
- padding: 5px;
1019
- text-align: center;
1020
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1021
- }
1022
-
1023
- .flex-items:nth-child(2) {
1024
- display: block;
1025
- flex-grow: 0;
1026
- flex-shrink: 1;
1027
- flex-basis: auto;
1028
- align-self: auto;
1029
- order: 0;
1030
- border: 2px;
1031
- border-radius: 10px;
1032
- background: linear-gradient(45deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
1033
- color:black;
1034
- width:20%;
1035
- padding: 5px;
1036
- text-align: center;
1037
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1038
- }
1039
-
1040
- .flex-items:nth-child(3) {
1041
- display: block;
1042
- flex-grow: 0;
1043
- flex-shrink: 1;
1044
- flex-basis: auto;
1045
- align-self: auto;
1046
- order: 0;
1047
- border: 2px;
1048
- border-radius: 10px;
1049
- background: linear-gradient(45deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
1050
- color:black;
1051
- width:25%;
1052
- padding: 5px;
1053
- text-align: center;
1054
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1055
- }
1056
-
1057
- .create {
1058
- border: none;
1059
- outline: none;
1060
- background: var(--white-color);
1061
- color: var(--dark-color);
1062
- font-size: 1.1em;
1063
- font-weight: 500;
1064
- display: flex;
1065
- align-items: center;
1066
- align-content: center;
1067
- margin: 10px auto;
1068
- padding: 10px;
1069
- border-radius: 10px;
1070
- cursor: pointer;
1071
- transform: scale(1);
1072
- transition: transform 0.3s ease-in-out;
1073
- text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
1074
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1075
- }
1076
-
1077
- .but1,
1078
- .but2,
1079
- .but3 {
1080
- margin:20px;
1081
- padding:10px;
1082
- width:100%;
1083
- text-decoration: none;
1084
- }
1085
-
1086
- .but1:hover {
1087
- transform: scale(1.1);
1088
- }
1089
- .but2:hover {
1090
- transform: scale(1.1);
1091
- }
1092
- .but3:hover {
1093
- transform: scale(1.1);
1094
- }
1095
- .but4:hover {
1096
- transform: scale(1.1);
1097
- }
1098
-
1099
- .create:hover {
1100
- transform: scale(1.1);
1101
- opacity: 1;
1102
- }
1103
-
1104
- .arrow {
1105
- transform: scale(1.5);
1106
- transition: transform 0.3s ease-out;
1107
- }
1108
-
1109
- .arrow:hover {
1110
- transform: scale(2);
1111
- }
1112
-
1113
- .flexsub {
1114
- display:flex;
1115
- flex-direction:row;
1116
- justify-content:space-between;
1117
- align-items: space-between;
1118
- font-size:0.8em;
1119
- padding-left:70px;
1120
- padding-right:100px;
1121
- }
1122
-
1123
- .navsub1 p {
1124
- margin:20px;
1125
- margin-bottom:5px;
1126
- top:500;
1127
- padding:5px;
1128
- text-align:center;
1129
- width:100%;
1130
- border-radius:20px;
1131
- border:solid;
1132
- border-color:#ffbb00;
1133
- font-weight:bold;
1134
- text-decoration: none;
1135
- opacity:0.7;
1136
- }
1137
-
1138
- .sub1 {
1139
- margin:20px;
1140
- margin-bottom:5px;
1141
- padding:10px;
1142
- width:100%;
1143
- border-radius:20px;
1144
- border:none;
1145
- font-weight:bold;
1146
- text-decoration: none;
1147
- background:#fff9cc;
1148
- transform: scale(1);
1149
- transition: transform 0.3s ease-in-out;
1150
- }
1151
-
1152
- .sub1:hover {
1153
- transform: scale(1.1);
1154
- }
1155
-
1156
- .qres {
1157
- display:flex;
1158
- flex-direction:row;
1159
- padding:20px;
1160
- margin:10px;
1161
- border:solid;
1162
- border-color:#ffbb00;
1163
- border-radius: 6px;
1164
- }
1165
- .qflex1 {
1166
- flex-basis:15%;
1167
- }
1168
- .qflex2 {
1169
- flex-basis:85%;
1170
- }
1171
-
1172
- .response {
1173
- padding:10px;
1174
- margin:5px;
1175
- border-radius:5px;
1176
- background:#fff9cc;
1177
- }
1178
-
1179
- .progressdiv {
1180
- width: 20%;
1181
- height: 100px;
1182
- border: 1px solid black;
1183
- border-radius: 5px;
1184
- background: linear-gradient(to top,#ffbb00 75%,white 50%,white 100%);
1185
- }
1186
-
1187
-
1188
- .flex-container-result {
1189
- display: flex;
1190
- flex-direction: row;
1191
- justify-content: space-around;
1192
- align-items: center;
1193
- font-size:0.9em;
1194
- }
1195
-
1196
- .flex-item1-result {
1197
- border: 2px;
1198
- border-radius: 10px;
1199
- background-color: #ff9900;
1200
- color:black;
1201
- margin:10px;
1202
- width:30%;
1203
- padding: 5px;
1204
- text-align: justify;
1205
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1206
- }
1207
-
1208
- .flex-item1-result a {
1209
- color:black;
1210
- text-decoration: none;
1211
- }
1212
-
1213
- .flex-item2-result {
1214
- border: 2px;
1215
- border-radius: 15px;
1216
- background-color: #00db21;
1217
- margin: 20px;
1218
- padding: 20px;
1219
- width: 30%;
1220
- text-align: justify;
1221
- box-shadow: 0 5px 25px rgb(0 0 0 / 50%);
1222
- }
1223
-
1224
- .flex-item2-result a {
1225
- color:black;
1226
- text-decoration: none;
1227
- }
1228
-
1229
- @media screen and (max-width: 768px) {
1230
- .flex-container-result {
1231
- flex-direction:column;
1232
- }
1233
- .flex-item1-result,
1234
- .flex-item2-result {
1235
- width:90%;
1236
- }
1237
- .flex-container {
1238
- flex-direction: column;
1239
- }
1240
- .flex-items:nth-child(1),
1241
- .flex-items:nth-child(2),
1242
- .flex-items:nth-child(3) {
1243
- width:80%;
1244
- }
1245
-
1246
- .flexbox {
1247
- flex-direction: column;
1248
- }
1249
-
1250
- .flexbox1 {
1251
- width:90%;
1252
- margin:10px auto;
1253
- }
1254
-
1255
- .flexbox2 {
1256
- width:100%;
1257
- margin:10px auto;
1258
- }
1259
-
1260
- .forminfo-admin {
1261
- padding: 10px;
1262
- margin: 10px auto;
1263
- margin-bottom:100px;
1264
- width:100%;
1265
- height: 100%;
1266
- font-size: 13px;
1267
- border-radius: 10px;
1268
- position:relative;
1269
- top: 80px;
1270
- }
1271
- }
1272
-
1273
- .flex-container-previous {
1274
- display: flex;
1275
- flex-wrap: wrap;
1276
- justify-content: center;
1277
- align-items: center;
1278
- background: #ffeab0;
1279
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
1280
- margin:30px;
1281
- border-radius:30px;
1282
- }
1283
-
1284
- .flex-item1-previous {
1285
- border: 2px;
1286
- border-radius: 15px;
1287
- background-color: light-gray;
1288
- color:black;
1289
- margin:10px;
1290
- padding: 20px;
1291
- text-align: center;
1292
- }
1293
-
1294
- .flex-item2-previous {
1295
- border: 2px;
1296
- border-radius: 15px;
1297
- background-color: light-gray;
1298
- color:black;
1299
- margin: 0px 30px;
1300
- padding:30px;
1301
- text-align: center;
1302
- }
1303
-
1304
- .flex-item1-previous a,
1305
- .flex-item2-previous a {
1306
- color:black;
1307
- text-decoration: none;
1308
- }
1309
-
1310
- @media screen and (max-width: 768px) {
1311
- .flex-item1-previous .flex-item2-previous {
1312
- flex-basis: 75%;
1313
- }
1314
- }
1315
-
1316
- /* Media query to adjust the div for smaller screens */
1317
- @media screen and (max-width: 600px) {
1318
- .my-div {
1319
- max-width: 100%;
1320
- padding: 10px;
1321
- font-size: 14px;
1322
- }
1323
- }
1324
-
1325
- /* ================== Custom Assessment Form ======================== */
1326
- /*.form-group {
1327
- display: flex;
1328
- flex-direction: column;
1329
- justify-content: space-around;
1330
- align-items: stretch;
1331
- align-content: stretch;
1332
- margin: 20px;
1333
- }
1334
-
1335
- .form-group label {
1336
- padding:20px;
1337
- width: auto;
1338
- }
1339
-
1340
- .form-group textarea {
1341
- padding:20px;
1342
- width: 70%;
1343
- margin:30px auto;
1344
- }*/
1345
- .add-btn {
1346
- margin:20px;
1347
- width:50px;
1348
- height:50px;
1349
- border-radius:50%;
1350
- background:linear-gradient(45deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
1351
- font-size:24px;
1352
- font-weight:bold;
1353
- border:none;
1354
- transform: scale(1);
1355
- }
1356
- .add-btn:hover {
1357
- transform: scale(1.1);
1358
- }
1359
-
1360
- .sub-btn {
1361
- margin:20px;
1362
- padding:10px;
1363
- background:rgba(0, 255, 0, 0.6);
1364
- font-size:20px;
1365
- font-weight:bold;
1366
- border:none;
1367
- border-radius: 10px;
1368
- transform: scale(1);
1369
- }
1370
- .sub-btn:hover {
1371
- transform: scale(1.1);
1372
- }
1373
-
1374
- .rst-btn {
1375
- margin:20px;
1376
- padding:10px;
1377
- border-radius:10px;
1378
- background:yellow;
1379
- font-size:20px;
1380
- font-weight:bold;
1381
- border:none;
1382
- transform: scale(1);
1383
- }
1384
- .rst-btn:hover {
1385
- transform: scale(1.1);
1386
- }
1387
-
1388
- .rel-btn {
1389
- margin:20px;
1390
- padding:10px;
1391
- border-radius:10px;
1392
- background: #ffa200;
1393
- font-size:20px;
1394
- font-weight:bold;
1395
- border:none;
1396
- transform: scale(1);
1397
- }
1398
- .rel-btn:hover {
1399
- transform: scale(1.1);
1400
- }
1401
-
1402
- .remove-button {
1403
- padding:10px;
1404
- background:rgba(255, 0, 0, 0.6);
1405
- border:solid red;
1406
- font-weight:bold;
1407
- border-radius:10px;
1408
- transform: scale(0.9);
1409
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
1410
- }
1411
-
1412
- .remove-button:hover {
1413
- transform: scale(1);
1414
- }
1415
-
1416
- #inputContainer select {
1417
- padding:5px;
1418
- margin:20px auto;
1419
- font-size:0.8em;
1420
- font-weight: 700;
1421
- text-indent: 5px;
1422
- max-width:250px;
1423
- background-color: #ffebb5;
1424
- border: solid 2px #217093;
1425
- border-radius: 4px;
1426
- width: 90%;
1427
- color: #353538;
1428
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
1429
- }
1430
-
1431
- #inputContainer option {
1432
- background: white;
1433
- text-indent: 5px;
1434
- spacing:20px;
1435
- font-size:1em;
1436
- font-weight: 700;
1437
- }
1438
-
1439
- .form-group {
1440
- display: flex;
1441
- flex-direction: column;
1442
- justify-content: space-around;
1443
- align-items: stretch;
1444
- align-content: stretch;
1445
- text-align: justify;
1446
- margin: 20px auto;
1447
- border-radius: 30px;
1448
- padding:20px;
1449
- }
1450
-
1451
- .form-group label {
1452
- padding:30px;
1453
- width: auto; /* adjust as needed */
1454
- }
1455
-
1456
- .form-group textarea {
1457
- padding:10px;
1458
- width: 80%;
1459
- margin:10px auto;
1460
- border-radius:10px;
1461
- }
1462
-
1463
- @media (max-width: 785px) {
1464
- .form-group {
1465
- margin:5px;
1466
- flex-wrap: wrap;
1467
- }
1468
-
1469
- label {
1470
- width: 100%;
1471
- margin-bottom: 5px;
1472
- }
1473
-
1474
- textarea {
1475
- width: 100%;
1476
- }
1477
- }
1478
-
1479
-
1480
- .formdiv {
1481
- padding: 20px;
1482
- margin: 10px auto;
1483
- max-width: 100%;
1484
- font-size: 18px;
1485
- color: #333;
1486
- }
1487
-
1488
- @media (max-width: 785px) {
1489
- .formdiv {
1490
- padding: 20px;
1491
- margin: 0 auto;
1492
- font-size: 14px;
1493
- }
1494
- }
1495
- .forminfo {
1496
- display: flex;
1497
- flex-direction: column;
1498
- justify-content: start;
1499
- align-items: stretch;
1500
- align-content: stretch;
1501
- text-align: justify;
1502
- padding: 20px;
1503
- margin:20px;
1504
- width:30%;
1505
- height: 80vh;
1506
- font-size: 14px;
1507
- border-radius: 20px;
1508
- background: #ffeab0;
1509
- position: -webkit-sticky;
1510
- position: sticky;
1511
- top: 80px;
1512
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
1513
- }
1514
-
1515
- .forminfo input {
1516
- margin:20px auto;
1517
- }
1518
- .forminfo label {
1519
- padding:10px;
1520
- margin:10px;
1521
- width: auto;
1522
- }
1523
- .forminfo textarea {
1524
- padding:10px;
1525
- width: 70%;
1526
- margin:10px auto;
1527
- margin-top:30px;
1528
- }
1529
-
1530
- .form-ques {
1531
- width:80%;
1532
- }
1533
- .form-ques label {
1534
- padding:10px;
1535
- margin:10px auto;
1536
- width: auto; /* adjust as needed */
1537
- }
1538
-
1539
- .form-ques textarea {
1540
- padding:10px;
1541
- width: 50%;
1542
- margin:20px auto;
1543
- padding:10px;
1544
- border-radius:10px;
1545
- background: #ffebb5;
1546
- }
1547
-
1548
- .container {
1549
- display: flex;
1550
- justify-content: space-around;
1551
- flex-direction: row;
1552
- padding:20px;
1553
- margin:20px;
1554
- }
1555
-
1556
- .namearea {
1557
- display: flex;
1558
- flex-direction: row;
1559
- flex-wrap: wrap;
1560
- justify-content: normal;
1561
- align-items: center;
1562
- align-content: stretch;
1563
- }
1564
-
1565
- .labelarea {
1566
- display: flex;
1567
- flex-direction: row;
1568
- flex-wrap: wrap;
1569
- justify-content: normal;
1570
- align-items: center;
1571
- align-content: stretch;
1572
- }
1573
-
1574
-
1575
- @media (max-width: 785px) {
1576
- .forminfo {
1577
- padding: 10px;
1578
- margin: 0 auto;
1579
- font-size: 12px;
1580
- }
1581
- .forminfo input {
1582
- margin:5px auto;
1583
- }
1584
- .forminfo label {
1585
- padding:5px;
1586
- margin:5px;
1587
- width: auto;
1588
- }
1589
- .forminfo textarea {
1590
- padding:5px;
1591
- width: 70%;
1592
- margin:0px auto;
1593
- margin-top:15px;
1594
- }
1595
- .form-ques {
1596
- width:90%;
1597
- margin:5px auto;
1598
- }
1599
-
1600
- .forminfo {
1601
- padding: 10px;
1602
- margin: 10px auto;
1603
- margin-bottom:100px;
1604
- width:100%;
1605
- height: 100%;
1606
- font-size: 13px;
1607
- border-radius: 10px;
1608
- position:relative;
1609
- top: 80px;
1610
- }
1611
- }
1612
-
1613
- .drag {
1614
- display: flex;
1615
- flex-direction: row;
1616
- justify-content: space-between;
1617
- align-items: center;
1618
- border-radius: 10px;
1619
- border:solid;
1620
- border-color:#ffbb00;
1621
- cursor: move;
1622
- transition: transform 0.2s ease-in-out;
1623
- background-size: 50% auto;
1624
- margin:15px auto;
1625
- padding:5px;
1626
- position: relative;
1627
- width:100%;
1628
- box-shadow: 0 5px 25px rgb(0 0 0 / 10%);
1629
- }
1630
- .drag::before {
1631
- content: "";
1632
- display: block;
1633
- position: absolute;
1634
- top: 0;
1635
- left: 0;
1636
- width: 30%;
1637
- height: 100%;
1638
- background-color: transparent; /* set the color of the transparent portion */
1639
- }
1640
-
1641
- .drag-enter {
1642
- opacity: 0;
1643
- transform: translateY(-100%);
1644
- transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
1645
- }
1646
-
1647
- .drag-leave {
1648
- opacity: 1;
1649
- transform: scale(1) translateY(0);
1650
- transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
1651
- }
1652
-
1653
- .drag-leave.zoom-out {
1654
- opacity: 0;
1655
- transform: scale(0.8) translateY(-20px);
1656
- }
1657
-
1658
- .drag:hover {
1659
- box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
1660
- }
1661
-
1662
- .dragging {
1663
- opacity: 0.5;
1664
- transform: scale(1.05);
1665
- }
1666
- @media (max-width: 785px) {
1667
- .drag {
1668
- flex-direction: column;
1669
- }
1670
- }
1671
-
1672
-
1673
- /* ============ Verify Homepage link ======================= */
1674
-
1675
- .homelink {
1676
- border: none;
1677
- outline: none;
1678
- background: var(--white-color);
1679
- color: var(--dark-color);
1680
- font-size: 1.1em;
1681
- font-weight: 500;
1682
- padding: 8px 25px;
1683
- display: flex;
1684
- align-items: center;
1685
- margin-top: 40px;
1686
- border-radius: 10px;
1687
- cursor: pointer;
1688
- transform: scale(0.8);
1689
- transition: transform 0.3s ease-in-out;
1690
- }
1691
-
1692
- .homelink:hover {
1693
- transform: scale(1);
1694
- opacity: 1;
1695
- }
1696
-
1697
- #success {
1698
- display:none;
1699
- text-align: center;
1700
- }
1701
-
1702
- #failure {
1703
- display:none;
1704
- text-align: center;
1705
- }
1706
-
1707
- #success-svg{
1708
- width: 500px;
1709
- height: 400px;
1710
- margin: 0 auto;
1711
- transform: scale(0.8);
1712
- transition: transform 0.3s ease-in-out;
1713
- }
1714
-
1715
- #success-svg:hover {
1716
- transform: scale(1);
1717
- opacity: 1;
1718
- }
1719
-
1720
- svg {
1721
- width: 100%;
1722
- height: 100%;
1723
- }
1724
-
1725
- #failure-svg{
1726
- width: 400px;
1727
- height: 400px;
1728
- margin: 0 auto;
1729
- transform: scale(0.8);
1730
- transition: transform 0.3s ease-in-out;
1731
- }
1732
-
1733
- #failure-svg:hover {
1734
- transform: scale(1);
1735
- opacity: 1;
1736
- }
1737
-
1738
- @media (max-width: 785px) {
1739
- .homelink {
1740
- font-size: 1em;
1741
- }
1742
- }
1743
-
1744
-
1745
-
1746
- /* ================= Error Page ======================= */
1747
- #notfound {
1748
- display:none;
1749
- text-align: center;
1750
- background-color: rgba(255, 0, 0, 0.7);
1751
- display:flex-center;
1752
- width:100%;
1753
- height:auto;
1754
- margin:auto;
1755
- max-height:500px;
1756
- max-width:500px;
1757
- margin:10px auto;
1758
- border-radius:50%;
1759
- text-align:center;
1760
- }
1761
-
1762
- #server {
1763
- display:none;
1764
- margin: 10px auto;
1765
- padding:20px;
1766
- max-height:400px;
1767
- max-width:700px;
1768
- text-align:center;
1769
- }
1770
-
1771
- #server p {
1772
- font-size: 45px;
1773
- text-align:center;
1774
- }
1775
-
1776
- @media (max-width: 785px) {
1777
- #server p {
1778
- font-size: 24px;
1779
- text-align:center;
1780
- }
1781
- }
1782
-
1783
- .checkdetail {
1784
- border: none;
1785
- outline: none;
1786
- background: var(--white-color);
1787
- color: var(--dark-color);
1788
- font-size: 1.1em;
1789
- font-weight: 500;
1790
- padding: 8px 25px;
1791
- display: flex;
1792
- align-items: center;
1793
- margin-top: 40px;
1794
- border-radius: 10px;
1795
- cursor: pointer;
1796
- transform: scale(0.8);
1797
- transition: transform 0.3s ease-in-out;
1798
- }
1799
-
1800
- .checkdetail:hover {
1801
- transform: scale(1);
1802
- opacity: 1;
1803
- }
1804
-
1805
-
1806
- /* ================ Home Page ====================== */
1807
- .body {
1808
- width:100%;
1809
- height:90vh;
1810
- background-image: url('/static/back-index.svg');
1811
- background-size: cover;
1812
- background-repeat: no-repeat;
1813
- background-position: center center;
1814
- }
1815
-
1816
- .radio-container {
1817
- display: flex;
1818
- flex-direction: column;
1819
- align-items: left;
1820
- justify-content: left;
1821
- padding-left:30%;
1822
- padding-right:30%;
1823
- gap: 10px;
1824
- }
1825
-
1826
- .radio-label {
1827
- border:solid;
1828
- border-color:#ff9900;
1829
- padding:10px;
1830
- display: flex;
1831
- align-items: center;
1832
- gap: 5px;
1833
- border-radius:10px;
1834
- cursor: pointer;
1835
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
1836
- }
1837
-
1838
- .radio-input {
1839
- appearance: none;
1840
- -webkit-appearance: none;
1841
- -moz-appearance: none;
1842
- height: 20px;
1843
- width: 20px;
1844
- border-radius: 50%;
1845
- border: 2px solid #f1c40f;
1846
- outline: none;
1847
- cursor: pointer;
1848
- }
1849
-
1850
- @media (max-width: 785px) {
1851
- .radio-container {
1852
- padding-left:5%;
1853
- padding-right:5%;
1854
- }
1855
- }
1856
-
1857
- .radio-input:checked {
1858
- background-color: #f1c40f;
1859
- }
1860
-
1861
- .radio-input:focus {
1862
- box-shadow: 0 0 0 2px #f1c40f;
1863
- }
1864
-
1865
- .radio-label:hover .radio-input {
1866
- border-color: #f39c12;
1867
- }
1868
-
1869
- .radio-label:hover .radio-input:checked {
1870
- background-color: #f39c12;
1871
- }
1872
-
1873
- .radio-label:hover .radio-input:focus {
1874
- box-shadow: 0 0 0 2px #f39c12;
1875
- }
1876
-
1877
- .radio-label:hover .radio-text {
1878
- color: #f39c12;
1879
- }
1880
-
1881
- .radio-text {
1882
- font-size: 16px;
1883
- font-weight: bold;
1884
- color: #f1c40f;
1885
- }
1886
-
1887
-
1888
- #select-wrapper select {
1889
- padding:15px;
1890
- margin:20px auto;
1891
- font-size:1em;
1892
- font-weight: 700;
1893
- text-indent: 5px;
1894
- width:90%;
1895
- max-width:450px;
1896
- background-color: #ffebb5;
1897
- border: solid 2px #217093;
1898
- border-radius: 4px;
1899
- width: 90%;
1900
- color: #353538;
1901
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
1902
- }
1903
-
1904
- #select-wrapper option {
1905
- background: white;
1906
- text-indent: 5px;
1907
- spacing:20px;
1908
- font-size:1em;
1909
- font-weight: 700;
1910
- }
1911
-
1912
- .takecheck {
1913
- border: none;
1914
- outline: none;
1915
- background: var(--white-color);
1916
- color: var(--dark-color);
1917
- font-size: 1.1em;
1918
- font-weight: 500;
1919
- display: flex;
1920
- justify-content:center;
1921
- align-items: center;
1922
- margin: 10px auto;
1923
- padding: 20px;
1924
- border-radius: 10px;
1925
- cursor: pointer;
1926
- transform: scale(1);
1927
- transition: transform 0.3s ease-in-out;
1928
- }
1929
-
1930
- .takecheck:hover {
1931
- transform: scale(1.1);
1932
- opacity: 1;
1933
- }
1934
-
1935
- .arrow {
1936
- display: inline-block;
1937
- transform: scale(1.5);
1938
- transition: transform 0.3s ease-out;
1939
- }
1940
-
1941
- .arrow:hover {
1942
- transform: scale(2);
1943
- }
1944
-
1945
- .check-mark {
1946
- color: green;
1947
- }
1948
-
1949
- #selector {
1950
- padding:30px;
1951
- margin:20px auto;
1952
- }
1953
-
1954
- #startContent {
1955
- padding:30px;
1956
- margin:20px auto;
1957
- font-size:1em;
1958
- }
1959
-
1960
- #startContent p {
1961
- padding:30px;
1962
- text-align:justify;
1963
- text-indent:10%;
1964
- }
1965
-
1966
- #select-wrapper {
1967
- display: flex;
1968
- flex-direction: row;
1969
- justify-content: center;
1970
- align-items: center;
1971
- align-content: center;
1972
- margin: 20px;
1973
- }
1974
-
1975
- @media (max-width: 800px) {
1976
- #select-wrapper {
1977
- flex-direction: column;
1978
- justify-content: space-between;
1979
- }
1980
- #startContent {
1981
- padding:20px;
1982
- margin:20px auto;
1983
- font-size:0.8em;
1984
- }
1985
- #startContent p {
1986
- padding:20px;
1987
- }
1988
- }
1989
- /* =====================Feedback Form ================*/
1990
- .feedback {
1991
- border: 2px;
1992
- border-radius: 15px;
1993
- margin:20px;
1994
- padding: 20px;
1995
- text-align: justify;
1996
- background: rgba(255, 255, 255, 0.1);
1997
- backdrop-filter: blur(10px);
1998
- text-shadow: var(--text-shadow);
1999
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
2000
- border-right: 1px solid rgba(255, 255, 255, 0.1);
2001
- box-shadow: var(--box-shadow);
2002
- }
2003
- .feedback h2 {
2004
- font-size: 36px;
2005
- color: #222;
2006
- text-align: center;
2007
- margin: 50px 0;
2008
- }
2009
- .feedback form {
2010
- max-width: 600px;
2011
- margin: 0 auto;
2012
- padding: 20px;
2013
- background-color: #fff;
2014
- border-radius: 10px;
2015
- box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
2016
- }
2017
- .feedback input[type=text], input[type=email], textarea {
2018
- width: 100%;
2019
- padding: 12px;
2020
- border: 1px solid #ccc;
2021
- border-radius: 4px;
2022
- resize: vertical;
2023
- }
2024
- .feedback label {
2025
- display: block;
2026
- margin-bottom: 10px;
2027
- font-size: 18px;
2028
- color: #555;
2029
- }
2030
- .feedback button[type=submit] {
2031
- background-color: #ffcc00;
2032
- color: #fff;
2033
- border: none;
2034
- margin:10px auto;
2035
- border-radius: 4px;
2036
- padding: 12px 20px;
2037
- cursor: pointer;
2038
- font-size: 18px;
2039
- margin-top: 20px;
2040
- transition: background-color 0.2s;
2041
- }
2042
- .feedback button[type=submit]:hover {
2043
- background-color: #f5b800;
2044
- }
2045
-
2046
- /* ====================== Form Page ==================== */
2047
- .container {
2048
- display: flex;
2049
- justify-content: space-around;
2050
- flex-direction: row;
2051
- padding:20px;
2052
- margin:20px;
2053
- }
2054
-
2055
- .forminfo-form {
2056
- text-align: justify;
2057
- padding: 10px;
2058
- margin: 10px auto;
2059
- width:40%;
2060
- height: 85vh;
2061
- font-size: 14px;
2062
- border-radius: 10px;
2063
- background: #ffeab0;
2064
- position: -webkit-sticky;
2065
- position: sticky;
2066
- top: 80px;
2067
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2068
- }
2069
-
2070
- .forminfo-form input {
2071
- margin:20px auto;
2072
- }
2073
- .forminfo-form label {
2074
- padding:10px;
2075
- margin:10px;
2076
- width: auto;
2077
- }
2078
- .forminfo-form textarea {
2079
- padding:10px;
2080
- width: 70%;
2081
- margin:0px auto;
2082
- margin-top:30px;
2083
- }
2084
-
2085
- .formquestions {
2086
- width:100%;
2087
- }
2088
-
2089
- .assess-group {
2090
- text-align: justify;
2091
- margin: 10px;
2092
- border-radius: 30px;
2093
- padding:10px;
2094
- width:100%;
2095
- }
2096
-
2097
- .assess-group label {
2098
- font-size:0.9rem;
2099
- padding:20px;
2100
- width: auto; /* adjust as needed */
2101
- }
2102
-
2103
- .assess-group textarea {
2104
- background: #fff2cf;
2105
- padding:5px;
2106
- width: 80%;
2107
- height:70px;
2108
- margin:5px auto;
2109
- border-radius:6px;
2110
- }
2111
-
2112
- .seperate {
2113
- margin:20px auto;
2114
- border-radius: 10px;
2115
- border:solid;
2116
- border-color:#ffbb00;
2117
- padding:10px;
2118
- display:flex;
2119
- flex-direction:column;
2120
- align-items: stretch;
2121
- text-indent:20px;
2122
- position: relative;
2123
- width:90%;
2124
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2125
- }
2126
-
2127
- .ribbon {
2128
- width: 150px;
2129
- height: 150px;
2130
- position: absolute;
2131
- top: 0px;
2132
- left: 10px;
2133
- overflow: hidden;
2134
- font-weight:800;
2135
- }
2136
-
2137
- .ribbon span {
2138
- position: absolute;
2139
- width: 50px;
2140
- height: 50px;
2141
- background: rgb(255,153,0);
2142
- background: linear-gradient(90deg, rgba(255,153,0,1) 0%, rgba(255,235,0,1) 100%, rgba(0,212,255,1) 100%);
2143
- top: 10px;
2144
- left: 0px;
2145
- text-align: center;
2146
- line-height: 50px; /* should be same as heigh */
2147
- text-indent:-5%;
2148
- color: #000;
2149
- border-radius:50%;
2150
- }
2151
-
2152
-
2153
- .submitassess {
2154
- border: none;
2155
- outline: none;
2156
- background: green;
2157
- color: var(--dark-color);
2158
- font-size: 1.1em;
2159
- font-weight: 500;
2160
- display: flex;
2161
- align-items: center;
2162
- margin: 20px auto;
2163
- padding: 20px;
2164
- border-radius: 10px;
2165
- cursor: pointer;
2166
- transform: scale(0.9);
2167
- transition: transform 0.3s ease-in-out;
2168
- }
2169
-
2170
- .submitassess:hover {
2171
- transform: scale(1);
2172
- opacity: 0.8;
2173
- }
2174
-
2175
- @media (max-width: 785px) {
2176
- .container {
2177
- flex-direction:column;
2178
- padding:5px;
2179
- margin:5px;
2180
- }
2181
-
2182
- .assess-group {
2183
- margin:5px;
2184
- padding:5px;
2185
- flex-wrap: wrap;
2186
- }
2187
-
2188
- .seperate {
2189
- margin:15px auto;
2190
- border-radius: 10px;
2191
- padding:10px;
2192
- text-indent:10px;
2193
- width:100%;
2194
- }
2195
-
2196
- .seperate label {
2197
- width: 100%;
2198
- margin-bottom: 5px;
2199
- font-size:0.9em;
2200
- }
2201
-
2202
- .seperate textarea {
2203
- width: 100%;
2204
- }
2205
-
2206
- .forminfo-form {
2207
- padding: 10px;
2208
- margin: 10px auto;
2209
- margin-bottom:100px;
2210
- width:100%;
2211
- height: 100%;
2212
- font-size: 13px;
2213
- border-radius: 10px;
2214
- position:relative;
2215
- top: 80px;
2216
- }
2217
- }
2218
-
2219
-
2220
- /* ================== Login ================ */
2221
- .log-container {
2222
- background-image: url('/static/login-back.svg');
2223
- background-size: cover;
2224
- background-repeat: no-repeat;
2225
- background-position: center center;
2226
- width:100%;
2227
- }
2228
- /*
2229
- .log-container::before {
2230
- content: "";
2231
- position: absolute;
2232
- top: 0;
2233
- left: 0;
2234
- right: 0;
2235
- bottom: 0;
2236
- background: inherit;
2237
- filter: blur(5px);
2238
- z-index: -1;
2239
- }*/
2240
-
2241
- .log-form {
2242
- position: relative;
2243
- z-index: 1;
2244
- backdrop-filter: blur(40px);
2245
- width: 100%;
2246
- max-width: 500px;
2247
- margin: 0;
2248
- padding: 5px;
2249
- margin:10px auto;
2250
- box-sizing: border-box;
2251
- border: solid 1px #DDD;
2252
- border-radius: 0.5em;
2253
- font-family: "Source Sans Pro", sans-serif;
2254
- text-shadow: var(--text-shadow);
2255
- box-shadow: var(--box-shadow);
2256
- }
2257
-
2258
- @media (max-width: 785px) {
2259
- .log-form {
2260
- max-width:350px;
2261
- }
2262
- .log-container {
2263
- background-size: contain;
2264
- }
2265
- }
2266
-
2267
- .log-form .svgContainer {
2268
- position: relative;
2269
- width: 150px;
2270
- height: 150px;
2271
- margin: 0 auto 1em;
2272
- border-radius: 50%;
2273
- background: none;
2274
- border: solid 2.5px #3A5E77;
2275
- overflow: hidden;
2276
- pointer-events: none;
2277
- }
2278
-
2279
- .log-form .svgContainer div {
2280
- position: relative;
2281
- width: 100%;
2282
- height: 0;
2283
- overflow: hidden;
2284
- padding-bottom: 100%;
2285
- }
2286
-
2287
- .log-form .svgContainer .mySVG {
2288
- position: absolute;
2289
- left: 0;
2290
- top: 0;
2291
- width: 100%;
2292
- height: 100%;
2293
- pointer-events: none;
2294
- }
2295
-
2296
- .log-form .svgContainer-pass {
2297
- position: relative;
2298
- width: 150px;
2299
- height: 150px;
2300
- margin: 0 auto 1em;
2301
- border-radius: 50%;
2302
- background: none;
2303
- border: solid 2.5px #3A5E77;
2304
- overflow: hidden;
2305
- pointer-events: none;
2306
- }
2307
-
2308
- .log-form .svgContainer-pass div {
2309
- position: relative;
2310
- width: 100%;
2311
- height: 0;
2312
- overflow: hidden;
2313
- padding-bottom: 100%;
2314
- }
2315
-
2316
- .log-form .svgContainer-pass .mySVG {
2317
- position: absolute;
2318
- left: 0;
2319
- top: 0;
2320
- width: 100%;
2321
- height: 100%;
2322
- pointer-events: none;
2323
- }
2324
-
2325
- .log-form .inputGroup {
2326
- margin: 0 auto;
2327
- padding: 0;
2328
- position: relative;
2329
- }
2330
-
2331
- .log-form .inputGroup:last-of-type {
2332
- margin-bottom: 0;
2333
- }
2334
-
2335
- .log-form label {
2336
- margin: 0 0 0px;
2337
- font-size: 1em;
2338
- color: black;
2339
- font-weight: 500;
2340
- font-family: inherit;
2341
- }
2342
-
2343
- .log-form input[type=email], form input[type=text], form input[type=password] {
2344
- display: block;
2345
- margin: 0 auto;
2346
- padding: 5px;
2347
- background-color: #ffebb5;
2348
- border: solid 2px #217093;
2349
- border-radius: 4px;
2350
- -webkit-appearance: none;
2351
- box-sizing: border-box;
2352
- width: 90%;
2353
- height: 30px;
2354
- font-size: 0.8em;
2355
- color: #353538;
2356
- font-weight: 500;
2357
- font-family: inherit;
2358
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
2359
- }
2360
-
2361
- .log-form input[type=email]:focus, form input[type=text]:focus, form input[type=password]:focus {
2362
- outline: none;
2363
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
2364
- border: solid 2px #4eb8dd;
2365
- }
2366
-
2367
- .log-form button {
2368
- cursor:pointer;
2369
- margin: 20px auto;
2370
- background-color: #ffc629;
2371
- border: none;
2372
- border-radius: 4px;
2373
- width: 50%;
2374
- height: 40px;
2375
- font-size: 1.55em;
2376
- color: #FFF;
2377
- font-weight: 600;
2378
- font-family: inherit;
2379
- transition: background-color 0.2s ease-out;
2380
- transform: scale(1);
2381
- transition: transform 0.3s ease-in-out;
2382
- }
2383
-
2384
- .log-form button:hover {
2385
- transform: scale(1.1);
2386
- opacity:0.9;
2387
- }
2388
-
2389
- .log-form select {
2390
- margin: 0 auto;
2391
- padding: 10px;
2392
- background-color: #ffebb5;
2393
- border: solid 2px #217093;
2394
- border-radius: 4px;
2395
- box-sizing: border-box;
2396
- width: 90%;
2397
- height: 40px;
2398
- font-size: 0.9em;
2399
- color: #353538;
2400
- font-weight: 500;
2401
- font-family: inherit;
2402
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
2403
- }
2404
-
2405
-
2406
-
2407
- /* ================== Register ================ */
2408
- .reg-container {
2409
- background-image: url('/static/login-back.svg');
2410
- background-size: cover;
2411
- background-repeat: no-repeat;
2412
- background-position: center center;
2413
- width:100%;
2414
- }
2415
- /*
2416
- .log-container::before {
2417
- content: "";
2418
- position: absolute;
2419
- top: 0;
2420
- left: 0;
2421
- right: 0;
2422
- bottom: 0;
2423
- background: inherit;
2424
- filter: blur(5px);
2425
- z-index: -1;
2426
- }*/
2427
-
2428
- .reg-form {
2429
- position: relative;
2430
- z-index: 1;
2431
- backdrop-filter: blur(40px);
2432
- width: 100%;
2433
- max-width: 500px;
2434
- margin: 0;
2435
- padding: 2.25em;
2436
- margin:20px auto;
2437
- box-sizing: border-box;
2438
- border: solid 1px #DDD;
2439
- border-radius: 0.5em;
2440
- font-family: "Source Sans Pro", sans-serif;
2441
- }
2442
-
2443
- @media (max-width: 785px) {
2444
- .reg-form {
2445
- max-width:350px;
2446
- }
2447
- .reg-container {
2448
- background-size: contain;
2449
- }
2450
- }
2451
-
2452
- .reg-form .svgContainer {
2453
- position: relative;
2454
- width: 150px;
2455
- height: 150px;
2456
- margin: 0 auto 1em;
2457
- border-radius: 50%;
2458
- background: none;
2459
- border: solid 2.5px #3A5E77;
2460
- overflow: hidden;
2461
- pointer-events: none;
2462
- }
2463
-
2464
- .reg-form .svgContainer div {
2465
- position: relative;
2466
- width: 100%;
2467
- height: 0;
2468
- overflow: hidden;
2469
- padding-bottom: 100%;
2470
- }
2471
-
2472
- .reg-form .svgContainer .mySVG {
2473
- position: absolute;
2474
- left: 0;
2475
- top: 0;
2476
- width: 100%;
2477
- height: 100%;
2478
- pointer-events: none;
2479
- }
2480
-
2481
- .reg-form .inputGroup {
2482
- margin: 0 0 2em;
2483
- padding: 0;
2484
- position: relative;
2485
- }
2486
-
2487
- .reg-form .inputGroup:last-of-type {
2488
- margin-bottom: 0;
2489
- }
2490
-
2491
- .reg-form label {
2492
- margin: 0 0 0px;
2493
- font-size: 1em;
2494
- color: black;
2495
- font-weight: 500;
2496
- font-family: inherit;
2497
- }
2498
-
2499
- .reg-form input[type=email], form input[type=text], form input[type=password] {
2500
- display: block;
2501
- margin: 0 auto;
2502
- padding: 5px;
2503
- background-color: #ffebb5;
2504
- border: solid 2px #217093;
2505
- border-radius: 4px;
2506
- -webkit-appearance: none;
2507
- box-sizing: border-box;
2508
- width: 90%;
2509
- height: 30px;
2510
- font-size: 1.1em;
2511
- color: #353538;
2512
- font-weight: 500;
2513
- font-family: inherit;
2514
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
2515
- }
2516
-
2517
- .reg-form input[type=email]:focus, form input[type=text]:focus, form input[type=password]:focus {
2518
- outline: none;
2519
- box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
2520
- border: solid 2px #4eb8dd;
2521
- }
2522
-
2523
- .reg-form input[type=email], form input[type=text] {
2524
- /* padding: 14px 1em 0px;*/
2525
- }
2526
-
2527
- .reg-form button {
2528
- cursor:pointer;
2529
- margin: 0 auto;
2530
- padding: px;
2531
- background-color: #ffc629;
2532
- border: none;
2533
- border-radius: 4px;
2534
- width: 50%;
2535
- height: 40px;
2536
- font-size: 1.55em;
2537
- color: #FFF;
2538
- font-weight: 600;
2539
- font-family: inherit;
2540
- transition: background-color 0.2s ease-out;
2541
- transform: scale(1);
2542
- transition: transform 0.3s ease-in-out;
2543
- }
2544
-
2545
- .reg-form button:hover {
2546
- transform: scale(1.1);
2547
- opacity:0.9;
2548
- }
2549
-
2550
- .reg-form select {
2551
- margin: 0 auto;
2552
- padding: 10px;
2553
- background-color: #ffebb5;
2554
- border: solid 2px #217093;
2555
- border-radius: 4px;
2556
- box-sizing: border-box;
2557
- width: 90%;
2558
- height: 40px;
2559
- font-size: 0.9em;
2560
- color: #353538;
2561
- font-weight: 500;
2562
- font-family: inherit;
2563
- transition: box-shadow 0.2s linear, border-color 0.25s ease-out;
2564
- }
2565
-
2566
- /* ================== Result Page =================== */
2567
- .domains {
2568
- padding:20px;
2569
- margin:10px;
2570
- display:flex;
2571
- flex-direction: row;
2572
- flex-wrap: wrap;
2573
- }
2574
-
2575
- .each-domain {
2576
- width:45%;
2577
- padding:20px;
2578
- margin:20px auto;
2579
- background: #FFA733;
2580
- background: linear-gradient(to top right, #FFA733 0%, #ffc370 100%);
2581
- border:none;
2582
- border-radius:15px;
2583
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2584
- }
2585
-
2586
- .each-domain .name{
2587
- font-size:1.5em;
2588
- font-weight:bold;
2589
- text-align:center;
2590
- margin:10px;
2591
- }
2592
-
2593
- .each-domain .description{
2594
- text-align:justify;
2595
- font-size:1em;
2596
- }
2597
-
2598
- .each-domain .average-score{
2599
- background: white;
2600
- margin:10px auto;
2601
- width:90%;
2602
- border-radius: 15px;x
2603
- line-height:200%;
2604
- font-size:2em;
2605
- font-weight:900;
2606
- text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
2607
- }
2608
-
2609
- .each-domain .suggestions-text{
2610
- font-size:1em;
2611
- line-height: 200%;
2612
- }
2613
-
2614
- @media (max-width: 785px) {
2615
- .domains {
2616
- font-size:1em;
2617
- padding:10px;
2618
- margin:5px;
2619
- flex-direction: column;
2620
- flex-wrap: wrap;
2621
- }
2622
- .each-domain {
2623
- width:90%;
2624
- padding:10px;
2625
- margin:10px auto;
2626
- }
2627
- .each-domain .name{
2628
- font-size:0.9em;
2629
- }
2630
- .each-domain .average-score{
2631
- font-size:1.5em;
2632
- }
2633
- .each-domain .description{
2634
- font-size:0.8em;
2635
- }
2636
- .each-domain .suggestions-text{
2637
- font-size: 0.8em;
2638
- }
2639
- }
2640
-
2641
- .flexContainer {
2642
- display:flex;
2643
- flex-direction:row;
2644
- align-items:stretch;
2645
- }
2646
-
2647
- .flex1 {
2648
- width:30%;
2649
- margin:20px auto;
2650
- }
2651
-
2652
- .flex2 {
2653
- width:70%;
2654
- margin:20px auto;
2655
- }
2656
-
2657
- .forminfo-result {
2658
- display: flex;
2659
- flex-direction: column;
2660
- justify-content: start;
2661
- align-items: stretch;
2662
- align-content: stretch;
2663
- text-align: justify;
2664
- padding: 10px;
2665
- margin: 10px auto;
2666
- width:80%;
2667
- height: 85vh;
2668
- font-size: 0.9em;;
2669
- border-radius: 20px;
2670
- background: #ffeab0;
2671
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2672
- position: -webkit-sticky;
2673
- position: sticky;
2674
- top: 80px;
2675
- }
2676
-
2677
- .chart {
2678
- padding:10px;
2679
- margin:20px auto;
2680
- width:95%;
2681
- border-radius:20px;
2682
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2683
- }
2684
-
2685
- .text-content1 {
2686
- padding:20px;
2687
- margin:20px auto;
2688
- text-indent:10%;
2689
- }
2690
-
2691
- .text-content-congo {
2692
- text-align: center;
2693
- padding:5px;
2694
- width:80%;
2695
- margin:10px auto;
2696
- line-height:300%;
2697
- border-radius: 30px;
2698
- border:solid green;
2699
- background: rgba(0, 255, 21, 0.3);
2700
- box-shadow: 0 5px 25px rgb(0 0 0 / 20%);
2701
- }
2702
-
2703
- .text-content-end {
2704
- border: 2px;
2705
- border-radius: 15px;
2706
- margin:20px;
2707
- padding: 20px;
2708
- text-align: center;
2709
- background: rgba(255, 255, 255, 0.1);
2710
- backdrop-filter: blur(10px);
2711
- text-shadow: var(--text-shadow);
2712
- border-bottom: 1px solid rgba(255, 255, 255, 0.1);
2713
- border-right: 1px solid rgba(255, 255, 255, 0.1);
2714
- box-shadow: var(--box-shadow);
2715
- }
2716
-
2717
- .happy-score{
2718
- border:solid green;
2719
- background: rgba(0, 255, 21, 0.3);
2720
- margin:10px auto;
2721
- width:60%;
2722
- line-height:200%;
2723
- border-radius: 15px;
2724
- text-align:center;
2725
- font-size:2.5em;
2726
- font-weight:900;
2727
- text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
2728
- }
2729
-
2730
- .caption {
2731
- position: relative;
2732
- width: 100%;
2733
- text-align: center;
2734
- padding: 10px;
2735
- margin: 0;
2736
- }
2737
-
2738
- @media (max-width: 785px) {
2739
- .flexContainer {
2740
- flex-direction: column;
2741
- }
2742
-
2743
- .flex1 {
2744
- width:90%;
2745
- margin:10px auto;
2746
- }
2747
-
2748
- .flex2 {
2749
- width:100%;
2750
- margin:10px auto;
2751
- }
2752
-
2753
- .forminfo-result {
2754
- padding: 10px;
2755
- margin: 10px auto;
2756
- margin-bottom:100px;
2757
- width:100%;
2758
- height: 100%;
2759
- font-size: 13px;
2760
- border-radius: 10px;
2761
- position:relative;
2762
- top: 80px;
2763
- }
2764
- }
2765
-
2766
- /* =============== Forgot Password ==============*/
2767
- .forgot1 {
2768
- width:50%;
2769
- margin:20px auto;
2770
- padding:20px;
2771
- align-content:center;
2772
- border:solid;
2773
- border-color:#ffbb00;
2774
- }
2775
-
2776
- .verify {
2777
- padding:10px;
2778
- margin:10px auto;
2779
- align-content:center;
2780
- text-align:center;
2781
- font-weight:bold;
2782
- background:lightblue;
2783
- border:none;
2784
- border-radius:10px;
2785
- transform: scale(1);
2786
- transition: transform 0.3s ease-in-out;
2787
- }
2788
-
2789
- .verify:hover {
2790
- transform: scale(1.1);
2791
- }
2792
-
2793
-
2794
- #success-svg-pass{
2795
- width: 500px;
2796
- height: 400px;
2797
- margin: 0 auto;
2798
- transform: scale(0.8);
2799
- transition: transform 0.3s ease-in-out;
2800
- }
2801
-
2802
- #success-svg-pass:hover {
2803
- transform: scale(1);
2804
- opacity: 1;
2805
- }
2806
-
2807
- #failure-svg-pass{
2808
- width: 400px;
2809
- height: 400px;
2810
- margin: 0 auto;
2811
- transform: scale(0.8);
2812
- transition: transform 0.3s ease-in-out;
2813
- }
2814
-
2815
- #failure-svg-pass:hover {
2816
- transform: scale(1);
2817
- opacity: 1;
2818
- }
2819
-
2820
- .verify-pass {
2821
- width:40%;
2822
- padding:20px;
2823
- margin:20px auto;
2824
- align-content:center;
2825
- border:solid;
2826
- border-color:#ffbb00;
2827
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
static/css/swiper-bundle.min.css DELETED
@@ -1,13 +0,0 @@
1
- /**
2
- * Swiper 7.4.1
3
- * Most modern mobile touch slider and framework with hardware accelerated transitions
4
- * https://swiperjs.com
5
- *
6
- * Copyright 2014-2021 Vladimir Kharlampidi
7
- *
8
- * Released under the MIT License
9
- *
10
- * Released on: December 24, 2021
11
- */
12
-
13
- @font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}.swiper-virtual.swiper-css-mode .swiper-wrapper::after{content:'';position:absolute;left:0;top:0;pointer-events:none}.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after{height:1px;width:var(--swiper-virtual-size)}.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after{width:1px;height:var(--swiper-virtual-size)}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(0px - (var(--swiper-navigation-size)/ 2));z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-rtl .swiper-button-prev:after{content:'next'}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));height:var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));display:inline-block;border-radius:50%;background:var(--swiper-pagination-bullet-inactive-color,#000);opacity:var(--swiper-pagination-bullet-inactive-opacity, .2)}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet:only-child{display:none!important}.swiper-pagination-bullet-active{opacity:var(--swiper-pagination-bullet-opacity, 1);background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-pagination-vertical.swiper-pagination-bullets,.swiper-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:var(--swiper-pagination-bullet-vertical-gap,6px) 0;display:block}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 var(--swiper-pagination-bullet-horizontal-gap,4px)}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-horizontal>.swiper-pagination-progressbar,.swiper-pagination-progressbar.swiper-pagination-horizontal,.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,.swiper-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,.swiper-pagination-progressbar.swiper-pagination-vertical,.swiper-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-grid>.swiper-wrapper{flex-wrap:wrap}.swiper-grid-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-fade.swiper-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-fade .swiper-slide-active,.swiper-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube{overflow:visible}.swiper-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-cube.swiper-rtl .swiper-slide{transform-origin:100% 0}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-cube .swiper-slide-active,.swiper-cube .swiper-slide-next,.swiper-cube .swiper-slide-next+.swiper-slide,.swiper-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-cube .swiper-slide-shadow-bottom,.swiper-cube .swiper-slide-shadow-left,.swiper-cube .swiper-slide-shadow-right,.swiper-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;opacity:.6;z-index:0}.swiper-cube .swiper-cube-shadow:before{content:'';background:#000;position:absolute;left:0;top:0;bottom:0;right:0;filter:blur(50px)}.swiper-flip{overflow:visible}.swiper-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-flip .swiper-slide-active,.swiper-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-flip .swiper-slide-shadow-bottom,.swiper-flip .swiper-slide-shadow-left,.swiper-flip .swiper-slide-shadow-right,.swiper-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-creative .swiper-slide{-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden;transition-property:transform,opacity,height}.swiper-cards{overflow:visible}.swiper-cards .swiper-slide{transform-origin:center bottom;-webkit-backface-visibility:hidden;backface-visibility:hidden;overflow:hidden}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
static/email.html DELETED
@@ -1,443 +0,0 @@
1
- <html xmlns="http:www.w3.org/1999/xhtml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office">
2
-
3
- <head>
4
- <meta charset="utf8">
5
- <meta http-equiv="x-ua-compatible" content="ie=edge">
6
- <meta name="viewport" content="width=device-width, initial-scale=1">
7
- <meta name="x-apple-disable-message-reformatting">
8
- <!--[if gte mso 9]>
9
- <xml>
10
- <o:OfficeDocumentSettings>
11
- <o:AllowPNG/>
12
- <o:PixelsPerInch>96</o:PixelsPerInch>
13
- </o:OfficeDocumentSettings>
14
- </xml>
15
- <![endif]-->
16
-
17
- <!--[if mso]>
18
- <style type="text/css">
19
- body,table tr,table td,a, span,table.MsoNormalTable{font-family:Helvetica,Arial,sans-serif !important;}
20
- </style>
21
- <![endif]-->
22
- <style type="text/css">
23
- .bg-linkedin {
24
- background-color: #0077b5 !important;
25
- }
26
-
27
- .hover-bg-gray-200:hover {
28
- background-color: #edf2f7 !important;
29
- }
30
-
31
- .hover-bg-gray-900:hover {
32
- background-color: #1a202c !important;
33
- }
34
-
35
- .hover-bg-red-700:hover {
36
- background-color: #c53030 !important;
37
- }
38
-
39
- .hover-bg-blue-700:hover {
40
- background-color: #2b6cb0 !important;
41
- }
42
-
43
- .hover-bg-blue-800:hover {
44
- background-color: #2c5282 !important;
45
- }
46
-
47
- .hover-bg-indigo-700:hover {
48
- background-color: #4c51bf !important;
49
- }
50
-
51
- .hover-opacity-100:hover {
52
- opacity: 1 !important;
53
- }
54
-
55
- .hover-text-white:hover {
56
- color: #ffffff !important;
57
- }
58
-
59
- .hover-text-blue-400:hover {
60
- color: #63b3ed !important;
61
- }
62
-
63
- .hover-no-underline:hover {
64
- text-decoration: none !important;
65
- }
66
-
67
- @media screen {
68
- img {
69
- max-width: 100%;
70
- }
71
-
72
- td,
73
- th {
74
- box-sizing: border-box;
75
- }
76
-
77
- a[x-apple-data-detectors] {
78
- color: inherit;
79
- text-decoration: none;
80
- }
81
-
82
- .all-font-montserrat {
83
- font-family: Montserrat, -apple-system, "Segoe UI", Helvetica, sans-serif !important;
84
- }
85
-
86
- .all-font-sans {
87
- font-family: -apple-system, "Segoe UI", sans-serif !important;
88
- }
89
- }
90
-
91
- @media (max-width: 600px) {
92
- u~div .wrapper {
93
- min-width: 100vw;
94
- }
95
-
96
- img {
97
- height: auto !important;
98
- }
99
-
100
- .sm-rounded-none {
101
- border-radius: 0 !important;
102
- }
103
-
104
- .sm-block {
105
- display: block !important;
106
- }
107
-
108
- .sm-inline-block {
109
- display: inline-block !important;
110
- }
111
-
112
- .sm-hidden {
113
- display: none !important;
114
- }
115
-
116
- .sm-h-20 {
117
- height: 20px !important;
118
- }
119
-
120
- .sm-h-24 {
121
- height: 24px !important;
122
- }
123
-
124
- .sm-h-32 {
125
- height: 32px !important;
126
- }
127
-
128
- .sm-mb-0 {
129
- margin-bottom: 0 !important;
130
- }
131
-
132
- .sm-mb-16 {
133
- margin-bottom: 16px !important;
134
- }
135
-
136
- .sm-opacity-100 {
137
- opacity: 1 !important;
138
- }
139
-
140
- .sm-px-0 {
141
- padding-left: 0 !important;
142
- padding-right: 0 !important;
143
- }
144
-
145
- .sm-py-10 {
146
- padding-top: 10px !important;
147
- padding-bottom: 10px !important;
148
- }
149
-
150
- .sm-px-14 {
151
- padding-left: 14px !important;
152
- padding-right: 14px !important;
153
- }
154
-
155
- .sm-py-24 {
156
- padding-top: 24px !important;
157
- padding-bottom: 24px !important;
158
- }
159
-
160
- .sm-px-24 {
161
- padding-left: 24px !important;
162
- padding-right: 24px !important;
163
- }
164
-
165
- .sm-px-10 {
166
- padding-left: 10px !important;
167
- padding-right: 10px !important;
168
- }
169
-
170
- .sm-px-30 {
171
- padding-left: 30px !important;
172
- padding-right: 30px !important;
173
- }
174
-
175
- .sm-pt-0 {
176
- padding-top: 0 !important;
177
- }
178
-
179
- .sm-pr-0 {
180
- padding-right: 0 !important;
181
- }
182
-
183
- .sm-pb-0 {
184
- padding-bottom: 0 !important;
185
- }
186
-
187
- .sm-pl-0 {
188
- padding-left: 0 !important;
189
- }
190
-
191
- .sm-pt-4 {
192
- padding-top: 4px !important;
193
- }
194
-
195
- .sm-pt-8 {
196
- padding-top: 8px !important;
197
- }
198
-
199
- .sm-pb-8 {
200
- padding-bottom: 8px !important;
201
- }
202
-
203
- .sm-pt-10 {
204
- padding-top: 10px !important;
205
- }
206
-
207
- .sm-pb-10 {
208
- padding-bottom: 10px !important;
209
- }
210
-
211
- .sm-pb-16 {
212
- padding-bottom: 16px !important;
213
- }
214
-
215
- .sm-pl-10 {
216
- padding-left: 10px !important;
217
- }
218
-
219
- .sm-pr-10 {
220
- padding-left: 10px !important;
221
- }
222
-
223
- .sm-pl-16 {
224
- padding-left: 16px !important;
225
- }
226
-
227
- .sm-pr-16 {
228
- padding-left: 16px !important;
229
- }
230
-
231
- .sm-pt-20 {
232
- padding-top: 20px !important;
233
- }
234
-
235
- .sm-pb-20 {
236
- padding-bottom: 20px !important;
237
- }
238
-
239
- .sm-pl-20 {
240
- padding-left: 20px !important;
241
- }
242
-
243
- .sm-pr-20 {
244
- padding-left: 20px !important;
245
- }
246
-
247
- .sm-pt-24 {
248
- padding-top: 24px !important;
249
- }
250
-
251
- .sm-pb-24 {
252
- padding-bottom: 24px !important;
253
- }
254
-
255
- .sm-pb-32 {
256
- padding-bottom: 32px !important;
257
- }
258
-
259
- .sm-pl-34 {
260
- padding-left: 34px !important;
261
- }
262
-
263
- .sm-pl-40 {
264
- padding-left: 40px !important;
265
- }
266
-
267
- .sm-pr-40 {
268
- padding-right: 40px !important;
269
- }
270
-
271
- .sm-pb-40 {
272
- padding-bottom: 40px !important;
273
- }
274
-
275
- .sm-text-left {
276
- text-align: left !important;
277
- }
278
-
279
- .sm-text-center {
280
- text-align: center !important;
281
- }
282
-
283
- .sm-w-1-2 {
284
- width: 50% !important;
285
- }
286
-
287
- .sm-w-1-3 {
288
- width: 33.33333% !important;
289
- }
290
-
291
- .sm-w-2-3 {
292
- width: 66.66667% !important;
293
- }
294
-
295
- .sm-w-3-5 {
296
- width: 60% !important;
297
- }
298
-
299
- .sm-w-full {
300
- width: 100% !important;
301
- max-width: 100% !important;
302
- }
303
- }
304
- </style>
305
- <title>Smile</title>
306
- <style>
307
- @media (max-width: 600px) {
308
- img {
309
- height: auto !important;
310
- max-width: 100% !important;
311
- }
312
-
313
- body {
314
- padding: 0;
315
- }
316
- }
317
- </style>
318
- </head>
319
-
320
- <body style="box-sizing: border-box; margin: 0; padding: 0; width: 100%; word-break: break-word; -webkit-font-smoothing: antialiased;padding-bottom:20px; background-color: #f7f7f7" class="sm-px-10">
321
-
322
- <table style="overflow: hidden;">
323
- <tbody>
324
- <tr>
325
- <td style="display:none !important;visibility:hidden;mso-hide:all;font-size:1px;color:#ffffff;line-height:1px;max-height:0px;max-width:0px;opacity:0;overflow:hidden;">SmileCheck 😄</td>
326
- </tr>
327
- </tbody>
328
- </table>
329
-
330
- <table class="wrapper all-font-sans" width="100%" cellpadding="0" cellspacing="0" role="presentation" style="overflow: hidden;">
331
- <tbody>
332
- <tr>
333
- <td align="center" width="100%">
334
- <table class="sm-w-full" width="600" cellpadding="0" cellspacing="0" role="presentation" style="overflow: hidden;">
335
- </table>
336
- <table class="all-font-sans sm-w-full" cellspacing="0" cellpadding="0" style="overflow: hidden; margin-left: auto; margin-right: auto; width: 600px; background: rgb(255, 255, 255);" width="600" bgcolor="#ffffff">
337
- <tbody>
338
- <tr>
339
- <td align="center" style="padding-top: 40px; padding-bottom: 40px; padding-left: 48px; padding-right: 48px; width: 100%; border-radius: 0px" class="sm-px-24" width="100%">
340
- <table class="sm-w-full" cellspacing="0" cellpadding="0" style="overflow: hidden; width: 100%;" width="100%">
341
- <tbody>
342
- <tr>
343
- <td align="center" style="text-align: center; padding-bottom: 18px; border-radius: 0px" class="sm-px-0"><a href="#" target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://i.postimg.cc/vTSj1jQz/smilecheck-logo.png" data-avatar="false" alt="Logo" style="width: 180px; vertical-align: middle; line-height: 100%; max-width: 100%; border: 0; outline: none;" width="180" height="46"></a></td>
344
- </tr>
345
- <tr>
346
- <td align="center" class="sm-px-0" style="border-radius: 0px"><a href target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://letter-so.s3.us-west-1.amazonaws.com/uploads/exports/6410e03bdbcbc3164be07d14/32023/1678828931375twitter%2B%281%29%2B1.png" data-avatar="false" style="width: 16px; vertical-align: middle; line-height: 100%; max-width: 100%; border: 0; outline: none;" width="16" height="16"></a><span style="display: inline">&nbsp;&nbsp;</span><a href target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://letter-so.s3.us-west-1.amazonaws.com/uploads/exports/6410e03bdbcbc3164be07d14/32023/1678828931375instagram%2B1.png" data-avatar="false" style="width: 16px; vertical-align: middle; line-height: 100%; max-width: 100%; border: 0; outline: none;" width="16" height="16"></a><span style="display: inline">&nbsp;&nbsp;</span><a href target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://letter-so.s3.us-west-1.amazonaws.com/uploads/exports/6410e03bdbcbc3164be07d14/32023/1678828931375facebook%2B%281%29%2B1.png" data-avatar="false" style="width: 16px; vertical-align: middle; line-height: 100%; max-width: 100%; border: 0; outline: none;" width="16" height="16"></a></td>
347
- </tr>
348
- </tbody>
349
- </table>
350
- </td>
351
- </tr>
352
- </tbody>
353
- </table>
354
- <table class="sm-w-full all-font-sans" cellspacing="0" cellpadding="0" style="overflow: hidden; margin-left: auto; margin-right: auto; width: 600px; background: rgb(255, 255, 255);" width="600" bgcolor="#ffffff">
355
- <tbody>
356
- <tr>
357
- <td style="border-radius: 0px">
358
- <table cellspacing="0" cellpadding="0" style="overflow: hidden;">
359
- <tbody>
360
- <tr>
361
- <td style="padding-top: 40px; padding-bottom: 40px; padding-left: 48px; padding-right: 48px; width: 100%; border-radius: 0px" class="sm-px-24" width="100%">
362
- <table cellspacing="0" cellpadding="0" style="overflow: hidden; width: 100%;" width="100%">
363
- <tbody>
364
- <tr>
365
- <td style="padding-bottom: 24px; border-radius: 0px" class="sm-px-0">
366
- <h1 style="margin: 0 0 12px 0; line-height: 1.24; font-weight: bold; font-family: -apple-system, 'Segoe UI', sans-serif; font-size: 36px; color: #222;">What's new this week?</h1>
367
- </td>
368
- </tr>
369
- <tr>
370
- <td style="padding-bottom: 24px; border-radius: 0px" class="sm-px-0"><a href target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://letter-so.s3.us-west-1.amazonaws.com/uploads/exports/6410e03bdbcbc3164be07d14/32023/1678828931375%252Fprototypr%252Ftemp%252F1580579385905-1580579385905.png" data-avatar="false" alt="Photo frame" style="width: 504px; max-width: 100%; vertical-align: middle; line-height: 100%; border: 0; outline: none;" width="504" height="340"></a></td>
371
- </tr>
372
- <tr>
373
- <td style="padding-bottom: 24px; border-radius: 0px" class="sm-px-0">
374
- <div>
375
- <script>
376
- const urlParams = new URLSearchParams(window.location.search);
377
- const name = urlParams.get('name');
378
- const otp = urlParams.get('otp');
379
- const userGreeting = document.getElementById('user-greeting');
380
- userGreeting.textContent = `Hey ${name} ${otp},`;
381
- </script>
382
- <p id="user-greeting" style="margin: 0 0 12px 0; line-height: 1.6; margin-bottom: 24px; font-family: -apple-system, 'Segoe UI', sans-serif; font-size: 18px; color: #222;">Hey ,</p>
383
- <p style="margin: 0 0 12px 0; line-height: 1.6; font-family: -apple-system, 'Segoe UI', sans-serif; font-size: 18px; color: #222;">This is Email Verification by SmileCheck. We are so excited that you are joining us in this journey. Please go to the below link to verify:</p>
384
- </div>
385
- </td>
386
- </tr>
387
- <tr>
388
- <td align="center" class="sm-px-0" style="border-radius: 0px">
389
- <table align="center" cellspacing="0" cellpadding="0" style="overflow: hidden; margin-left: auto; margin-right: auto;">
390
- <tbody>
391
- <tr>
392
- <th colspan="1" rowspan="1" style="padding-left: 20px; padding-right: 20px; border-radius: 4px; background-color:#ffa200; mso-padding-alt: 12px 48px" bgcolor="#ffa200"><a style="display: inline-block; padding-top: 16px; padding-bottom: 16px; text-decoration: none; color: #333333; font-size: 16px;" href="#button" target="_blank">Check it out</a></th>
393
- </tr>
394
- </tbody>
395
- </table>
396
- </td>
397
- </tr>
398
- </tbody>
399
- </table>
400
- </td>
401
- </tr>
402
- </tbody>
403
- </table>
404
- </td>
405
- </tr>
406
- </tbody>
407
- </table>
408
- <table class="all-font-sans sm-w-full" cellspacing="0" cellpadding="0" style="overflow: hidden; margin-left: auto; margin-right: auto; width: 600px; background: rgb(255, 255, 255);" width="600" bgcolor="#ffffff">
409
- <tbody>
410
- <tr>
411
- <td style="padding-top: 40px; padding-bottom: 40px; padding-left: 48px; padding-right: 48px; width: 100%; border-radius: 0px" class="sm-px-24" width="100%">
412
- <table cellspacing="0" cellpadding="0" style="overflow: hidden; width: 100%;" width="100%">
413
- <tbody>
414
- <tr>
415
- <td align="center" style="text-align: center; padding-bottom: 8px; border-radius: 0px" class="sm-px-0"><a href="#" target="_blank" rel="noopener noreferrer nofollow" style="color: -webkit-link;"><img src="https://i.postimg.cc/vTSj1jQz/smilecheck-logo.png" data-avatar="false" alt="Letter" style="width: 180px; max-width: 100%; border: 0; outline: none;" width="180" height="46"></a></td>
416
- </tr>
417
- <tr>
418
- <td align="center" style="text-align: center; border-radius: 0px" class="sm-px-0">
419
- <p style="margin: 0 0 12px 0; line-height: 1.6; font-size: 12px; color: #1a1c25;"><em>49 Manish Nagar • Nagpur, India</em></p>
420
- </td>
421
- </tr>
422
- <tr>
423
- <td height="64" style="line-height: 64px; border-radius: 0px" class="sm-px-0">
424
- <p style="font-size: 16px; margin: 0 0 12px 0; line-height: 1.6; font-family: -apple-system, 'Segoe UI', sans-serif; color: #222;"></p>
425
- </td>
426
- </tr>
427
- <tr>
428
- <td align="center" style="text-align: center; border-radius: 0px" class="sm-px-0">
429
- <p style="font-size: 16px; margin: 0 0 12px 0; line-height: 1.6; font-family: -apple-system, 'Segoe UI', sans-serif; color: #222;"><a target="_blank" rel="noopener noreferrer nofollow" href="http://127.0.0.1:5000" style="font-size: 12px; text-decoration: none; color: #2d3042;"><span style="color: #787474">Unsubscribe from this list.</span></a></p>
430
- </td>
431
- </tr>
432
- </tbody>
433
- </table>
434
- </td>
435
- </tr>
436
- </tbody>
437
- </table>
438
- </td>
439
- </tr>
440
- </tbody>
441
- </table>
442
- </body>
443
- </html>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
static/error2.png DELETED
Binary file (430 kB)
 
static/error2.svg DELETED
static/eye.png DELETED
Binary file (3.11 kB)
 
static/favicon.png DELETED
Binary file (14.2 kB)
 
static/feature-back.svg DELETED
static/footer.png DELETED
Binary file (5.26 kB)
 
static/footer.svg DELETED
static/index-back.svg DELETED
static/index-backed.svg DELETED
static/js/main.js DELETED
@@ -1,84 +0,0 @@
1
- //Swiper slider
2
- var swiper = new Swiper(".bg-slider-thumbs", {
3
- loop: true,
4
- spaceBetween: 0,
5
- slidesPerView: 0,
6
- });
7
- var swiper2 = new Swiper(".bg-slider", {
8
- loop: true,
9
- spaceBetween: 0,
10
- thumbs: {
11
- swiper: swiper,
12
- },
13
- });
14
-
15
- //Navigation bar effects on scroll
16
- window.addEventListener("scroll", function(){
17
- const header = document.querySelector("header");
18
- header.classList.toggle("sticky", window.scrollY > 0);
19
- });
20
-
21
- //Responsive navigation menu toggle
22
- const menuBtn = document.querySelector(".nav-menu-btn");
23
- const closeBtn = document.querySelector(".nav-close-btn");
24
- const navigation = document.querySelector(".navigation");
25
-
26
- menuBtn.addEventListener("click", () => {
27
- navigation.classList.add("active");
28
- });
29
-
30
- closeBtn.addEventListener("click", () => {
31
- navigation.classList.remove("active");
32
- });
33
-
34
- //Transition Jump anchor links
35
- var jumpLink1 = document.getElementById("jump-link1");
36
-
37
- jumpLink1.addEventListener("click", function(e) {
38
- e.preventDefault();
39
- var target = document.querySelector(this.getAttribute("href"));
40
- var targetOffset = target.offsetTop;
41
- window.scrollTo({top: targetOffset, behavior: "smooth"});
42
- });
43
-
44
- var jumpLink2 = document.getElementById("jump-link2");
45
-
46
- jumpLink2.addEventListener("click", function(e) {
47
- e.preventDefault();
48
- var target = document.querySelector(this.getAttribute("href"));
49
- var targetOffset = target.offsetTop;
50
- window.scrollTo({top: targetOffset, behavior: "smooth"});
51
- });
52
-
53
- var jumpLink3 = document.getElementById("jump-link3");
54
-
55
- jumpLink3.addEventListener("click", function(e) {
56
- e.preventDefault();
57
- var target = document.querySelector(this.getAttribute("href"));
58
- var targetOffset = target.offsetTop;
59
- window.scrollTo({top: targetOffset, behavior: "smooth"});
60
- });
61
-
62
- var jumpLink4 = document.getElementById("jump-link4");
63
-
64
- jumpLink4.addEventListener("click", function(e) {
65
- e.preventDefault();
66
- var target = document.querySelector(this.getAttribute("href"));
67
- var targetOffset = target.offsetTop;
68
- window.scrollTo({top: targetOffset, behavior: "smooth"});
69
- });
70
-
71
- var inpt = document.getElementById("email-inpt");
72
-
73
- inpt.addEventListener("focus", function() {
74
- document.getElementById("contain-pass").style.display = "none";
75
- document.getElementById("contain-mail").style.display = "block";
76
- });
77
-
78
- var pass = document.getElementById("pass-inpt");
79
-
80
- pass.addEventListener("focus", function() {
81
- document.getElementById("contain-pass").style.display = "block";
82
- document.getElementById("contain-mail").style.display = "none";
83
- });
84
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
static/js/swiper-bundle.min.js DELETED
The diff for this file is too large to render. See raw diff
 
static/layered-waves-haikei-cropped.svg DELETED
static/layered-waves-haikei.png DELETED
Binary file (7.99 kB)
 
static/layered-waves-haikei.svg DELETED
static/loaderanimation_old.mp4 DELETED
Binary file (137 kB)
 
static/log-back.png DELETED
Binary file (10.2 kB)
 
static/log-bak.png DELETED
Binary file (79.2 kB)
 
static/login-back.png DELETED
Binary file (18.5 kB)
 
static/login-back.svg DELETED
static/parameters/1101.png DELETED
Binary file (37.6 kB)
 
static/parameters/1102.png DELETED
Binary file (19.1 kB)
 
static/parameters/1103.png DELETED
Binary file (42.9 kB)
 
static/parameters/1104.png DELETED
Binary file (30.5 kB)
 
static/parameters/1105.png DELETED
Binary file (35.2 kB)
 
static/parameters/1106.png DELETED
Binary file (18.4 kB)
 
static/parameters/1107.png DELETED
Binary file (17.1 kB)
 
static/parameters/1108.png DELETED
Binary file (38.3 kB)
 
static/party-popper.png DELETED
Binary file (32.8 kB)
 
static/rejected.png DELETED
Binary file (425 kB)
 
static/smilecheck_logo.png DELETED
Binary file (347 kB)
 
static/smilecheckloader.mp4 DELETED
Binary file (166 kB)
 
static/smilelogo-transperent.png DELETED
Binary file (91.4 kB)
 
static/smilelogo.png DELETED
Binary file (320 kB)
 
static/user-home.png DELETED
Binary file (22.9 kB)
 
static/user-home.svg DELETED
static/user.gif DELETED
Binary file (471 kB)
 
static/wellbeing.png DELETED
Binary file (37.6 kB)