
/* ============================================================================================================================== */
/* Game profile stuff. */
/* ============================================================================================================================== */

.game_image_block {
	position: relative;
	filter: drop-shadow(0px 0px 5px black);
	padding: 6px;
	height: 600px;
	width: 400px;
}

.game_image {
	width: 100%;
	height: 100%;
}

.game_logo {
	display: block;
	position: absolute;
	width: 256px;
	max-height: 256px;
	top: 5px;
	left: 72px;
}

.game_creator_logo {
	display: block;
	position: absolute;
	width: 256px;
	max-height: 256px;
	bottom: 5px;
	left: 72px;
}

.game_info_box {
	position: absolute;
	width: 422px;
	left: 430px;
	top: 0px;
	min-height: 600px;
}

.game_info_row {
	position: relative;
	min-height: 25px;
}

.game_info_label {
	position: absolute;
	width: 180px;
	top: 3px;
	left: 0px;
	font-size: 18px;
}

.game_info_details {
	position: absolute;
	width: 260px;
	top: 0px;
	left: 140px;
	font-size: 22px;
	padding-left: 2px;
}

.game_info_action_button {
	position: relative;
	background-color: #fff;
	font-family: Fabiolo-SmallCap;
	color: #293a19;
	border-radius: 5px;
	width: 100%;
	font-size: 32px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-bottom: 2px;
	transition: color 0.10s ease-in-out, background-color 0.10s ease-in-out;
}

.game_info_action_button:hover {
	color: #91f044;
}

.game_info_action_button:active {
	color: #FFF;
	background-color: #91f044;
}

.game_info_action_touch {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.game_description {
	margin-top: 10px;
	font-family: Fabiolo;
	line-height: 26px;
	font-size: 24px;
	color: #ebff9c;
	overflow: hidden;
	padding: 4px;
}

.option_row {
	height: 60px;
}

.option_title {
	position: absolute;
	top: 0px;
	left: 6px;
	font-size: 26px;
	color: #8324cc;
	font-weight: bold;
}

.option_desc {
	position: absolute;
	left: 6px;
	top: 30px;
	color: #333;
}

.option_values {
	position: absolute;
	right: 4px;
	top: 2px;
	color: #916500;
}

