body {
	background-color: white;
	margin: 0;
}
.roboto-flex-light {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;   font-weight: 200;  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}
.roboto-flex-regular {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;   font-weight: 400;  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}
.roboto-flex-semibold {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;   font-weight: 600;  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}
.roboto-flex-bold {
  font-family: "Roboto Flex", sans-serif;
  font-optical-sizing: auto;   font-weight: 800;  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "XOPQ" 96,
    "XTRA" 468,
    "YOPQ" 79,
    "YTAS" 750,
    "YTDE" -203,
    "YTFI" 738,
    "YTLC" 514,
    "YTUC" 712;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.75);
}
.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(4px);
  z-index: -1;
}
.modal-content {
  background-color: #fefefe;
  width: 90%;
  max-width: 500px;
  height: 500px;
  margin: auto;
  padding: 2rem;
  border: 1px solid #888;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 1rem;
  text-align: center;
  line-height: 1.3;
  overflow-y: auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.close {
  color: #aaa;
  position: absolute;
  right: 1rem;
  top: 0.5rem;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
}

.tooltip-wrapper {
    position: absolute;
    display: inline-block;
 }
.tooltip-text {
	visibility: hidden;
	width: 220px;
	background-color: rgba(0, 0, 0, 0.85);
	color: #fff;
	text-align: center;
	padding: 8px;
	border-radius: 6px;
	position: absolute;
	z-index: 9999;
	top: 62px;
	left: -80px;
	font-size: 12px;
	line-height: 1.4;
	opacity: 0;
	transition: opacity 0.3s ease;
	pointer-events: none;
}
.tooltip-wrapper:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}


.top {
	min-width: 1000px;
	width: 100%;
	background-color: #28284b;
	margin: 0;
}
.topnav {
	/*background-color: #36365d;*/
	position: relative;
	height: 40px;
	padding: 20px;
}
.toplink { position: absolute; left: 0; top: 0; }
.menu {
	position: absolute;
	top: 15px;
	right: 0;
	z-index: 3;
}
.dropbtn {
	background-color: #28284b;
	color: rgb(255,255,255,0.7);
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
	-moz-transition: color 0.15s ease-in-out;
    -webkit-transition: color 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;
}
.dropbtn:hover { color: rgb(255,255,255,1); }
.dropdown {
	position: relative;
	display: inline-block;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 3;
	right: 0;
}
.dropdown-content a {
	color: #000;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:link, .dropdown-content a:visited {
	color: #000;
	text-decoration: none;
}
.dropdown-content a:hover {	background-color: #f1f1f1; color: #6b6efd;	}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown:hover .dropbtn {
	background-color: #6b6efd; color: #fff;
	-moz-transition: color 0.15s ease-in-out;
    -webkit-transition: color 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out;
    transition: color 0.15s ease-in-out;
}

.topnav h1 { margin: 0; padding: 0; font-size: 36px; color: #fff; }
.head {
	min-width: 1000px;
	width: 100%;
	margin: 0;
	background-color: #6b6efd;
	color: rgba(255, 255, 255, 0.75);
	background-attachment: fixed,							fixed,							fixed;
	background-image: linear-gradient(45deg, rgba(107, 165, 253, 0.4) 5%, rgba(107, 110, 253, 0.6) 30%, rgba(70, 67, 194, 0.6)), url("img/Tzolkin-Loom-of-Maya2.svg"), url("img/Universe1.png");
	background-position: center center,						center -45px,					center -70px;
	background-size: cover,							auto,							auto;
	background-repeat: repeat, no-repeat, repeat;
	overflow: hidden;
	position: relative;
}
.header {
	padding: 100px 0 100px 0;
	width: 960px;
}

#decode {
	float: left;
	width: 47%;
	z-index: 1;
	text-align: center;
}
#gregoriandate { max-width: fit-content; margin-left: auto; margin-right: auto; }
table {
  border-collapse: collapse;
}
tbody { text-align: center; }
td {
  text-align: center;
}
select {
	padding: 6px;
	border: 2px solid #ddd;
	border-radius: 4px;
	background-color: #fff;
}
select:focus { border: 2px solid black; }
input[type=text] {
	background-color: #fff;
	border-radius: 4px;
	border: 2px solid #ddd;
	padding: 6px;
	width: 40px;
}
input[type=text]:focus { border: 2px solid black; }
input[type=submit] {
	background-color: #44447a;
	color: #f1f1f1;
	border-radius: 4px;
	border: none;
	padding: 8px;
}
button[type=button] {
	background-color: #44447a;
	color: #f1f1f1;
	border-radius: 4px;
	border: none;
	padding: 8px;
	width:30px;
}

#datedisplay {
	position: relative; width: 46%; margin-left: 490px; z-index: 2; background-image: linear-gradient(45deg, rgba(107, 165, 253, 0.4) 5%, rgba(107, 110, 253, 0.6) 30%, rgba(70, 67, 194, 0.6)); padding: 20px 10px 20px 10px; border-radius: 10px;
	color: rgba(255, 255, 255, 0.7);
}
.dailykin {
	overflow: hidden;
}
.left {
	float: left;
	width: 47%;	
}
.left h2 {
	font-size: 24px;
	text-align: center;
}
.affirmation {
	font-family: "Roboto Flex", sans-serif;
	font-optical-sizing: auto;   font-weight: 400;  font-style: normal;
	font-size: 20px;
	text-align: center;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.9);
	 background-attachment: fixed,							fixed,							fixed;
	background-image: linear-gradient(45deg, rgb(0, 0, 0) 5%, rgb(135, 115, 231, 0.9) 10%, rgb(36, 40, 181, 0.85));
	background-position: center center;
	background-size: cover;
	margin: 35px auto 10px auto;
	overflow: hidden;
	position: relative; 
	border-radius: 10px;
	padding: 20px;
}
.cycles { padding-top: 20px; }
.hunabkuday { position:relative; overflow: hidden; }
.hunabkuday img {
	position: absolute;
	float: left;
	top: 50px;
}
.hunabkuday .hunabkuaffirmation {
		position: absolute;
		left: 120px;
		text-align: center;
		width: 70%;
		line-height: 1.3;
		font-size: 18px;
}
.hunabkuday .extra { position:relative; margin-top: 200px; line-height: 1.3; }
.dayoutoftime { position: relative; overflow: hidden; }
.dayoutoftime img {
	position: absolute;
	float: left;
	top: 15px;
}
.dayoutoftime .doot {
		position: absolute;
		left: 100px;
		margin-top: 25px;
		width: 75%;
		line-height: 1.3;
		text-align: center;
}
.dayoutoftime .extra { position:relative; margin-top: 140px; line-height: 1.3; }

.footer a:link, a:visited { color: rgb(215, 236, 255, 0.8); text-decoration: none; }
.footer a:hover { 
	text-decoration: underline; 
	-moz-transition: color 0.3s ease-in-out;
    -webkit-transition: color 0.3s ease-in-out;
    -ms-transition: color 0.3s ease-in-out;
	color: rgb(255,255,255,1); 
	text-underline-offset: 6px; 
}

.hunabkuday a:link, a:visited, .dayoutoftime a:link, a:visited, .cycles a:link, a:visited, .earthfamily a:link, a:visited, .chromaticclan a:link, a:visited, .codon a:link, a:visited, #rainbow-bridge-link a:link, a:visited {
	text-decoration: none;
	color: #6b6efd;
}
.hunabkuday a:hover, .dayoutoftime a:hover, .cycles a:hover, .earthfamily a:hover, .chromaticclan a:hover, .codon a:hover, #rainbow-bridge-link a:hover {
	text-decoration: underline;
	color: #6668b1;
}

.cycles p, .sealaffirmation p, .toneaffirmation p, .rootrace p, .earthfamily p, .chromaticclan p, .codon p, .psichronounit p {
	line-height: 1.3;
	margin: 5px 0 5px 0;
	padding: 0;
}
.codon .heart { line-height: 1.4; margin-top: 10px; }
.sealaffirmation p { padding: 0; margin: 0; line-height: 1.5; }
.sealaffirmation td { text-align: left; margin: 0; padding: 0; }
.cycles h3, .sealaffirmation h3, .toneaffirmation h3, .rootrace h3, .earthfamily h3, .chromaticclan h3, .codon h3, .psimembrane h3, .psichronounit h3 {
	margin: 20px 0 10px 0;
	color: #4b4ed7;
}
.purple { color: #4b4ed7; }
.codon {
	position: relative;

}
.strand {
	font-size: 16px;
	margin: 0 0 5px 0; padding: 0;
}
.runetext {
	font-size: 18px;
	position: absolute;
	left: 95px;
	color: #000;
}
.rune {
	position: relative;
	float: left;
	margin-bottom: 5px;
	left: 10px;
}

.codontext {
	font-size: 18px;
	position: relative;
	left: 36px;
	top: 80px;
	color: #000;
}
.hexagram {
	float: left;
	margin-bottom: 15px;
}
.clearfix {
	clear: both;
}
.psimembrane {
	position: relative;
}
.psimembrane .futhark {
	position: absolute;
	top: 15px;
	float: left;
	font-size: 52px;
	font-weight: bold;
	width: 60px;
	text-align: center;
	margin:10px 0 0 0; padding: 0;
}
.psimembrane .futharktext {
	position: relative;
	left: 65px;
	top: 10px;
	margin-bottom: 5px;
	margin-top: 5px;
	width: 370px;
}
.psimembrane .futharkpsi {
	padding-top: 0px;
}
.right {
	position: relative;
	margin-left: auto;
	width: 53%;
}
.right h2 {
	font-size: 24px;
	text-align: center;
}
.right h3 {
	font-size: 18px;
	font-style: italic;
	text-align: center;
	padding: 0 20px 0 20px;
}
#moonmodule h2 {
	text-align: center;
}
#timemap {
	display: grid; place-content: center;
	margin: 50 0 50 0;
}
#timemap h3,#timemap h2,#timemap p {
	text-align: center;
}
#freesynchronometer {
	display: grid; place-content: center;
	margin: 50 0 50 0;
	padding-top: 50px;
}
#freesynchronometer h3,#freesynchronometer h2,#freesynchronometer p {
	text-align: center;
}
#freesynchronometer p { line-height: 1; margin: 0; padding: 10px; }
#freesynchronometer a:link, a:visited {
	text-decoration: none;
	color: #6b6efd;
}
#freesynchronometer a:hover {
	text-decoration: underline;
	color: #6668b1;
}
.footer {
	color: rgba(255, 255, 255, 0.75);
	text-align: center;
	padding: 100px 0 100px 0;
}
.footer p {
	line-height: 1.4;
}
.bottom {
	min-width: 1000px;
	width: 100%;
	background-color: #6b6efd;
	color: rgba(255, 255, 255, 0.75);
	background-attachment: fixed,							fixed,							fixed;
	background-image: linear-gradient(45deg, rgba(107, 165, 253, 0.4) 5%, rgba(107, 110, 253, 0.6) 30%, rgba(70, 67, 194, 0.6)), url("img/Universe1.png");
	background-position: center center,						center 200px,					center center;
	background-size: cover,							auto,							cover;
	overflow: hidden;
	position: relative;
	margin: 0;
}
.container {
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
.wrapper {
	width: 960px;
}

#oracle {
	position: relative; z-index: 1; 
	height: 280px; width: 220px;
	margin: 0px auto 20px auto;
}
#oracle .guide img {position: absolute; z-index: 1; left: 72px; top: 35px; }
#oracle .antipode img {	position: absolute; z-index: 1; left: 0px;	top: 107px; }
#oracle .signature img { position: absolute; z-index: 1; left: 72px; top: 107px; }
#oracle .analog img { position: absolute; z-index: 1; left: 144px; top: 107px; }
#oracle .occult img { position: absolute; z-index: 1; left: 72px; top: 179px; }

#wavespell13year { 
	position: relative; 
	margin: 20px auto 20px auto;
}
#wavespell13year h2 {
	font-size: 24px;
	text-align: center;
}
#wavespell13year h3 {
	font-size: 18px;
	font-style: italic;
	text-align: center;
	padding: 0 20px 0 20px;
}
#wavespell { 
	position: relative; 
	height: 360px; width: 340px; 
	margin: 20px auto 20px auto;
}


#harmonicmodule { display: grid; place-content: center; }
#harmonicmodule h2 { margin-bottom:0; }
#harmonicmodule h3 { margin-bottom:40px; }
#harmonic_module { position: relative; width: 490px; }
#harmonic_module .harmonic_run {
		position: absolute; z-index: 1;
		left: 40px; top: -25px;
}
#harmonic_module .harmonic_run img { position: absolute; z-index: 1; width:  26px; height: 20px; }

#harmonic_module .seal-red {
		position: absolute; z-index: 1;
		left: 0px; top: 0px; border-left: 1px solid #b60007; border-top: 1px solid #b60007;
		width: 69px; height: 119px;	background-color: #c80008;
}
#harmonic_module .seal-red img { position: absolute; z-index: 2; left: 7px; }
#harmonic_module .input { position: relative; z-index: 1; left: 461px; top: 0px; width: 28px; height: 119px; border-right: 1px solid #b60007; border-top: 1px solid #b60007; background-color: #c80008; }
#harmonic_module .input span { postition: relative; z-index: 2; padding-right: 5px; padding-bottom: 28px; transform: rotate(-180deg); writing-mode: vertical-rl; text-shadow: 2px 2px 3px black; font-size: 16px; color: white; letter-spacing: 3px; }

#harmonic_module .seal-white {
		position: absolute; z-index: 1; 
		left: 0px; top: 120px; border-left: 1px solid #ddd;
		width: 69px; height: 120px;	background-color: #eee;
}
#harmonic_module .seal-white img { position: absolute; z-index: 2; left: 7px; }
#harmonic_module .store { position: relative; z-index: 1; left: 461px; top: 0px; width: 28px; height: 120px; border-right: 1px solid #ddd; background-color: #eee; }
#harmonic_module .store span { postition: relative; z-index: 2; padding-right: 5px; padding-bottom: 30px; transform: rotate(-180deg);text-shadow: 2px 2px 3px black;writing-mode: vertical-rl; font-size: 16px; color: white; letter-spacing: 3px; }


#harmonic_module .seal-blue {
		position: absolute;	z-index: 1; 
		left: 0px; top: 240px; border-left: 1px solid #006a9b;
		width: 69px; height: 120px;	background-color: #0079b1;
}
#harmonic_module .seal-blue img { position: absolute; z-index: 2; left: 7px; }
#harmonic_module .process { position: relative; z-index: 1; left: 461px; top: 0px; width: 28px; height: 120px; border-right: 1px solid #006a9b; background-color: #0079b1; }
#harmonic_module .process span { postition: relative; z-index: 2; padding-right: 5px; padding-bottom: 16px; transform: rotate(-180deg);text-shadow: 2px 2px 3px black;writing-mode: vertical-rl; font-size: 16px; color: white; letter-spacing: 3px; }


#harmonic_module .seal-yellow {
		position: absolute; z-index: 1; 
		left: 0px; top: 360px; border-left: 1px solid #d9bd00;
		width: 69px; height: 120px;	background-color: #ffde00;
}
#harmonic_module .seal-yellow img { position: absolute; z-index: 2; left: 7px; }
#harmonic_module .output { position: relative; z-index: 1; left: 461px; top: 0px; width: 28px; height: 120px; border-right: 1px solid #d9bd00; background-color: #ffde00; }
#harmonic_module .output span { postition: relative; z-index: 2; padding-right: 5px; padding-bottom: 22px; transform: rotate(-180deg);text-shadow: 2px 2px 3px black;writing-mode: vertical-rl; font-size: 16px; color: white; letter-spacing: 3px; }


#harmonic_module .seal-green {
		position: absolute; z-index: 1; 
		left: 0px; top: 480px; border-left: 1px solid #186500; border-bottom: 1px solid #186500;
		width: 69px; height: 119px;	background-color: #1f7106;
}
#harmonic_module .seal-green img { position: absolute; z-index: 2; left: 7px; }
#harmonic_module .matrix { position: relative; z-index: 1; left: 461px; top: 0px; width: 28px; height: 119px; border-right: 1px solid #186500; border-bottom: 1px solid #186500; background-color: #1f7106; }
#harmonic_module .matrix span { postition: relative; z-index: 2; padding-right: 5px; padding-bottom: 24px; transform: rotate(-180deg);text-shadow: 2px 2px 3px black;writing-mode: vertical-rl; font-size: 16px; color: white; letter-spacing: 3px; }



#harmonic_module .row {
		position: absolute; z-index: 2; width: 29px; height: 29px; border-left: 1px solid white; border-bottom: 1px solid white;
}
#harmonic_module .row img { position: relative; z-index: 1; overflow: hidden; left: 2px; top: 2px; }
#harmonic_module .row p {
	position: relative; 
	display: none;
	top: -10px; 
	font: 12px Arial, sans-serif, bold;
	text-align: center;
	letter-spacing: -1px; padding-right: 2px;
}

#moonmodule { display: grid; place-content: center; margin: 30px 0 30px 0; }
#moon {
	position: relative; z-index: 1; 
	height: 550px; width: 800px; padding-top: 0px; margin: 0;
}
#moonheader {
	position: relative; z-index: 1; 
	width: 800px; height: 70px; margin: 0;
}
#moonheader #nextMoon { position: absolute; right: 0; top: -5px; z-index: 1; }
#moonheader #prevMoon { position: absolute; left: 0; top: -5px; z-index: 1; }
#moonheader a:link, #moonheader a:visited { text-decoration: none; color: #6b6efd; }
#moonheader a:hover { text-decoration: underline; color: #6b6efd; }
#moonheader p { margin: 0; }
#moonheader .name { 
	position: absolute; z-index: 2; margin: 0;
	top: 20px; right: 0px;
}
#moonheader .text {
	position: absolute; z-index: 2;
	margin-left:0;
	top: 20px; left: 0px;
}
#moonheader .date {
	position: absolute; z-index: 2; letter-spacing: 2px;
	margin-left:0;
	top: 45px; left: 0px;
}
#moon .week {
	position: absolute;
	z-index: 2; top: 0px; font-size: 20px; text-align: center; color: #bbb;
	width: 99px; height: 99px; border-left: 1px solid #eee; border-top: 1px solid #eee;
}
#moon .weekday {
	position: absolute;
	z-index: 2; top: 0px;
	width: 99px; height: 99px; border-right: 1px solid #eee; border-top: 1px solid #eee; border-bottom: 1px solid #eee;
}
#moon .weekday img { position: relative; z-index: 1; top: 25px; left: 25px; height: 50px; width: 50px; }
#moon .weekday #dayname { position: absolute; z-index: 1; margin:0; top: 5px; font-size: 16px; text-align: center; color: #000; width: 100px; }
#moon .weekday #gregdayname { position: absolute; z-index: 1; margin:0; bottom: 5px; font-size: 12px; color: #bbb; text-align: center; width: 100px; }
#moon .initiate {
	position: absolute; 
	z-index: 1;
	top: 100px;
	width: 98px; height: 98px;
	background-color: #c80008;
	border: 1px solid #b60007;
}
#moon .refine {
	position: absolute; 
	z-index: 1;
	top: 200px;
	width: 98px; height: 98px;
	background-color: #eee;
	border: 1px solid #ddd;
}
#moon .transform {
	position: absolute; 
	z-index: 1;
	top: 300px;
	width: 98px; height: 98px;
	background-color: #0079b1;
	border: 1px solid #006a9b;
}
#moon .ripen {
	position: absolute; 
	z-index: 1;
	top: 400px;
	width: 98px; height: 98px;
	background-color: #ffde00;
	border: 1px solid #d9bd00;
}
#moon .row {
	position: absolute;
	z-index: 2;
	width: 99px; height: 99px;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
}
#moon .row #seal {
	position: absolute;
	z-index: 2;
	bottom: 5px;
	left: 35px;
}
#moon .row #tone {
	position: absolute;
	z-index: 2;
	bottom: 36px;
	left: 35px;
}
#moon .row #yearquarter {
	position: absolute;
	z-index: 2;
	bottom: 5px;
	left: 2px;
}
#moon .row #hunabku {
	position: absolute;
	z-index: 1; margin-bottom:10px;
	bottom: 5px;
	right: -23px;
}
#moon .row #doot {
	position: absolute;
	z-index: 1; margin-bottom:10px;
	bottom: 10px;
	right: -30px;
}
#moon .row #leapweekday {
	position: absolute; margin-top:0; top: 25px; z-index: 1; left: 20px; padding-left: 20px; font-size: 12px; color: #bbb;
}
#moon .row #moonphase { position: absolute; z-index: 2; top: 5px; right: 5px; }
#moon .row #redheptad {
	position: relative; margin-top:0; z-index: 1; padding-left: 2px; font-size: 24px; color: #c80008;
}
#moon .row #whiteheptad {
	position: relative; margin-top:0; z-index: 1; padding-left: 2px; font-size: 24px; color: #ddd;
}
#moon .row #blueheptad {
	position: relative; margin-top:0; z-index: 1; padding-left: 2px; font-size: 24px; color: #0079b1;
}
#moon .row #yellowheptad {
	position: relative; margin-top:0; z-index: 1; padding-left: 2px; font-size: 24px; color: #ffde00;
}
#moon .row #gregoriandate {
	position: absolute; margin-top:0; top: 25px; z-index: 1; padding-left: 2px; font-size: 12px; color: #000;
}
#moon .row #kin {
	position: absolute; margin:0; bottom: 5px; left: 65px; z-index: 1; padding-left: 2px; font-size: 12px; color: #000;
}