@charset "UTF-8";


html, body {
  margin:0;
  padding:0;
}

body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* for the D3 stuff to be in */
svg {
  width: 100%;
  height: 80%;
}
body {
    /*background-color: #d0e4fe;*/
  /*background-color: #6EE4E582;*/
  /*background-color: white;*/
  background-color: #ced6d682;
  padding-bottom: 40px;
}
/*
div {
    border: 2px solid #a1a1a1;
    padding: 10px 10px;
    background: #dddddd;
    width: 300px;
    border-radius: 25px;
}
*/

#formcontainer p {
    /*font-family: "Times New Roman";*/
    font-size: 25px;
}

.offering-container {
  width:100%;
  display:flex;
  justify-content:center;
}

.offering {
  background:white;
  border-radius:10px;
  width:auto;
  padding: 15px;
}
.offering h2 {
  text-align: center;
}
.offering h1 {
  display: inline;
}
.offering h3 {
  display: inline;
}
.offering ul {
  list-style-type: none;
  /*align-vertical:middle;
  display: table;*/
  display: contents;
  margin: 0 auto;
}
.divleft {
  margin:30px;
  float:left;
}
.divright {
  margin:30px;
  float:right;
}
.purchase-button {
  display:inline-block;
  /*align-vertical:middle;*/
  padding: 8px 16px;
  font-size: 16px;
  font-weight: bold;
  border: 0px solid blue;
  background: limegreen;
  /*border-radius: 15px;*/
  border-radius: 5px;
}
.purchase-button:hover {
  background: mediumseagreen!important;
  /*border: 1px solid black;*/
}
.nav-button {
  border-radius: 5px;
  border: 0px;
  font-size: 20px;
  padding: 6px 10px;
  background: deepskyblue;
}
.nav-button:hover {
  /*background: #00bcd4;*/
  background: #00abe5;
}

#seasons {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 94%;
  align: center;
  margin-left: auto;
  margin-right: auto;
  /*margin: 0px 10px 0px 10px;*/
}

#seasons table {
  border-radius: 25px;
}

#seasons td, #seasons th {
  border: 1px solid #ddd;
  padding: 8px;
}

#seasons tr:nth-child(even){background-color: #f2f2f2;}

#seasons tr:hover {background-color: #ccc;}

#seasons th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  /* background-color: #04AA6D; */
  background-color: black;
  color: white;
}

#detail_table {
  font-size: 1em;
  width:100%;
}

#detail_table tr:nth-child(odd){background-color: lightgrey;}
#detail_table tr:nth-child(even){background-color: lightyellow;}

div.blurb {
	margin: 20px 50px 20px;
	background: white;
	border-radius: 10px;
	padding: 0 1.3em;
	width: 80%;
  font-size: 1.3em;
}

div.right_blurb {
  float: left;
}

div.left_blurb {
  float: right;
}

div.tooltip_formula {
	/*background: #eeeded;*/
  background: black;
  color: white;
	border-radius: 10px;
	padding: 5px;
  white-space: pre;
  font-family: monospace;
  /*font-size: .9em;*/
}


div.nav {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  /* background:  #d0e4fe; */
  /*background: #9900FF;*/
  /*background: #03A9F4;*/
  /*background: #55b3dd;*/
  background: white;
  width: none;
  /* padding: 15px; */
  /*     top right bottom left */
  margin: 0px 0px 20px 0px;
}

div.nav a:hover {
  color: #444;
  /*font-weight: bold;*/
}

div.nav a {
  color:black;
  font-family: Verdana, Geneva, sans-serif;
}

div.nav a:link {
  text-decoration: none;
  font-size: 50px;
  color: black;
  display: inline-block;
  vertical-align: middle;
}

div.nav ul {
  text-align: left;
  padding:5px 5px 5px 10px;
}

div.nav li {
  display: inline-block;
  margin-right: 30px;
  font-color: black;
}

#formcontainer {
  border: 2px solid #lightgrey;/*#a1a1a1;*/
  padding: 20px 20px 20px 20px;
  /*background: #dddddd;*/
  background: white;
  min-width: 30em;
	width: fit-content;
  border-radius: 25px;
  /* margin-left: 4em; */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0px;
  padding-left: 2em;
}

#formcontainer form {
  margin-left: 2em;
	margin-right: 2em;
}

#formcontainer input[type="text"], #formcontainer input[type="password"] {
  border-radius: 5px;
  border-color: lightgrey;
  font-size: 20px;
}
/*not([type="submit"]):not([type="file"]) {*/
#formcontainer input {
  margin: 5px;
}

.connect-cloud-form-container input[type="text"], .connect-cloud-form-container input[type="password"] {
  width: 20em;
}

.form-submit-button {
  font-size: 16px;
  font-weight: bold;
  border: 1px solid black;
  border-radius: 5px;
  background: skyblue;
  padding: 8px 16px;
}

div.footer {
  /* position: fixed; */
  bottom: 0px;
	text-align: center;
  width: 100%;
  /* width: 100%; */
  /* height: 80px; */
}
/*
div.footer div {
  position: absolute;
  bottom: 5px;
  background-color: green;
}
*/

.grid {
  margin-right: 100px;
  margin-left: 100px;
  display: grid;
  grid-gap: 100px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid div {
  width: 100px;
}

.grid img {
  width: 100%;
}

.accountDiv {
  background: white;
  width: fit-content;
  border-radius: 5px;
  margin: auto;
  padding: .5em;
}

.accountDiv td {
  white-space: nowrap;
	padding: .5em;
}

.accountButton {
  background: lightgrey;
  color: black;
  border-radius: 5px;
  text-align: center;
  border: 0px;
  padding: 3px 6px;
}

.accountSubscribeButton {
  background: limegreen;
  color: black;
  border-radius: 5px;
  font-weight: bold;
  border: 0px;
  padding: 6px 12px;
}

.accountSubscribeButton:hover {
  background: mediumseagreen!important;
}

.accountButton:hover {
  background: grey;
  /*color: white;*/
}

/* tree stuff */

  #controls {
    /* position: fixed; */
    left: 0px;
    width: 20%;
    top: 0px;
    height: 10%;
  }
  
  #chart {
    /* position: fixed; */
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  }
  
  path.link {
    fill: none;
    stroke: #c5c5c5;
    stroke-width: 1.0px;
  }
  
  circle {
    fill: #ccc;
    stroke: #fff;
    stroke-width: 1.5px;
  }
  
  text {
    fill: #000000;
    font: 11px sans-serif;
    pointer-events: none;
  }
  
  .ingoing {
    stroke: blue!important;
    stroke-width: 1.5px!important;
  }
  
  .outgoing {
    /*stroke: #FA1209!important;*/
    stroke : red!important;
    stroke-width: 1.5px!important;
  }
  
  .selected {
    stroke: #000000!important;
    stroke-width: 1.5px!important;
  }

div.tooltip-node {
     position: absolute;
     text-align: left;
     padding: .5rem;
     background: #FFFFFF;
     color: #313639;
     border: 1px solid #313639;
     border-radius: 8px;
     pointer-events: none;
     font-size: 0.75rem;
     white-space: pre;
}

.node rect {
  stroke: #333;
  fill: #fff;
}

.edgePath path {
  stroke: #333;
  fill: #333;
  stroke-width: 1.5px;
}

.node text {
  pointer-events: none;
}

/* This styles the title of the tooltip */
.tooltip-node .name {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #60b1fc;
  margin: 0;
}

/* This styles the body of the tooltip */
.tooltip-node .description {
  font-size: 1.2em;
  padding: .5rem;
  white-space: pre;
	margin-block-start: 0px;
	margin-block-end: 0px;
}
