/* Template - CSS */
/* The State of Queensland (Department of Education and Training) */

html {

}

input, input:focus{
    outline: none; 
    -webkit-tap-highlight-color: rgba(0,0,0,0);	
}

*:not(input):not(textarea)::selection 
{
    background-color:transparent;
} 
*:not(input):not(textarea)::-moz-selection
{
    background-color:transparent;
}


body {
    font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

main {
	/*IE*/
	display:block;
}

footer {
	font-family: Arial, Helvetica, sans-serif;
}

#Content {
	position: relative;
	overflow: hidden;
}

.Bird{
   position: absolute;	
}

.Bird.Fly{
   background-image: url(../assets/images/birds-blue.png);
   width: 120px;
   height: 87px; /*was 88px */
   
   background-size: 500%;
   animation: bird-fly 0.6s steps(4) infinite;	
}

.Bird.Fly.Orange{
	background-image: url(../assets/images/birds-orange.png);
}

.Bird.Fly.Green{
	background-image: url(../assets/images/birds-green.png);
}

@keyframes bird-fly{
	0% { background-position: 0%; }
    100% { background-position: 100%; } /* 125.5% */
}

.Bird.Stand{
	height: 150px;
	width: 100px;
	background-image: url(../assets/images/birds-stand-blue.png);
	background-size: 400%;
	 animation: bird-fly2 0.8s steps(3);
}

.Bird.Stand.Orange{
    background-image: url(../assets/images/birds-stand-orange.png);	
}

.Bird.Stand.Green{
    background-image: url(../assets/images/birds-stand-green.png);	
}

@keyframes bird-fly2{
	0% { background-position: 0%; }
    100% { background-position: 100%; } /*130.95%;*/
}

.Frog{
	z-index: 500;
   position: absolute;
   top: -10000px;
   left: -10000px;	
}

.Frog.Jump{
	height: 80px;
	width: 120px;
	background-image:url(../assets/images/frogs-jump.png);
	background-size: 1400%;
	animation: frog-jump 3s steps(13);
}

@keyframes frog-jump{
	0% { background-position: 0%; }
    100% { background-position: 100%; }
}

.Frog.Sit{
	height: 80px;
	width: 120px;
	background-image:url(../assets/images/frog-blink.png);
	background-size: 800%;
	animation: frog-blink 1s steps(7) infinite;
}

.Frog.Sit.Begin{
   margin-left: -55px;	
}

@keyframes frog-blink{
	0% { background-position: 0%; }
    100% { background-position: 100%; }
}

.Frog.Leap{
	height: 90px;
	width: 80px;
	background-image: url(../assets/images/frogs-jump-up.png);
	background-size: 1500%;
	animation: frog-leap 2s steps(14) infinite;
}

@keyframes frog-leap{
	0% { background-position: 0%; margin-top: 0px;}
	33% { margin-top: 0px; }
	50% { margin-top: -60px; }
	66% { margin-top: 0px; }
    100% { background-position: 100%; margin-top: 0px;}
}



.Ripple{
	z-index: 300;
	position: absolute;
	background-image: url(../assets/images/ripple-ani.png);
	width: 230px;
	height: 99px;
	background-size: 1600%;
    animation: wave 1s 	steps(15);
}

@keyframes wave{
	0% { background-position: 0%; }
    100% { background-position: 100.5%; }
}

/* Template - CSS */
/* The State of Queensland (Department of Education and Training) */

*:not(input):not(textarea){
   -webkit-touch-callout: none;
   -webkit-user-select: none;
   -khtml-user-select: none;
   -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
	cursor: default;
	
}

html {
   min-height: 100%;
   background-color: white;
   margin: 0px;
   padding: 0px;
   	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

body {
  margin: 0px;
  padding: 0px;
}

main {
	/*IE*/
	display:block;
}

footer {
	font-family: Arial, Helvetica, sans-serif;
	text-align: center;
}

#MainContent{
    width: 760px;
	height: 420px;
	margin: 0px auto;
	position: relative;
	overflow: hidden;
}

#PageArea{
   width: 100%;
   position: relative;	
}


audio{
   display: none;	
}

#PopupBox{
	position: absolute;
	width: 300px;
	left: 50%;
	top: 50%;
	margin-left: -150px;
	margin-top: -90px;
	z-index: 1000;	
	background-color: #FFFFFF;
	border: 4px solid #404000;
	padding: 10px;
	color: #000000;
	border-radius: 20px;
	box-shadow: 5px 5px 10px #000000;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	font-weight: normal;
}

#PopupBox.small-popup{
	width: 260px;
	min-height: 100px;
	left: 50%;
	top: 200px;
	margin-left: -130px;
	margin-top: -50px;
}

#PopupBox .close-button, #small-play, .StatsClose.close-button{
	margin-top: 8px;
	float:right;
    width:20px;
	height: 20px;
	text-align: center;
	border: 1px solid  #FFFFFF;
	border-radius: 5px;
	line-height: 20px;
	color: white;
	cursor: pointer;
	padding: 0px 2px 3px 2px;
	font-size: 18px;
	background-color: #404000;
	box-shadow: 1px 1px 5px #000000;	
}

.StatsClose.close-button{
	position: absolute;
	top: 5px;
	left: 600px;
	float: none;
	 z-index: 10010;
}



body.IsDeskTop #PopupBox .close-button:hover, body.IsDeskTop #small-play:hover{
background-color: #777700;
}

#small-play{
	float:left;
	font-size: 12px;
	margin-right: 5px;
  	
}

#volume-control{
	color: #FFFFFF;
	border: none;
	background-color: #404000;
	width: 43px;
	height: 31px;
	border-radius: 4px;
	position: absolute;
	top: 8px;
	left: 670px;
	font-size: 20px;
	text-align:center;
	padding-top: 12px;
	cursor: pointer;
	
}

#stats-button{
	position: absolute;
	top: 18px;
	left: 635px;
	cursor: pointer;
}

body.IsDeskTop #volume-control:hover{
    background-color: #777700;	
}

#play-sound{
	color: #FFFFFF;
	border: none;
	background-color: #404000;
   position: absolute;
   width: 30px;
   height: 30px;
   border-radius: 5px;
   top: 65px;
   left: 60px;
   padding-top: 0px;
   padding-left: 0px;
   font-size: 14px;
   line-height: 30px;
   text-align:center;
   cursor: pointer;	
   box-shadow: 2px 2px 0px #004848;
   z-index: 200;
}

body.IsDeskTop #play-sound:hover{
    background-color: #777700;	
}

#PageArea{
	   z-index: 100;
	   top: -5px;
}

#overlay{
        width: 760px;
	height: 420px;
   position: absolute;
   z-index: 1000;
   top: 0px;
   left: 0px;
   background-color: #FFD135;
   opacity: 0.8;	
}

#play-button{
   width: 168px;
   height: 65px;
   left: 290px;
   margin-top: 150px;
   background-color: #3E3000;
   color: white;
   text-align: center;
   font-size: 18px;
   padding-top: 35px;
   border-radius: 12px;
   opacity: 1;
   position: absolute;
   z-index: 1001;
   border: 2px solid white;
   cursor: pointer;	
   font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

body.IsDeskTop #play-button:hover{
    background-color: #777700;	
}

#loading-game{
	position: absolute;
	 left: 390px;
	  margin-top: 200px;
	  color: white;
	  width: 168px;
	  z-index: 1001;
	  font-size: 22px;
	  font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

#NoVolumeImage{
   position: absolute;
   top: 0px;
   left: 700px;	
}

#Instructions{
    position: absolute;
	top: 49px;
	left: 105px;
	line-height: 16px;
	font-size: 14px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
	z-index: 200;
}

#Instructions p{
   margin-top: 2px;	
   margin-bottom: 0px;
}



.command-buttons{
	position: absolute;
   width: 760px;
   left: 0px;
   background-color: #006666;	
   height: 40px;
   bottom: 0px;
   color: white;
}

.button{
	color: #FFFFFF;
	border: none;
	background-color: #404000;
   position: absolute;
   width: 100px;
   height: 25px;
   border-radius: 20px;
   top: 6px;
   padding-top: 0px;
   padding-left: 0px;
   font-size: 18px;
   line-height: 25px;
   text-align:center;
   cursor: pointer;	
   box-shadow: 2px 2px 0px #000000;
   font-family:  Arial, Gotham, "Helvetica Neue", Helvetica, sans-serif;
}

.button.next{
   right: 50px;		
}

.button.play{
   right: 50px;		
}

.button.previous{
   left: 50px;	
}

.button.reset{
	left: 335px;	
}

.button.check{
	left: 365px;	
}

body.IsDeskTop .button:hover{
    background-color: #777700;	
}

.icon-next{
	font-size: 16px;
}


#addConceptText{
   position: absolute;
   top: 15px; left: 20px;
   color: #764D00;	
   font-size: 18px;
   font-weight: bold;
}



.bottom-altogether{
    position: absolute;
	top: 310px;
	left:170px;
	font-size: 40px;
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;	
}

#NoVolumeImage{
	z-index: 2000;
	top: 5px;
	left: 800px;
	width: 130px;
	height: 60px;
	background-color: #006666;
}

#PopupBox .message{
  padding-top: 5px;	
}

.command-buttons{
   background-image: url(../assets/images/footer.png);
   background-size: 100% 100%;	
}


.PageOne #PageArea, .PageTwo #PageArea{
   background-image: url(../assets/images/front-page-bg.png);
   height: 320px;
   width: 100%;	
}

.PageThree #PageArea{
   background-image: url(../assets/images/middle-page-bg.png);
   height: 320px;
   width: 100%;	
}

.PageFour #PageArea{
   background-image: url(../assets/images/frog-page-bg.png);
   height: 318px;
   width: 100%;	
}

.PageOne #Instructions{
	top: 68px;
}

.PageTwo #Instructions{
   top: 60px;	
}

.PageThree #Instructions{
   top: 68px;	
}

.PageFour #Instructions{
   top: 68px;	
}

.InnerPageTwo, .InnerPageThree{
    position: relative;
	overflow: hidden;
	height: 320px;	
}

.InnerPageTwo .addition{
   font-size: 40px;
   font-weight: bold;
   position: absolute;
   top: 68px;
   left: 1000px;
   color: #996600;
   font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;
}

.InnerPageTwo .addition.italic{
   font-style: italic;	
}

.rock-wall {
	background-image: url(../assets/images/front-page-wall.png);
	width: 697px;
	height: 200px;
	top: 167px;
	left: 63px;
	position: absolute;
	background-size: 100% 100%;
	z-index: 600;
}


#number-three, #number-two{
   font-size: 42px;	
   font-weight: bold;
   color: #999933;
   position: absolute;
   z-index: 800;
}

#number-three{
   top: 210px;
   left:180px;	
}

#number-two{
    top: 250px;
	left: 480px;	
}

#block5{
    position: absolute;
	left: 325px;
	top: 80px;	
}

.NumberBox{
   position:absolute;
   background-image: url(../assets/images/numberbox.png);
   width: 67px;
   height: 70px;
   z-index: 900;	
}

.NumberBox.theme2{
   background-image: url(../assets/images/numberbox2.png);

}

.NumberBox.theme2 input{
  margin-left: 6px;	
}

.NumberBox input{
	font-family: Segoe, "Segoe UI", "DejaVu Sans", "Trebuchet MS", Verdana, sans-serif;	
	width:67px;
	height: 70px;
	background-color: transparent;
	border: none;
	text-align: center;
	font-size: 40px;
	font-weight: bold;
	color: #996600;
	cursor: default;
	padding: 0px;
	margin: 0px;
	
}

.NumberBox.incorrect input{
	color: #FF0000;
}

.NumberBox.correct input{
	cursor: default;
}

#birds-altogether{
	font-size: 18px;
	font-weight: bold;
    color: #996600;
	position: absolute;
	top: 75px;
	left: 380px;	
}

#frogs-altogether{
	font-size: 18px;
	font-weight: bold;
    color: #996600;
	position: absolute;
	top: 45px;
	left: 240px;	
}

.AnswerStatistics{
 position: absolute;
 top: 20px;
 left: 50%;
 margin-left: -322px;
 	
}

.AnswerStatisticsImage{
   top: 0px;
   left: 0px;	
   position: absolute;
   z-index: 10000;
}

#the-print-button{
	 position: absolute;
	 top: 310px; 
	 left:530px;
	 z-index: 10010;
}

.birds-percentage{
	top: 125px;
   left: 310px;	
   position: absolute;
   z-index: 10010;
}
	
.frogs-percentage{
	top: 270px;
   left: 310px;	
   position: absolute;
   z-index: 10010;
}

.birds-tries{
	top: 125px;
   left: 500px;	
   position: absolute;
   z-index: 10010;
}

.frogs-tries{
	top: 270px;
   left: 500px;	
   position: absolute;
   z-index: 10010;
}

.answer-text{
	font-size: 32px;
}

@media print{
	
	* {
	   visibility: hidden;	
	}
	
	.AnswerStatistics{
	     display: block !important;
		 position: fixed;
		 top: 5cm;
		 left: 0px;
		 margin: 0px auto;
		 transform: rotate(90deg);	
		 width:664px; 
		 height:360px; 
	}
	
	.AnswerStatistics, .AnswerStatistics *{
		visibility: visible;
	}
	
	#the-print-button{
	    display: none;	
	}
}



