@charset "UTF-8";
/* Body */
body {
	font-family: 'Roboto Condensed', sans-serif;
	background-color: #f2f2f2;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
}
/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
	background-color: #FFFFFF;
	max-height: 1080px;
}
/* Navigation */

#back {
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	margin-top: 10px;
	margin-bottom: 10px;
	position: absolute;
	bottom: 10px;
	left: 0px;
}
*, *::before, *::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/*Stacking main*/
.stacking_start {
	background-color: #B3B3B3;
	background-repeat: no-repeat;
	background: url(stacking-game/img/stacking_start.jpg);
	height: 1080px;
	max-width: 1920px;
	text-align: center;
}
.stacking {
	/* background-color: #B3B3B3; */
	background-repeat: no-repeat;
	max-width: 1920px;
	text-align: center;
	max-height: 1080px;
	height: 100%;
	width: 100%;
	background: url(../images/stacking_background.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}

#stackingdirections
{
	top: 50%;
	padding-top: 10px;
	padding-right: 35%;
	padding-left: 10%;
	padding-bottom: 10px;
	position: absolute;
}
.stackingtitle {
	width: 32%;
	padding-left: 3%;
	text-align: left;
	padding-top: 0px;
	height: 12%;
	float: left;
}
.stackingtitle img {
	width: 100%;
}
/* Stacking */
.stacking {
	/* background-color: #B3B3B3; */
	background-repeat: no-repeat;
	max-width: 1920px;
	text-align: center;
	max-height: 1080px;
	height: 100%;
	width: 100%;
	background: url(../img/stacking_background.jpg) no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
.stackingtitle {
	width: 32%;
	padding-left: 3%;
	text-align: left;
	padding-top: 0px;
	height: 12%;
	float: left;
}
.stackingtitle img {
	width: 100%;
}
.stackingscore {
	float: right;
	width: 15%;
	background-color: #3000F5;
	color: #ffffff;
	font-size: 150%;
	padding: 20px 5px;
	height: 8%;
}
.stackingstime {
	float: right;
	width: 15%;
	background-color: #3000F5;
	color: #ffffff;
	font-size: 150%;
	padding: 20px 5px;
	height: 8%;
}
.stacking-right {
	width: 59%;
	float: right;
	padding-right: 2%;
	padding-left: 2%;
	/*		border: 2px solid #212212;  */
	margin-top: 0;
	margin-right: 3%;
	margin-bottom: 0;
	height: 88%;
	/*	background-color: #012337; */
	background: url(../img/game-area-and-shadow.png) no-repeat center center;
	background-size: contain;
}
.stacking-right img {
	width: 100%;
	height: 100%;
}
.stacking-left {
	float: left;
	width: 32%;
	margin-top: 0px;
	margin-right: 3%;
	margin-left: 3%;
	margin-bottom: 0;
	padding-bottom: 0;
	/* border: 1px solid #efef12; */
	text-align: center;
	height: 88%;
	background: url(../img/shopping-bag_large.png) no-repeat;
	background-size: contain;
}
.stacking-left img {
	width: 100%;
	height: 100%;
}
.shopping-bag {
	margin: 295px auto 0 auto;
	width: 55%;
	height: 55%;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}
.logo {
	background: white;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.play-area-square {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.stackingplayarea .play-area-square{
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	background:#e2e2e1;
}

.stackingplayarea {
	width: 90%;
	height: 90%;
	margin: 1.75rem 4.11rem auto auto;
	text-align: center;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
	grid-gap: 10px;
}

/* Arrows */
.stacking-right {
	position: relative;
}

.stacking-right .arrow {
	position: absolute;
	top: 0;
	width: 40px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	transition: .3s opacity;
}

.stacking-right .arrow:hover {
	opacity: .7;
}

.stacking-right .arrow-left {
	background-image: url(../img/arrow-left.png);
	left: -40px;
}

.stacking-right .arrow-right {
	background-image: url(../img/arrow-right.png);
	right: -40px;
}