/*Font used for game messages - Permanent Marker*/
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');
/*Font used for the title bar game clock - Orbitron*/
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap&text=:1234567890');
/*Main font - Roboto*/
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');


/*Makes the page full browser height*/
/*body, html {
  height: 100vh;
  font-family: 'Roboto', sans-serif;
  overflow: hidden;
}*/
/*Game canvas should take up full width with no gaps*/

.iframe_fs_back{top:50px;}

#pageWrapper {
  padding-left: 0;
  padding-right: 0;
  height: 100%;
  position: relative;
}
.row {
  margin: 0;
}
/*
 * Header styles
 */
.headerWrapper {
  padding: 0;
  height: 45px;

  background-color: #555;
  color: white;

  border-bottom: 1px solid #DDD;
}
.gameclock {
  margin-left: auto;
  padding-right: 20px;
  padding-top: 5px;

  font-family: 'Orbitron', sans-serif;
  font-size: 20px;
}
/*
 * Menu Styles
 */
#menuBtn {
  padding: 0 0 8px;
  display: block;
}
.nav-menu-icon {
  width: 25px;
  height: 25px;
}
/* Themes the hamburger icon SVG */
.nav-menu_icon_line {
  fill: none;
  stroke: white;
  stroke-linecap: square;
  stroke-miterlimit: 10;
  stroke-width: 100px;
}
.navWrapper {
  position: absolute;
  z-index: 2;
  padding: 0;
  width: 100%;
  /*height:100%;*/
}
.navbar {
  text-align: center;
}
.navbar-collapse {
  width: 80vw;
  margin: auto;
  float: none;
  background-color: #555;
  color: white;
  border-left: 1px solid #DDD;
  border-right: 1px solid #DDD;
  border-bottom: 1px solid #DDD;
}
/*
 * Game Splashscreen styles
 */
#splashscreen {
  padding: 15px;
  /* Prevents the splashcreen from extending the page
    beyond the bottom of the screen, while also allowing
    scrolling of just the splashscreen */
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
}
/*Hides the vertical scrollbar on fold-in/out*/
#splashscreen.collapsing {
  overflow-y: hidden;
}
.splashform {
  display: inline-block;
  text-align: center;
  padding: 15px;
}
.splashtext {
  margin-bottom: 5px;
}
.game-btn {
  width: 100px;
  margin: 0 5px 0;
}
h1.splashtext,h2.splashtext {
  padding-bottom: 2px;
  border-bottom: 1px solid #DDD;
  font-size:20px;
}
.mothergameholder p{font-size:16px;line-height:normal;}
.splashseparator {
  border-top: 1px solid #DDD;
}
.btn-group.btn-group-toggle .btn {
  width: 75px;
}
#difficultycontrols {
  padding: 10px 0 10px;
}
#gamecontrols {
  padding-top: 10px;
}
/*
 * Game page and canvas styles
 */
.gameWrapper {
  padding-left: 0;
  padding-right: 0;
  /*Make the game screen take up the whole screen - header height*/
  height: calc(100vh - 45px);
}
/*Ensures game canvas takes full height*/
#gameCanvas {
  width: 100%;
  height: 100%;
}
.hhper{height:100%;}
.splashform{position: sticky;
bottom: -14px;
background: #414141;
margin: 0 0 -10px -20px;
width: calc(100% + 30px);}


#splashscreen{height:300px;}

/*@media (hover: hover) and (pointer: fine) {
#splashscreen{height: 300px;}
}
#menuBtn.collapsed + #splashscreen{}*/