@charset "utf-8";
/*
**
** tarot.css  Mystic House 2019-2021
**
*/

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-color: #000000;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #FFFFFF;
}

h1 {
  margin: 5px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 1.82em;
  color: #FFFFFF;
}
h2 {
  margin: 5px;
  padding-top: 3px;
  padding-right: 0px;
  padding-bottom: 4px;
  padding-left: 0;
  font-size: 1.5em;
  color: #FFFFFF;
}
h3 {
  margin: 0;
  padding-top: 5px;
  padding-right: 0px;
  padding-bottom: 3px;
  padding-left: 0;
  font-size: 1.2em;
  color: #FFFFFF;
}


/*#branding__slogan {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 0.929em;
	margin-top: 7px;
	word-spacing: 0.1em;
	font-style: italic;
}*/

#container {
	width: 100%;
	/*background-color: #07549a;*/
  background-image: linear-gradient(to bottom, #050145 0%, #0db6fe 100%);
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}

#header {
	background-color: #07549a;
	padding: 10px;
	/*background-image: linear-gradient(to bottom, #050145 0%, #0db6fe 100%);*/
	background-image: url(https://mystichouse.com/images/star_field_H150.png);
	font-family: Arial, Helvetica, sans-serif;
	background-position:center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
	height: auto;
	color: #ffffff;
  text-shadow: 2px 2px 5px #000000;
	margin: 0;
}

#mystic-globe {
  padding: 0;
  width: auto;
  height: auto;
  }

#mystic-globe img {
  max-width: 300px;
  height: auto;
}

#branding__slogan {
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 150%;
  margin-top: 7px;
  margin-bottom: 7px;
  word-spacing: 0.2em;
  font-style: italic;
}

.address {
  padding: 5px;
}

#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 0;
	font-size: 1.82em;
	color: #fbfbfb;
}
#header a:link, #header a:visited {
	color:#fbfbfb;
	text-decoration:none;
	cursor: pointer;
}

#header a:hover {
	color:#f38303;
  font-weight: bold;
	text-decoration:none;
	cursor: pointer;
}

/* TOP NAVIGATION from w3school.com */
.topnav {
  overflow: hidden;
  background-color: rgb(144, 1, 201);
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #db00f8;
  color: black;
}

.topnav a.active {
  background-color: #4358b9;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

/* Tool Tips from w3school.com */
/* html example
<div class="tooltip">Hover over me
  <span class="tooltiptext">Tooltip text</span>
</div>
*/

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 150%;
  left: 50%;
  margin-left: -60px;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: black transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* End Tool Tip */

/* Book specific styles */
/* Title */
.book-heading {
  margin: 0;
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 1.5em;
  color: #FFFFFF;
}
.book-sub-heading {
  font-size: 1.2em;
  font-style: normal;
  font-weight: bold;
  color: #000000;
}
.book-cover-image {
  background-color: white;
  float: left;
  width: auto;
  height: auto;
  padding: 10px 20px;
  margin: 10px;
  text-align: center;
  border: solid 1px #FFFFFF;
  box-shadow: -5px 5px 11px 1px black
  }
.book-contents {
  margin:10px 5px 5px 250px;
  padding: 0 10px;
  font-size:14px;
  text-decoration:none;
  }
.book-contents a, .book-contents a:visited {
  text-decoration:none;
  color: #FFFFFF;
  cursor:pointer;
}
.book-contents a:hover {
  text-decoration:underline;
}
.author {
  font-size: 14px;
  font-style: italic;
  color: #FFFFFF;
}

  /* Remove default bullets */
ul, #understanding_the_tarotUL {
  list-style-type: none;
}

#understanding_the_tarotUL {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
  }

#tarot_spreadsUL {
  margin: 0;
  padding: 0;
}

.caret {
  cursor: pointer;
  -webkit-user-select: none; /* Safari 3.1+ */
  -moz-user-select: none; /* Firefox 2+ */
  -ms-user-select: none; /* IE 10+ */
  user-select: none;
}

.caret::before {
  content: "\25B6";
  color: black;
  display: inline-block;
  margin-right: 6px;
}

.caret-down::before {
  -ms-transform: rotate(90deg); /* IE 9 */
  -webkit-transform: rotate(90deg); /* Safari */
  transform: rotate(90deg);
}

.nested {
  display: none;
}

.active {
  display: block;
}

#top {
	background-color: #07549a;
	padding: 0;
	background-image: linear-gradient(to bottom, #050145 0%, #0db6fe 100%);
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	/* background-position:center top;
    background-repeat: no-repeat;
    background-size: cover; /* Yes - This is a valid value*/
    width: 100%;
	height: 150px;
	color: #fbfbfb;
	margin: 0;
}
/* Vertical Navigation Bar */
#sidebar1 ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	background-color: #0099FF;
	/*background-image: linear-gradient(to bottom, #050145 0%, #0db6fe 100%);*/
	border: 1px solid #050145;
}
#sidebar1 li a {
	display: block;
	color: #FFFFFF;
	padding: 8px 16px;
	text-decoration: none;
	border-bottom: 1px solid #050145
}
#sidebar1 a:hover {
	background-color: #000066;
	color: #FF9900;
}
#sidebar1 a:active {
	background-color: #0099FF;
	color: #FFFFFF;
}
#sidebar1 li:last-child {
	border-bottom: none;
}


/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width.
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the "#sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: 12em; /* since this element is floated, a width must be given */
	background-color: #0099FF; /* the background color will be displayed for the length of the content in the column, but no further */
	/*background-image: linear-gradient(to bottom, #0db6fe 0%, ##66CCFF 100%);*/
	padding: 15px 0; /* top and bottom padding create visual space within this div  */
	border: 1px solid #050145;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Main Content Area - Set defaults here in case something else gets broke - Put over rides in appropriate file like reading, book, etc. */
#mainContent {
	margin: 0 10px; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	color:#ffffff;
  text-shadow:-2px 2px 5px #000000;
}
#mainContent h1 {
  margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
  padding-top: 10px;
  padding-right: 0px;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 1.82em;
  color: #FFFFFF;
}
#mainContent h2 {
  margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
  padding-top: 8px;
  padding-right: 0px;
  padding-bottom: 4px;
  padding-left: 0;
  font-size: 1.5em;
  color: #FFFFFF;
}
#mainContent h3 {
  margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
  padding-top: 5px;
  padding-right: 0px;
  padding-bottom: 3px;
  padding-left: 0;
  font-size: 1.2em;
  color: #FFFFFF;
}
#mainContent p {
	display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
	text-align:left;
	color:#ffffff;
}
#mainContent a,  #mainContent a:visited{
  text-decoration:underline;
  color: #FFFFFF;
  cursor:pointer;
}
#mainContent a:hover {
    display:inline-block;
	text-decoration:none;
	background-color:#000066;
	color:#FF9900;
	cursor:pointer;
}

#book-nav {
	margin: 10px 20px 10px 13em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	color:#000066;
	overflow-x:auto;
}

#book-nav a {
    text-decoration: none;
    display: inline-block;
    padding: 8px 16px;
}

#book-nav a:hover {
    background-color: #000066;
	color: #FF9900;
}

.previous {
    background-color: #0099FF;
    color: white;
	text-align: left;
}

.up {
    background-color: #0099FF;
    color: white;
	text-align: center;
}

.next {
    background-color: #0099FF;
    color: white;
	text-align: right;
}

.round {
    border-radius: 50%;
}

.copyright {
    color: inherit;
	font-size: 12px;
	font-style: normal;
}

#quick_links {
  text-decoration:none;
}

.quick_link a, .quick_link a:visited{
  display:block;
  text-decoration:none;
  text-align: inherit;
  margin:0;
  padding:0;
  width: auto;
  border: none;
}

#footer {
  background-color: #07549a;
	padding: 10px;
	/*background-image: linear-gradient(to bottom, #050145 0%, #0db6fe 100%);*/
	background-image: url(https://mystichouse.com/images/star_field_H150.png);
	font-family: Arial, Helvetica, sans-serif;
	background-position:center top;
    background-repeat: no-repeat;
    background-size: cover;
    width: auto;
	height: auto;
	color: #ffffff;
  text-shadow: 2px 2px 5px #000000;
	margin: 0;
}

#footer h3 {
    color: #F5F5F5;
}

#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.card-meanings {
  display:flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-around;
}
.card-normal {
display:block;
width:100%;
height:auto;
overflow:hidden;
padding:1em;
margin:10px;
}
.card-title {
  width:auto;
  height:auto;
  margin:0;
/*  color:#0066FF; */
  font-size:130%;
  font-weight:bold;
  text-align:center;
}
.card-image {
  background-color:white;
  float:left;
  width:auto;
  height:auto;
  padding:5px;
  margin:10px;
  text-align:center;
  border:solid 1px #FFFFFF;
  box-shadow: -5px 5px 11px 1px black
}
.card-meaning {
display: block;
}
.card-reversed {
display:block;
width:auto;
height:auto;
overflow:hidden;
padding:1em;
margin:10px;
}

.moon-phase {
float:right;
width:200px;
height:auto;
padding:5px;
background-color:#000000;
font-size:80%;
text-align:justify;
}

/* Flexbox Display for images, cards and glyphs */

.display-box {
  display:flex;
  flex-direction:column;
  flex-wrap: wrap;
  }

.display-box-image {
  padding:10px;
  float:left;
  }

.image100  {
  background-color:white;
  float:left;
  width:auto;
  height:auto;
  padding:5px;
  margin:10px;
  text-align:center;
  border:solid 1px #FFFFFF;
  box-shadow: -5px 5px 11px 1px black;
  }

.image-name  {
  width:auto;
  height:auto;
  margin:0;
/*  color:#0066FF; */
  font-size:130%;
  font-weight:bold;
  text-align:center;
  }

  /* These classes were part of the generated privacy policy for the Mystic House.*/
/* Most paragraphs and definitions */
.innerText  {
  padding:2;
  text-decoration:none;
  text-align:left;
  font-size:90%;
  font-weight:normal;
  color:#000000;
  }


/*Headings */
.grayText  {
  padding:0;
  text-decoration:none;
  text-align:left;
  font-size:100%;
  font-weight:bold;
  color:#666666
  }
/*Special or Attention! Could be red or orange */
.blueText  {
  padding:0;
  text-decoration:none;
  text-align:left;
  font-size:100%;
  font-weight:bold;
  color:#FF6600;
  }

.shop_banner {
  color: #F5F5F5;
  width: 100%;
  height: auto;
  margin: 10px;
}
