html {
  box-sizing: border-box;
  overflow-x: hidden;
  text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
	-webkit-tap-highlight-color: transparent;
}
body {
  width: 100vw;
  height: 100vh;
  margin: 0;
	font-family: 'Open Sans', Arial, sans-serif;
	font-size: 16px;
	color: #333333;
	background-color: #002120;
}
*, *:before, *:after {
  box-sizing: inherit;
}
.flex-col, .flex-row {
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
  align-items: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}
.flex-row {
  flex-direction: row;
  -webkit-flex-direction: row;
}
.flex-col {
  flex-direction: column;
  -webkit-flex-direction: column;
}
button.nav-button > * {
  pointer-events: none;
}
.show {
  display: flex;
  display: -webkit-flex;
}
.hide {
  display: none !important;
}
#grassBg {
  position: absolute;
}
#bushes {
  position: absolute;
  z-index: 999;
}
.loadingGif {
  position: absolute;
  height: 188px;
  z-index: 950;
}
.catLizard {
  top: 140;
  left: 250;
}
.birdRabbit {
  top: 90;
}
.mooseBear {
  top: 130;
  right: 330;
  z-index: 1050;
}
#loadingPercentage {
  bottom: 200;
}
#loadingBar {
  width: 372px;
  height: 32px;
  position: absolute;
  display: flex;
  align-items: center;
  bottom: 140;
  border-radius: 16px;
  background: #FFFFFF;
}
progress::-webkit-progress-bar {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 16px;
  background-color: #32CCFA;
}
#loadingProgress {
  width: 0%;
  height: 24px;
  margin: 5px;
  border-radius: 16px;
  background-color: #32CCFA;
  transition: width 0.5s ease;
}
#loadingPercentage, #loadingMessage {
  position: absolute;
  font: 700 25px/32px Quicksand Bold;
  color: #FFFFFF;
}
#loadingMessage {
  bottom: 70;
}
/* global nav has height 68px */
#reactWrapper {
  max-width: 1024px;
  max-height: 576px;
  position: fixed;
  top: 68px;
}
#loadingScreen {
  width: 1024px;
  height: 576px;
  position: fixed;
  top: 68px;
}
#spinner {
  position: absolute;
  z-index: 9998;
  width: 100px;
  height: 100px;
}
/* When nav is hidden on small screens, move content to top */
@media only screen
and (max-device-height: 768px)
and (orientation: landscape) {
  #reactWrapper.hide-global-nav {
    top: 0;
  }
}
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {
  #spinner{
    margin: auto;
    position: absolute;
    top: 0; left: 0; bottom: 0; right: 0;
  }
}
.device-rotate-warning {
  z-index: 9999;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #384e4a;
}
#device-rotate-anim {
  width: 50%;
  height: 50%;
}
.device-rotate-warning p {
  margin-top: 150px;
  font-family: 'Quicksand', sans-serif;
  font-size: 42px;
  text-align: center;
  color: #ffe36d;
}
@media only screen
and (min-device-width : 768px)
and (max-device-width : 1024px)
and (orientation: portrait),
only screen
and (min-device-width : 375px)
and (max-device-width : 812px)
and (-webkit-device-pixel-ratio : 3)
and (orientation : portrait),
only screen
and (min-device-width : 375px)
and (max-device-width : 667px)
and (orientation : portrait),
only screen
and (min-device-width : 414px)
and (max-device-width : 736px)
and (orientation : portrait),
only screen
and (min-device-width : 320px)
and (max-device-width : 568px)
and (orientation : portrait),
only screen
and (min-device-width : 320px)
and (max-device-width : 480px)
and (orientation : portrait) {
  .device-rotate-warning {
    display: flex;
    display: -webkit-flex;
    position: fixed;
    top: 0;
    left: 0;
  }
  .app-window {
    display: none;
  }
  #reactWrapper {
    visibility: hidden;
    z-index: -1;
  }
  #loadingScreen {
    display: none;
  }
}
#gameloader-wrapper {
  z-index: 1;
}
.global-captions {
  z-index: 2;
}
.app-modal-system {
  z-index: 3;
}
.amp-nav-v2 {
  z-index: 4;
  position: fixed;
  top: 0;
  left: 0;
}