/* GLOBALS */

/* NORMAL */

body {
	font-size: 14px;
	color: #FFFFFF;
	font-family: "Roboto Medium", "Arial";
	background:transparent;
}


/* GLOBALS END */

::selection {color:currentColor;background:transparent}

*{
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/*******************************/
/* DEFAULTS */
/*******************************/




/*******************************/
/* TEST */
/*******************************/



/*******************************/
/* COLORS */
/*******************************/




/*******************************/
/* GAME */
/*******************************/

#newGameContainer.notransparent{
	background-color:#DBB68A;
	background-image:url(default_images/bg.png);
	background-repeat:no-repeat;
	background-position:center bottom;
	background-size:cover;
}
#wrongOrientationContent{
	background-color: #DBB68A;
}
#startScreen .openImg{
	background-size: auto;
	background-position: center 25%;
}

#gameStage{
	position: absolute;
	width: 100%;
	height: 100%;
}
.gameTable{
	width: 350px;
	height: 450px;
	margin: 70px auto 0 220px;
	position: relative;
}

#itemcont{
	display: block;
	width: 100%;
	height: 300px;
	background-color: rgba(0,0,0,0.9);
}
#itemcont img{
	width: 80%;
	margin: auto;
	display: block;
}
.gameInstruction{
	display: table;
	background-color: rgba(0,0,0,0.9);
	padding: 15px;
	width: 100%;
	height: 110px;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	margin-top: 20px;
}
#basketCont{
	display: table-cell;
	vertical-align: middle;
	width: 30%;
}
#basket{
	width: 75px;
	height: 75px;
	background-image: url('images/basket.png');
	background-size: contain;
	background-repeat: no-repeat;
	cursor: pointer;
	margin: auto;
}
#targetCont{
	width: 100%;
	position: absolute;
	top: 250px;
}
#targetItem{
	font-family: 'Roboto Bold', 'Arial';
	font-size: 40px;
	color: #FFFFFF;
	text-transform: uppercase;
	text-align: center;
	text-shadow: 1px 1px 3px #000000;
}
#clickCount{
	display: table-cell;
	width: 50%;
	padding-left: 60px;
	vertical-align: middle;
}
#clickCount .click{
	width: 15px;
	height: 15px;
	display: inline-block;
	border-radius: 8px;
	margin: 0 10px 2px 0;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
}
#clickCount .click:nth-child(n+11){
	margin-bottom: 0px;
}
#clickCount .click.good{
	background-image: url('images/good.png');
}
#clickCount .click.wrong{
	background-image: url('images/wrong.png');
}
.pulse {
	-webkit-animation: pulse2 300ms ease-out;
	-moz-animation: pulse2 300ms ease-out;
	-ms-animation: pulse2 300ms ease-out;
	animation: pulse2 300ms ease-out;
}
@keyframes pulse2 {
	0% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-o-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}
	70% {
		-webkit-transform: scale(1.3);
		-moz-transform: scale(1.3);
		-o-transform: scale(1.3);
		-ms-transform: scale(1.3);
		transform: scale(1.3);
	}
	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}
@-webkit-keyframes pulse2 {
	0% {
		-webkit-transform: scale(0);
		-moz-transform: scale(0);
		-o-transform: scale(0);
		-ms-transform: scale(0);
		transform: scale(0);
	}
	70% {
		-webkit-transform: scale(1.3);
		-moz-transform: scale(1.3);
		-o-transform: scale(1.3);
		-ms-transform: scale(1.3);
		transform: scale(1.3);
	}
	100% {
		-webkit-transform: scale(1);
		-moz-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}

@media only screen and (min-width: 480px) and (max-width: 799px) {

	#startScreen .openImg{
		background-size: auto 40%;
		background-position: center 30%;
	}

	/*game*/
	.gameTable{
		margin: 20px auto 0 150px;
		width: 250px;
		height: 270px;
	}

    #itemcont{
	   height: 200px;
    }
    .gameInstruction{
	    padding: 8px;
	    height: 35px;
	    margin-left: 0;
	    margin-top: 10px;
    }
    #targetCont{top: 170px;}
    #targetItem{
	    font-size: 22px;
    }
    #basket{
	    height: 35px;
	    width: 40px;
    }
    #clickCount{
	    padding-left: 60px;
    }
	#clickCount .click {
		width: 10px;
		height: 10px;
		display: block;
		float: left;
		margin: 0 5px 2px 0;
	}

}

@media only screen and (min-width: 480px) and (max-width: 799px) and (max-height: 260px) {

	.gameTable{
		margin-top: 10px;
		width: 220px;
		height: 210px;
	}
	#itemcont{height: 150px;}
	#targetCont{top: 125px;}
	#targetItem{font-size: 20px;}
    #clickCount{padding-left: 50px;}

}
