/*
COLOR PALETTE:
#F7B267
#F79D65
#F4845F
#F27059
#F25C54
LIGHT VERSION:
#FBD9B4
#FBCEB1
#F9C1AE
#F8B8AC
#F9AEAA
DARK VERSION:
#9D6C3C
#9C613A
#97533C
#934B3E
#96403C
*/

html {
  height:100%;
  width:100%;
}

body {
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;*/
  /*max-width: 1000px;*/
  /*padding-bottom:100px;*/
  text-align:justify;
  font-size:18px;
  height:100%;
}

h1,h2,h3 {
  padding-top: 10px;
  padding-bottom: 10px;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

@media only screen and (min-width: 1100px) {
  .homeOverlay {
    position: fixed;
    left: 5%;
    top: 10%;
    width: 40%;
    padding: 10px;
    background-color: white;
    opacity: 0;
    animation: fadeIn 2s forwards, float 2s ease-in-out forwards;
  }
  .homeFooter {
    position: fixed;
    bottom: 0%;
    background-color: white;
    font-size: 10px;
  }
  p {
    margin: 0;
  }
}

@media only screen and (max-width: 1100px) {
  .homeOverlay {
    background-color: white;
    margin: 10px;
    padding: 5px;
  }
  .homeFooter {
    bottom: 0%;
    width: auto;
    background-color: white;
    font-size: 10px;
    margin: 10px;
  }
  p {
    margin: 0;
  }
}

div.banner {
  width:100%;
  height:100%;
  overflow:hidden;
}

div.banner img {
  height:100%;
}

div.content {
  /*max-width:1000px;*/
  width: calc(90% - 70px);
  float:right;
  padding: 10px;
  margin: 10px;
  background-color:white;
}

/*@media only screen and (max-width: 1000px) {
  div.content {
    width: 90%;
  }
}*/

div.center {
  width: calc(100% - 60px);
  padding: 30px;
  float: none;
  margin:auto;
}

div.callout {
  border: 2px solid #F4845F;
  border-radius: 5px;
  padding: 10px;
  background-color:white;
  margin: 10px;
}

div.noteThemeOrange {
  color: black;
  border-left: 8px solid #F4845F;
  background-color: #FBD9B4;
  padding: 10px;
  overflow:auto;
  margin:10px;
}

div.noteThemeRed {
  color: black;
  border-left: 8px solid #F25C54;
  background-color: #F9AEAA;
  padding: 10px;
  overflow:auto;
  margin:10px;
}

div.sidebar {
  width:10%;
  background-color:#934B3E;
  float:left;
  margin: 10px;
  text-transform:uppercase;
  color: #dddddd;
  text-align:left;
  font-size:10px;
  /*position:fixed;*/
}

div.sidebar span, div.sidebar a {
  display:block;
  padding:5px;
  color: #dddddd;
}

div.sidebar span {
  background-color: #F27059;
  color: #eeeeee;
}

div.sidebar a {
  font-weight:bold;
  font-size:12px;
  text-decoration:none;
}

div.sidebar a:hover {
  background-color: #F8B8AC;
  color: #333333;
}

div.sidebar span.defaultBG {
  background-color: #934B3E;
}

@media only screen and (max-width: 1100px) {
  div.sidebar {
    width: 95%;
  }
  div.content {
    float: none;
    width: 95%;
  }
}

table {
  width: 100%;
}

th,
td {
  border: 2px solid #F79D65;
  border-radius: 5px;
  text-align: left;
  transition:transform .2s;
  background-color: white;
  padding:5px;
}

th {
  background-color: #F79D65;
  color: white;
}

nav {
  background-color: #96403C;
  position: sticky;
  width: 100%;
  top: 0;
}

/*nav {
  position: sticky;
  top: 0;
  left:0;
  width: 100%;
  background-color: #96403C;
  max-height:41.5px;
  overflow:hidden;
}

nav a, nav span.title {
  display: inline-block;
  color: #dddddd;
  text-align: center;
  padding: 10px;
  text-decoration: none;
}

nav span.title {
  font-weight:bold;
}

nav a.right {
  float:right;
}

nav a:hover, nav a:active{
  background-color: #F9AEAA;
  color: #333333;
}

nav a.dd-content {
  display:none;
}

nav a.dropdown:hover nav a.dd-content {
  display:block;
}

table.noborder td, table#questions td {
  border: none;
  text-align:left;
}*/

span.mtHeading {
  font-size:14px;
  font-weight:bold;
  color:#F79D65;
}

span.mtExp {
  font-size:14px;
  font-weight:bold;
  color:#F79D65;
}

span.sbLarge {
  font-weight:bold;
  font-size:14px;
}

span#minutes, span#seconds, span#score, span#hps, span.sbHuge {
  display:inline;
  font-size:20px;
  font-weight: bold;
}

button,
input,
textarea,
select,
.window {
  padding: 5px;
  background-color: white;
  border: 1px solid #F79D65;
  border-radius: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size:16px;
}

button, input[type="submit"] {
  color: white;
  background-color: #F79D65;
  padding: 6px 12px 6px 12px;
}

input, textarea, select, .window {
  width: 100%;
}

button:hover, input[type="submit"]:hover {
  background-color: white;
  color: #F79D65;
}

button, input[type="submit"] {
  width: auto;
}

input[type="radio"], input[type="checkbox"] {
  width: auto;
}

textarea.codeTA {
  height: 500px;
  font-family: ui-monospace, Menlo, Monaco, "Cascadia Mono", "Segoe UI Mono", "Roboto Mono", "Oxygen Mono", 
  "Ubuntu Mono", "Source Code Pro","Fira Mono", "Droid Sans Mono", "Consolas", "Courier New", monospace;
}

.window {
  overflow: scroll;
}

footer {
  /*max-height:100px;
  background-color: #F25C54;*/
  color: gray;
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  overflow: auto;
  margin-top:30px;
}

.success {
  font-weight: bold;
  font-size: 14px;
  color: #52AA5E;
}

.danger {
  font-weight: bold;
  font-size: 14px;
  color: #CA3C25;
}

table#questions td {
  text-align: left;
  vertical-align: top;
}

div.row {
  margin-top:10px;
  margin-bottom:10px;
}