/** Section with game state information content **/
.game .container {
	width: 80%;
	margin: auto;
}
.game .state .title {
	margin-top: 20px;
	background: linear-gradient(#3292E7, #70D8FF) fixed;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.5);
	text-align: center;
	padding: 50px;
}
.game .state .title h3 {
	color: #FFF;
}
.game .state .context table {
	width: 100%;
	margin: 0 auto 50px auto;
	word-break: break-word;
}
.game .state .context table, .game .state .context table th, .game .state .context table td {
	border: 1px solid black;
	border-collapse: collapse;
}
.game .state .context table th, .game .state .context table td {
	padding: 10px;
}
.game .state .context table th {
	text-align: left;
}
.game .state .context table td a {
	text-decoration: none;
	color: #206FD8;
}

/** Custom check for recycling **/
.game .tops .title {
	margin-top: 20px;
	background: linear-gradient(#3292E7, #70D8FF) fixed;
	box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.5);
	text-align: center;
	padding: 50px;
}
.game .tops .title h3 {
	color: #FFF;
}
.game .tops .title p.margin-space {
	margin-bottom: 65px;
}
.game .tops .context table {
	width: 100%;
	margin: 0 auto 50px auto;
	word-break: break-word;
}
.game .tops .context table, .game .tops .context table th, .game .tops .context table td {
	border: 1px solid black;
	border-collapse: collapse;
}
.game .tops .context table th, .game .tops .context table td {
	padding: 10px;
}
.game .tops .context table th {
	text-align: left;
}
.game .tops .context table td a {
	text-decoration: none;
	color: #206FD8;
}
.game .tops .recycling-container-class .recycling-button {
	background-color: #3292E7;
	color: #000;
	border: none;
	outline: none;
	padding: 15px 20px;
	margin-bottom: 40px;
	cursor: pointer;
	opacity: 0.9;
}
.game .tops .recycling-container-class .recycling-button:hover {
	opacity: 1;
}
.game .tops .recycling-container-class .recycling-button.active {
	opacity: 1;
	border-bottom: 3px solid #E8491D;
	color: #FFF;
	font-weight: bold;
}
.game .tops .context #hub-experience, .game .tops .context #hub-gold, .game .tops .context #hub-crates {
	display: none; /** Hidden by default **/
}
.game .tops .context #survival-kills, .game .tops .context #survival-deaths, .game .tops .context #survival-flight, .game .tops .context #survival-money {
	display: none; /** Hidden by default **/
}

/** Responsive for all devices **/
@media(max-width: 768px) {
	.game .tops .recycling-container-class .recycling-button {
		margin-bottom: 10px;
	}
}