@-webkit-keyframes dd {
  0% {
    -webkit-transform: rotateY(0deg) scale(0);
  }
  100% {
    -webkit-transform: rotateY(360deg) scale(1);
  }
}

.featherlight .featherlight-close-icon {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  border: 0;
  padding: 0;
  -webkit-box-shadow: inset 0px 0px 0px 3px #fff;
  box-shadow: inset 0px 0px 0px 3px #fff;
  line-height: 30px;
  width: 30px;
}

.featherlight .featherlight-close-icon:hover {
  border-color: white;
}

body {
  border: 0;
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 0;
}

body h1 {
  font-size: 28px;
  text-shadow: 2px 2px 4px #000000;
}

html {
  height: -webkit-fill-available;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000e4e+0,2a0038+25,000e4e+50,2a0038+75,000e4e+100 */
  background: #000e4e;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, left bottom, from(#000e4e), color-stop(25%, #2a0038), color-stop(50%, #000e4e), color-stop(75%, #2a0038), to(#000e4e));
  background: linear-gradient(to bottom, #000e4e 0%, #2a0038 25%, #000e4e 50%, #2a0038 75%, #000e4e 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000e4e', endColorstr='#000e4e',GradientType=0 );
  /* IE6-9 */
}

.button {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

.button:hover {
  border-color: white;
}

table {
  border: 2px solid #11738e;
  border-collapse: collapse;
  margin: auto;
}

table td, table th {
  border: 2px solid #11738e;
  padding: 10px;
  vertical-align: top;
  color: #fff;
}

table td ul, table th ul {
  list-style: disc outside none;
}

table th {
  font-weight: bold;
  background-color: #b5d3d9;
  color: #000;
  border-bottom: 4px solid #11738e;
  text-align: center;
}

table .tdhead {
  text-align: left;
  font-weight: bold;
}

table tr:nth-child(odd) {
  background-color: #00627d;
}

table tr:nth-child(even) {
  background-color: #00516c;
}

table .subrowHeader {
  border-bottom: 0;
}

table .subRow .header {
  padding-left: 4%;
  background-color: #00627d;
  text-align: left;
  border-left: 0;
  border-top: 0;
  position: relative;
}

table .subRow .header.bottomBorder:before {
  content: "";
  position: absolute;
  right: -3px;
  bottom: 0;
  height: 1px;
  width: 85%;
  /* or 100px */
  border-bottom: 3px dashed #fff;
}

table .subRow .content {
  background-color: #00627d;
  padding-right: 4%;
  text-align: left;
  border-right: 0;
  border-top: 0;
  position: relative;
}

table .subRow .content.bottomBorder:before {
  content: "";
  position: absolute;
  left: -4px;
  bottom: 0;
  height: 1px;
  width: 96%;
  /* or 100px */
  border-bottom: 3px dashed #fff;
}

table .subRow .content, table .subRow .header {
  border-top: 0;
  border-bottom: 0;
}

table .leftAlign {
  text-align: left;
}

/*
.vidHolder
{
    z-index: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0px 0px 40px 5px rgba(0,0,0,0.3); 
    box-shadow: 0px 0px 40px 5px rgba(0,0,0,0.3);
}*/
.vidHolderContainer {
  position: fixed;
  width: 100%;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 2;
}

.vidHolderCover {
  position: fixed;
  width: 100%;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  z-index: 3;
}

.vidHolder {
  min-width: 100%;
  position: fixed;
  left: 50%;
  /* % of surrounding element */
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /* % of current element */
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  z-index: 4;
}

.vidHolder iframe {
  width: 100vw;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
}

.initialBG {
  background-image: url("../img/initialBG.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.modal {
  display: none;
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
}

.introModal {
  display: none;
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
  background-color: rgba(0, 0, 0, 0);
  border: 0px solid #00405b;
}

.introModal .introContent {
  margin-top: 20px;
  padding: 15px;
  background-color: #11738e;
  border: 5px solid #00405b;
}

#chapterSelectBox h1 {
  margin-top: 0px;
}

#chapterSelectBox .button {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}

#chapterSelectBox .button:hover {
  border-color: white;
}

.videoModal iframe {
  width: 100%;
  height: 100%;
}

.videoModal .featherlight-content {
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
  display: inline-block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  background-color: #11738e !important;
  padding: 0px !important;
  margin: 0;
}

#intro {
  max-width: 1024px;
}

#intro h1 {
  font-size: 60px;
  font-family: piepie, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #d91179;
}

#intro .introText {
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#intro .introText img {
  width: 18%;
  height: 18%;
}

#intro .introText p {
  font-size: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  /* new */
  text-align: left;
  margin: 0px;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 10px;
  text-shadow: 2px 2px 5px #000000;
}

@media only screen and (max-width: 775px) {
  #intro .introText {
    display: block;
  }
}

#intro .programOverviewBox {
  background-color: #66c8e3;
  color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 10px;
  width: auto;
  font-weight: bold;
}

#intro .programOverviewBox a {
  color: #000;
}

#intro .grantorbox {
  background-color: #66c8e3;
  color: #000;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
}

#intro .orientationWarning {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  text-align: left;
  color: #000;
  margin-bottom: 10px;
  text-align: center;
  font-weight: bold;
}

#intro .orientationWarning i {
  font-size: 30px;
  margin: 5px;
}

#instructionBox, .instructionText {
  font-size: 20px;
}

#instructionBox ul, .instructionText ul {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  list-style: none;
}

#instructionBox li, .instructionText li {
  text-align: left;
  color: #000;
  padding: 4px;
}

#instructionBox li i, .instructionText li i {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

#instructionBox li i:hover, .instructionText li i:hover {
  border-color: white;
}

.featherlight .featherlight-content {
  background-color: rgba(0, 0, 0, 0);
  padding: 25px;
  text-align: center;
  border-bottom: 0px;
}

.shinyButton {
  background-color: #d91179;
  background-image: linear-gradient(135deg, #168fb6 0%, #d91179 100%, #d91179 100%);
  background-image: linear-gradient(135deg, #d91179 0%, #11738e 100%);
  -webkit-box-shadow: 0 3px 47px rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 47px rgba(0, 0, 0, 0.2);
  border: 2px solid black;
  color: white;
  padding: 10px 25px;
  text-align: center;
  display: inline-block;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  cursor: pointer;
  text-shadow: 2px 2px 1px #000000;
}

.button-text {
  text-transform: uppercase;
  display: block;
  -webkit-transform: translateZ(30px) scale(0.7);
  transform: translateZ(30px) scale(0.7);
  font-size: 30px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.controlButtons {
  position: fixed;
  bottom: 5px;
  right: env(safe-area-inset-right);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  z-index: 5;
}

.controlButtons .button {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  font-size: 30px;
  margin-right: 5px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  padding: 5px 15px;
  min-width: 0px;
  white-space: nowrap;
}

.controlButtons .button:hover {
  border-color: white;
}

#recordsBox {
  max-width: 800px;
}

#recordsBox .tabs {
  text-align: left;
}

#recordsBox .tabs .tab {
  font-weight: bold;
  background-color: #168fb6;
  display: inline-block;
  padding: 5px;
  border: 2px solid black;
  border-bottom: 0px solid black;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

#recordsBox .tabs .tab.inactive {
  background-color: #11738e;
  cursor: pointer;
}

#recordsBox .tabContentHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
}

#recordsBox .tabContentHolder #hopiC {
  font-size: 16px;
}

#recordsBox .tabContentHolder .tabContent {
  text-align: left;
  border: 2px solid black;
  padding: 10px;
  background-color: #fff;
  color: #000;
  display: block;
  /* undo "display: none;" */
  visibility: visible;
  margin-right: -100%;
  width: 100%;
}

#recordsBox .tabContentHolder .tabContent div {
  margin-bottom: 10px;
}

#recordsBox .tabContentHolder .tabContent h3 {
  margin-top: 0px;
}

#recordsBox .tabContentHolder .tabContent table {
  margin: auto;
}

#recordsBox .tabContentHolder .tabContent.inactive {
  visibility: hidden;
}

#points {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  position: fixed;
  top: -3px;
  left: env(safe-area-inset-left);
  cursor: default;
  z-index: 5;
}

#points:hover {
  border-color: white;
}

#debug {
  display: none;
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 5;
}

#debug:hover {
  border-color: white;
}

#debug .skipButton {
  text-decoration: underline;
}

#question .answerChoices .answer, #bonusQuestion .answerChoices .answer {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  font-size: 20px;
  margin-bottom: 15px;
}

#question .answerChoices .answer:hover, #bonusQuestion .answerChoices .answer:hover {
  border-color: white;
}

#question .answerChoices .answer .answerNumber, #bonusQuestion .answerChoices .answer .answerNumber {
  float: left;
  font-weight: bold;
  margin-right: 15px;
}

#question .answerChoices .answer.selected, #bonusQuestion .answerChoices .answer.selected {
  border-color: #0ff;
}

#question .answerChoices .answer.wrong, #bonusQuestion .answerChoices .answer.wrong {
  border-color: #a00;
}

#question .answerChoices .answer.wrong::after, #bonusQuestion .answerChoices .answer.wrong::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f057";
  color: #a00;
  float: right;
}

#question .answerChoices .answer.right, #bonusQuestion .answerChoices .answer.right {
  border-color: #0a0;
}

#question .answerChoices .answer.right::after, #bonusQuestion .answerChoices .answer.right::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f058";
  color: #0a0;
  float: right;
}

#question .bonusPointsHeader h2, #bonusQuestion .bonusPointsHeader h2 {
  margin-bottom: 5px;
}

#question .timedBonusPoints, #bonusQuestion .timedBonusPoints {
  width: 100%;
  height: 30px;
  border-radius: 15px;
  border: 3px solid #00405b;
}

#question .timedBonusPoints .timedBonusPointsFill, #bonusQuestion .timedBonusPoints .timedBonusPointsFill {
  width: 0%;
  height: 23px;
  border-radius: 10px;
  background-color: #0a0;
  -webkit-transition-property: width;
  transition-property: width;
  -webkit-transition-duration: 0.75s;
          transition-duration: 0.75s;
}

#question .timedBonusPoints .timedBonusPointsText, #bonusQuestion .timedBonusPoints .timedBonusPointsText {
  text-align: center;
  font-weight: bold;
  width: 100%;
  margin-top: -23px;
}

#question .continueButton, #question .checkAnswersButton, #bonusQuestion .continueButton, #bonusQuestion .checkAnswersButton {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}

#question .continueButton:hover, #question .checkAnswersButton:hover, #bonusQuestion .continueButton:hover, #bonusQuestion .checkAnswersButton:hover {
  border-color: white;
}

#question .incorrectAnswerBox, #question .correctAnswerBox, #question .previousChoiceBox, #bonusQuestion .incorrectAnswerBox, #bonusQuestion .correctAnswerBox, #bonusQuestion .previousChoiceBox {
  margin-bottom: 15px;
}

#question .incorrectAnswerBox h3, #question .correctAnswerBox h3, #question .previousChoiceBox h3, #bonusQuestion .incorrectAnswerBox h3, #bonusQuestion .correctAnswerBox h3, #bonusQuestion .previousChoiceBox h3 {
  margin-bottom: 5px;
  text-align: left;
  text-shadow: 2px 2px 1px #000000;
}

#question .incorrectAnswerBox .correctAnswer, #question .incorrectAnswerBox .prevChoice, #question .correctAnswerBox .correctAnswer, #question .correctAnswerBox .prevChoice, #question .previousChoiceBox .correctAnswer, #question .previousChoiceBox .prevChoice, #bonusQuestion .incorrectAnswerBox .correctAnswer, #bonusQuestion .incorrectAnswerBox .prevChoice, #bonusQuestion .correctAnswerBox .correctAnswer, #bonusQuestion .correctAnswerBox .prevChoice, #bonusQuestion .previousChoiceBox .correctAnswer, #bonusQuestion .previousChoiceBox .prevChoice {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  cursor: default;
}

#question .incorrectAnswerBox .correctAnswer:hover, #question .incorrectAnswerBox .prevChoice:hover, #question .correctAnswerBox .correctAnswer:hover, #question .correctAnswerBox .prevChoice:hover, #question .previousChoiceBox .correctAnswer:hover, #question .previousChoiceBox .prevChoice:hover, #bonusQuestion .incorrectAnswerBox .correctAnswer:hover, #bonusQuestion .incorrectAnswerBox .prevChoice:hover, #bonusQuestion .correctAnswerBox .correctAnswer:hover, #bonusQuestion .correctAnswerBox .prevChoice:hover, #bonusQuestion .previousChoiceBox .correctAnswer:hover, #bonusQuestion .previousChoiceBox .prevChoice:hover {
  border-color: white;
}

#question .correctAnswerBox h3, #bonusQuestion .correctAnswerBox h3 {
  text-align: center;
}

#question .feedback, #bonusQuestion .feedback {
  background-color: #fff;
  color: #000;
  padding: 10px;
  margin-bottom: 15px;
  margin-top: 15px;
  border-radius: 5px;
}

#question .feedback h3, #bonusQuestion .feedback h3 {
  text-align: left;
  margin-top: 0px;
}

#questionJumpBox {
  padding: 5px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  background-color: rgba(1, 1, 1, 0);
}

#questionJumpBox div {
  cursor: pointer;
  padding: 5px;
  border: 1px solid black;
  background-color: white;
  color: #000;
}

#reviewSummary {
  font-weight: bold;
}

#reviewSummary #improved, #reviewSummary #unimproved, #reviewSummary #passed {
  display: none;
  margin-bottom: 15px;
  margin-top: 15px;
}

#reviewSummary .button {
  display: block;
}

#endingInfo {
  font-size: 20px;
}

#endingInfo a {
  font-weight: bold;
  color: #fff;
}

#endingInfo .grantorbox {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 5px;
  text-align: left;
  color: #000;
  margin-bottom: 10px;
  font-size: 16px;
  text-align: center;
  font-style: italic;
  font-weight: bold;
  margin-top: 20px;
}

#endingInfo #questionBottomButtons {
  margin-bottom: 35px;
  margin-top: 35px;
}

#endingInfo #prevQButton, #endingInfo #facultyVidButton {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  width: auto;
  display: inline-block;
}

#endingInfo #prevQButton:hover, #endingInfo #facultyVidButton:hover {
  border-color: white;
}

#endingInfo .left, #endingInfo .right {
  width: 49%;
  display: inline-block;
}

#endingInfo .left {
  text-align: center;
}

#endingInfo .right {
  text-align: center;
}

@media only screen and (max-width: 435px) {
  #endingInfo .left, #endingInfo .right {
    width: 100%;
    display: block;
    text-align: center;
    margin-bottom: 15px;
  }
}

#questionBox {
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
}

#questionBox h1 {
  margin-top: 0px;
}

#questionBox .questionLabel {
  text-align: left;
}

#questionBox .questionJumpLink {
  cursor: pointer;
}

#gameBoard {
  display: none;
}

.gameBoard-featherlight {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
}

.gameBoard-featherlight #gameBoard {
  display: block;
  height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.gameBoard-featherlight .gameBoard-featherlight-close-icon {
  display: none;
}

.gameBoard-featherlight .gbHolder {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.gameBoard-featherlight .gbHolder .gameBoard {
  background-image: url("../img/GameBoard_Points.jpg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
  border: 0;
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 100%;
}

.gameBoard-featherlight .gbHolder .gameBoard .categorySections {
  width: 91.8%;
  height: 14.2%;
  margin-left: 4%;
  padding-top: 4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.gameBoard-featherlight .gbHolder .gameBoard .categorySections .category {
  word-break: normal !important;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #11738e;
  font-weight: 1000;
  font-size: 1.5vw;
  padding: 5px;
  position: relative;
}

.gameBoard-featherlight .gbHolder .gameBoard .categorySections .category div {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.gameBoard-featherlight .gbHolder .gameBoard .categorySections .selected {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: inset 0px 0px 10px 13px rgba(217, 17, 121, 0.94), 0px 0px 10px 13px rgba(217, 17, 121, 0.65);
  box-shadow: inset 0px 0px 10px 13px rgba(217, 17, 121, 0.94), 0px 0px 10px 13px rgba(217, 17, 121, 0.65);
}

.gameBoard-featherlight .gbHolder .gameBoard .ddHolder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70%;
}

.gameBoard-featherlight .gbHolder .gameBoard .ddHolder .dailyDouble {
  border: 10px solid black;
  -webkit-box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 24px 10px rgba(0, 0, 0, 0.5);
  background-color: #dad9de;
  color: #e1257a;
  font-weight: bold;
  position: absolute;
  margin: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  font-size: 70px;
  padding: 20px;
  z-index: 1010;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.gameBoard-featherlight .gbHolder .gameBoard .ddHolder .dailyDouble.show {
  -webkit-animation: dd 1.5s 1 forwards ease-out;
}

.gameBoard-featherlight .gbHolder .gameBoard.fiveRow {
  background-image: url("../img/GameBoard_Points_5.jpg");
}

.gameBoard-featherlight .gbHolder .gameBoard.fiveRow .categorySections {
  width: 76%;
  margin-left: 12%;
}

.gameBoard-featherlight .gbHolder .gameBoard.fiveRow .categorySections .category {
  font-size: 1.5vw;
}

.gameBoard-featherlight .gbHolder .gameBoard.fourRow {
  background-image: url("../img/GameBoard_Points_4.jpg");
}

.gameBoard-featherlight .gbHolder .gameBoard.fourRow .categorySections {
  width: 60%;
  margin-left: 20%;
}

.gameBoard-featherlight .gbHolder .gameBoard.fourRow .categorySections .category {
  font-size: 1.5vw;
}

.gameBoard-featherlight .content .categories .selected {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: inset 0px 0px 10px 13px rgba(255, 255, 0, 0.94), 0px 0px 10px 13px rgba(255, 255, 0, 0.65);
  box-shadow: inset 0px 0px 10px 13px rgba(255, 255, 0, 0.94), 0px 0px 10px 13px rgba(255, 255, 0, 0.65);
}

.gameBoard-featherlight .stopButton {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  color: #fff;
  background-color: #a00;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0px;
  font-size: 25px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
}

.gameBoard-featherlight .stopButton:hover {
  border-color: white;
}

#questionSelect .pointButton {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  color: #000;
  font-weight: bold;
  display: inline-block;
  padding: 10px;
  margin: 10px;
  font-size: 25px;
}

#questionSelect .pointButton:hover {
  border-color: white;
}

#questionSelect .pointButton:hover {
  border-color: #d91179 !important;
}

.subtitleBox {
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
  position: absolute;
  bottom: 10px;
  font-size: 24px;
  width: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1001;
}

#subSelectBox {
  padding: 15px;
  background-color: #11738e;
  color: #fff;
  border: 5px solid #00405b;
  border-radius: 5px;
  max-width: 80vw;
}

#subSelectBox .trackItem {
  background-color: #b5d3d9;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border: 3px solid #fff;
  border-radius: 5px;
  text-decoration: none;
  padding: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
}

#subSelectBox .trackItem:hover {
  border-color: white;
}

#endScreen {
  padding-bottom: 30px;
}

#endScreen p {
  font-weight: bold;
  margin-bottom: 10px;
}

#endScreen .button {
  display: inline-block;
  margin-bottom: 5px;
}

#leaderboard input {
  border: 3px solid #00405b;
  border-radius: 5px;
}

@media only screen and (max-width: 970px) {
  table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
  }
  table td, table th {
    padding: 3px;
    vertical-align: top;
  }
  table table {
    margin: 10px;
  }
  #leaderboard table {
    display: table;
  }
}

@media only screen and (max-width: 815px) {
  body h1 {
    font-size: 20px;
  }
  body p {
    font-size: 16px;
  }
  .modal {
    padding: 10px !important;
    max-width: 85vw !important;
  }
  #endScreen {
    padding-bottom: 30px !important;
  }
  .orientationWarning {
    display: block !important;
  }
  #intro h1 {
    font-size: 18px;
  }
  #intro .introText p {
    font-size: 16px;
  }
  #instructionBox, .instructionText {
    font-size: 18px;
  }
  #recordsBox .tabs .tab {
    font-size: 12px;
  }
  #recordsBox .tabContentHolder {
    font-size: 18px;
  }
  #recordsBox .tabContentHolder #hopiC {
    font-size: 14px;
  }
  #recordsBox .tabContentHolder .tabContent {
    padding: 5px;
  }
  #recordsBox .tabContentHolder .tabContent div {
    margin-bottom: 5px;
  }
}

@media only screen and (max-width: 415px) {
  body h1 {
    font-size: 18px;
  }
  body p {
    font-size: 14px;
  }
  .modal {
    padding: 10px !important;
    max-width: 80vw !important;
  }
  #intro h1 {
    font-size: 16px;
  }
  #intro .introText p {
    font-size: 14px;
  }
  table {
    font-size: 13px;
  }
  table td, table th {
    padding: 3px;
  }
  #instructionBox, .instructionText {
    font-size: 16px;
  }
  .gameBoard-featherlight .gbHolder .gameBoard .dailyDouble {
    font-size: 50px;
  }
  #recordsBox .tabs .tab {
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
  }
  #recordsBox .tabContentHolder {
    font-size: 16px;
  }
  #recordsBox .tabContentHolder #hopiC {
    font-size: 12px;
  }
  #recordsBox .tabContentHolder .tabContent {
    padding: 5px;
  }
  #recordsBox .tabContentHolder .tabContent div {
    margin-bottom: 5px;
  }
}
/*# sourceMappingURL=style.css.map */