-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
1451 lines (1431 loc) · 50.3 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script type="text/javascript" src="javascript/script.js"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/modal.css">
<link rel="stylesheet" href="css/button.css">
<link href="https://fonts.googleapis.com/css?family=Inknut+Antiqua" rel="stylesheet">
</head>
<body>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<h1>Order of the Twelve Mushrooms</h1>
<h2>A Mystical Vision of the Life-Reincarnation Cycle</h2>
<h2><i>Experienced by Ash Mystic</i></h2>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<img class="center-image" src="images/circles/7_trees_circle.png"></img>
<br>
<br>
<br>
<h3>From the book:</h3>
<h3 class="quote">"In the grass I discovered twelve mushrooms arranged in an arc between two trees. Upon further inspection and intuitive analysis I realized that the mushrooms were positioned and arranged in six groups which elegantly represented the stages of life. Together with the two trees they were between, the mushrooms gracefully represented the entire life-reincarnation cycle."</h3>
<h3 class="quote">"I discovered a series of meaningful geometric connections... Amongst them include a set of internal psycho-spiritual States of Ascension that correspond to the outer Stages of the Mushroom Vision."</h3>
<br>
<br>
<br>
<br>
<img class="center-image" src="images/circles/5_meta-gnosis_circle.png"></img>
<br>
<br>
<br>
<br>
<h1>States and Stages</h1>
<h2>Below are the stages and states in pictoral form.</h2>
<h2>Click/tap them to learn more. Use the Divinate tool to obtain an automated oracle reading.</h2>
<div>
<h2 class="scope-text">Stages</h2>
</div>
<div class="scene">
<div class="carousel">
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="1">
<img src="images/cards/1_outer_birth.jpg"></img>
</div>
<div class="card__face card__face--back" modal="1">
<img src="images/cards/1_inner_presence.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="2">
<img src="images/cards/2_outer_growth.jpg"></img>
</div>
<div class="card__face card__face--back" modal="2">
<img src="images/cards/2_inner_gratitude.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="3">
<img src="images/cards/3_outer_relationships.jpg"></img>
</div>
<div class="card__face card__face--back" modal="3">
<img src="images/cards/3_inner_synchronicity.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="4">
<img src="images/cards/4_outer_aging.jpg"></img>
</div>
<div class="card__face card__face--back" modal="4">
<img src="images/cards/4_inner_gnosis.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="5">
<img src="images/cards/5_outer_loss.jpg"></img>
</div>
<div class="card__face card__face--back" modal="5">
<img src="images/cards/5_inner_meta-gnosis.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="6">
<img src="images/cards/6_outer_death.jpg"></img>
</div>
<div class="card__face card__face--back" modal="6">
<img src="images/cards/6_inner_rapture.jpg"></img>
</div>
</div>
</div>
<div class="carousel__cell">
<div class="card">
<div class="card__face card__face--front" modal="7">
<img src="images/cards/7_outer_tree.jpg"></img>
</div>
<div class="card__face card__face--back" modal="7">
<img src="images/cards/7_inner_spirit.jpg"></img>
</div>
</div>
</div>
</div>
</div>
<div class="carousel-options">
<p>
<button class="button previous-button">Previous</button>
<button class="button next-button">Next</button>
</p>
<p>
<button class="button flip-button">Flip Cards</button>
</p>
<p>
<button class="button spin-button">Divinate Oracle</button>
</p>
</div>
<!-- ### Birth Modal ### -->
<div id="modal-birth" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/1_birth_circle.png">
<div class="modal-title"><h1>Stage 1: Birth</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<h4>Description</h4>
<div>
<p>
Two beings come together in sacred unity to give life to a third new being.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
You are giving birth to something new in your life - be it a child, a project, or a different way of being. What do you want to manifest? Now is a good time to do some visioning and set intentions for the future. Be mindful of who you create with. Remember to release control of your new creation once it manifests into the world.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Imagine a seed of light appearing in the palm of your hands. Conjure a feeling of love in your heart and focus on what you want to manifest. Now breathe life into the seed and spread your hands, casting the seed into the world.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Add (➕)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-presence" href="#">Presence</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-loss" href="#">Loss</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-tree" href="#"> < Previous</a> <a class="dialog-link" modal="modal-growth" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Growth Modal ### -->
<div id="modal-growth" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/2_growth_circle.png">
<div class="modal-title"><h1>Stage 2: Growth</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<h4>Description</h4>
<div>
<p>
An individual grows and develops a sense of self.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
Something in your life is developing. Now is a good time to step out of your comfort zone in one or more areas. It is time to spread your wings and venture into new exciting territory.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Visualize a pair of glowing wings of light unfurling from your back just below your neck. As you stretch your wings imagine floating up into the air. Now spread your hands and soar through the sky.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Expand (🌀)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Self (↓)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-gratitude" href="#">Gratitude</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-aging" href="#">Aging / Illness</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-birth" href="#"> < Previous</a> <a class="dialog-link" modal="modal-relationships" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Relationships Modal ### -->
<div id="modal-relationships" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/3_relationships_circle.png">
<div class="modal-title"><h1>Stage 3: Relationships</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<h4>Description</h4>
<div>
<p>
An individual learns to balance autonomy and communion with others.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
Now is an appropriate time to nurture and/or reconsider your relationships. Perhaps there is an imbalance of autonomy (aloneness/underindulgence) and communion (togetherness/overindulgence) that you would benefit from adjusting. Remember that relationship extends beyond just connection with other people; it involves anything considered “outside” of yourself, including relationship to health, food, work, and play. Relationship in any area is about balance.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Visualize holding up a set of scales with a small amount of weight on either side. Using your mind even-out the weights so that the two sides become perfectly balanced. Now imagine walking through life while maintaining the balance of the scales.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Go beyond oneself (⬆️)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-synchronicity" href="#">Synchronicity</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-death" href="#">Death</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-growth" href="#"> < Previous</a> <a class="dialog-link" modal="modal-aging" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Aging Modal ### -->
<div id="modal-aging" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/4_aging_circle.png">
<div class="modal-title"><h1>Stage 4: Aging / Illness</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<div>
<p>
<i>“Decay is the beginning of all birth ... midwife of great things ... the deepest mystery and miracle that He/God has revealed to man.”</i>
<br>
- Paracelsus
</p>
</div>
<h4>Description</h4>
<div>
<p>
An individual ages, experiences decay and illness.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
It may be time to acknowledge some aspect of you which is fading out. This could be physical, emotional or spiritual. This could be a time for celebration, like shedding skin which you have outgrown. Whether it is pleasant or painful, focus on letting go with humility and grace.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Taking a deep breath in, imagine vital life force entering your system. Breathing out, imagine negativity and dis-ease leaving you.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Contract (🌀)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Self (↓)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-gnosis" href="#">Gnosis</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-growth" href="#">Growth</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-relationships" href="#"> < Previous</a> <a class="dialog-link" modal="modal-loss" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Loss Modal ### -->
<div id="modal-loss" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/5_loss_circle.png">
<div class="modal-title"><h1>Stage 5: Loss</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<h4>Description</h4>
<div>
<p>
An individual loses a loved one.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
An old pattern or relationship that no longer serves you is near its end. Do not fear, for everything happens in divine timing just as you are ready for it. Focus on releasing what is due. Remember it is natural to grieve.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Breathing in, focus on the sensation - what it feels like to be alive. Acknowledge that this too shall pass. Breathing out, release that which no longer serves you.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Subtract (➖)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-meta-gnosis" href="#">Meta-Gnosis</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-birth" href="#">Birth</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-aging" href="#"> < Previous</a> <a class="dialog-link" modal="modal-death" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Death Modal ### -->
<div id="modal-death" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/6_death_circle.png">
<div class="modal-title"><h1>Stage 6: Death</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<div>
<p>
<i>“How do we know that to clean to life is not an error? Perhaps our fear of its end approaching is like forgetting our way and not knowing how to return home.”</i>
<br>
- Chuang-tse
</p>
</div>
<h4>Description</h4>
<div>
<p>
An individual dies with another.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
A core part of you is ready to end. This could be an identity or an aspect of ego. Consider what is giving friction in your life and what life would be like without that struggle. What would it take to change? It could be as simple as a decision to accept yourself for who you know you are.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Complete a body scan from toe to head - noticing the sensations, temperature and discomforts in each part of you. Now imagine the edges of your body becoming less defined, like you are melting into the fabric of energy around you. Absorb a new sense of self through osmosis, and release your prior self.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Lose oneself (⬇️)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-rapture" href="#">Rapture</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-relationships" href="#">Relationships</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-loss" href="#"> < Previous</a> <a class="dialog-link" modal="modal-tree" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Trees Modal ### -->
<div id="modal-tree" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/7_trees_circle.png">
<div class="modal-title"><h1>Stage 7: Tree of Life</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<div>
<p>
<i>“The meaning of life is not to be discovered only after death in some hidden, mysterious realm; On the contrary, it can be found by eating the succulent fruit of the Tree of Life.”</i>
<br>
- Paul Kurtz
</p>
</div>
<h4>Description</h4>
<div>
<p>
An individual returns to the Spirit Realm in between life incarnations.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
It is time to make a quantum leap in your spiritual evolution. Everything you have experienced lately has prepared you for a brand new state of awareness and existing. This might feel like a weight being lifted. Rejoice and appreciate the journey.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Breathing in, focus on energy coming up from your base/root. Breathing out, imagine the energy being absorbed into your head/crown. Repeat this process to accumulate life force.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Journey Home (⭗)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
All (↕️)
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Outer/External
</p>
</div>
<h4>Inner Analog (Internal Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-spirit" href="#">Spirit</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
N/A
</p>
</div>
<h4><a class="dialog-link" modal="modal-death" href="#"> < Previous</a> <a class="dialog-link" modal="modal-birth" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### -->
<!-- ### INTERNAL ### -->
<!-- ### -->
<!-- ### Presence Modal ### -->
<div id="modal-presence" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/1_presence_circle.png">
<div class="modal-title"><h1>State 1: Presence</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<div>
<p>
<i>“What is a course of history or philosophy, or poetry, no matter how well selected, or the best society, or the most admirable routine of life, compared with the discipline of looking always at what is to be seen? Will you be a reader, a student nearly or a seer? Read your fate, see what is before you, and walk on into futurity.”</i>
<br>
- Henry David Thoreau
</p>
</div>
<h4>Description</h4>
<div>
<p>
Presence yields unification with Unity Consciousness along the toroidal field. Present awareness allows one to tap into the infinite probabilities in the now.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
Quiet the mind. Let go of judgements of the past and fears of the future. Surrender your preconceived notions of reality. Open to all possibilities. Become Unit Consciousness. Find the humility to let go of all opinions held as truths.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Find a place of solitude and listen to your surroundings. What do you see, hear and feel? What is happening around you? Is it different than what is in your mind? Check in. Be honest with your current feelings. Become aware of who and where you are in this moment- shadow and all. Only when you open to the reality of what is can you shape what is to be.
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Be (•)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Chakra</h4>
<div>
<p>
Root
</p>
</div>
<h4>Essence</h4>
<div>
<p>
Potential
<br>
Probabilities in the Now
<br>
Surrender
<br>
Vulnerability
<br>
Unit Consciousness/Singularity
</p>
</div>
<h4>Message</h4>
<div>
<p>
Surrender to the present moment.
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Inner/Internal
</p>
</div>
<h4>Outer Analog (External Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-birth" href="#">Birth</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-meta-gnosis" href="#">Meta-Gnosis</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-spirit" href="#"> < Previous</a> <a class="dialog-link" modal="modal-gratitude" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Gratitude Modal ### -->
<div id="modal-gratitude" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/2_gratitude_circle.png">
<div class="modal-title"><h1>State 2: Gratitude</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<h4>Description</h4>
<div>
<p>
Gratitude is a deep heartfelt appreciation. Gratitude of all experiences brings in abundance and peace.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
Choose to find joy and value in the present moment. Trust yourself that focusing on the positive will bring positive results. Where intention goes, energy flows.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Reflect on and appreciate everything that has led up to your current state and situation.
Focusing on different objects and situations repeat the mantra, <i>"This has led me to where I am."</i>
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Feel (~)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Self (↓)
</p>
</div>
<h4>Chakra</h4>
<div>
<p>
Sacral/Solar Plexus
</p>
</div>
<h4>Essence</h4>
<div>
<p>
Current
<br>
Joy
<br>
Free will
</p>
</div>
<h4>Message</h4>
<div>
<p>
Trust yourself.
</p>
</div>
<h4>Scope</h4>
<div>
<p>
Inner/Internal
</p>
</div>
<h4>Outer Analog (External Scope)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-growth" href="#">Growth</a>
</p>
</div>
<h4>Antipode (Complementary/Opposite)</h4>
<div>
<p>
<a class="dialog-link" modal="modal-gnosis" href="#">Gnosis</a>
</p>
</div>
<h4><a class="dialog-link" modal="modal-presence" href="#"> < Previous</a> <a class="dialog-link" modal="modal-synchronicity" href="#">Next ></a></h4>
</div>
</div>
<br style="clear: left;">
</div>
</div>
<!-- Modal Footer -->
<div class="modal-footer">
Order of the Twelve Mushrooms 🍄
</div>
</div>
</div>
<!-- ### Synchronicity Modal ### -->
<div id="modal-synchronicity" class="modal">
<div class="modal-content">
<!-- Modal Header -->
<div class="modal-header">
<image class="modal-image" src="images/circles/3_synchronicity_circle.png">
<div class="modal-title"><h1>State 3: Synchro nicity</h1></div>
<div class="close">ⓧ</div>
</div>
<!-- Modal Body -->
<div class="modal-body">
<div class="modal-body-content">
<div class="column">
<div class="modal-body-content-section">
<div>
<p>
<i>“Synchronicity is the Universe rhyming.”</i>
<br>
- Ra
</p>
</div>
<div>
<p>
<i>“Synchronicity is God’s way of remaining anonymous.”</i>
<br>
- Albert Einstein
</p>
</div>
<h4>Description</h4>
<div>
<p>
Messages from higher levels of conscious manifest as synchronicities to provide guidance, encouragement and inspiration. They occur frequently, just waiting to be noticed. To invite them into your life view the world with a playful openness and intuitive mind.
</p>
</div>
<h4>Oracle</h4>
<div>
<p>
Allow yourself to notice and examine seeing coincidences and signs in your life. Observe the <i>feeling</i> you have and the thoughts on your mind when these patterns occur. Trust that a higher meaning underlies these events whose purpose is to help guide you in your spiritual development.
</p>
</div>
<h4>Guided Meditation</h4>
<div>
<p>
Wherever you are, look around you and consider that everything is a sign/message from a Divine realm. What is each thing telling you?
</p>
</div>
</div>
<div class="modal-body-content-section">
<h4>Action</h4>
<div>
<p>
Sense (△)
</p>
</div>
<h4>Focus</h4>
<div>
<p>
Other (↑)
</p>
</div>
<h4>Chakra</h4>
<div>
<p>
Solar Plexus/Heart
</p>
</div>
<h4>Essence</h4>
<div>
<p>
Connections to Source/Higher Consciousness
<br>
Divine Messages
</p>
</div>
<h4>Message</h4>
<div>
<p>
Trust in higher order/reality/God.
</p>
</div>
<h4>Scope</h4>
<div>