
/* ============================================================================================================================== */
/* Game profile stuff. */
/* ============================================================================================================================== */

.game_image {
	display: block;
	border: 6px solid #3d1919;
	border-radius: 5px;
	height: 600px;
	width: 400px;
	transition: filter 1s;
}

.game_image:hover {
	filter: contrast(1.2) brightness(1.2);
}

.game_creator_logo {
	display: block;
	position: absolute;
	width: 150px;
	max-height: 150px;
	top: 456px;
	left: 6px;
}

.game_info_box {
	position: absolute;
	width: 422px;
	left: 430px;
	top: 0px;
	min-height: 612px;
	background-repeat: no-repeat;
	background-position: bottom right;
}

.game_info_row {
	position: relative;
	min-height: 25px;
}

.game_info_label {
	position: absolute;
	width: 180px;
	top: 3px;
	left: 0px;
	font-size: 14px;
}

.game_info_details {
	position: absolute;
	width: 260px;
	top: 0px;
	left: 170px;
	font-size: 18px;
}

.game_info_live_button {
	position: relative;
	background-color: #fff;
	color: #4d1313;
	border-radius: 5px;
	width: 100%;
	font-size: 32px;
	text-align: center;
	margin-top: 10px;
	margin-bottom: 10px;
	transition: color 0.10s ease-in-out, background-color 0.10s ease-in-out;
}

.game_info_live_button:hover {
	color: #D33;
}

.game_info_live_button:active {
	color: #FFF;
	background-color: #D33;
}

.game_info_live_touch {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.game_description {
	margin-top: 10px;
	font-family: Poppins, Sans-Serif;
	line-height: 20px;
	font-size: 16px;
	color: #8CA93E;
	overflow: hidden;
}

.profile_button_row {
	position: relative;
	display: flex;
}

.profile_button {
	display: inline-block;
	position: relative;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 3px;
	width: 32%;
	height: 160px;
	top: 0px;
	border-radius: 10px;
	border-left: 3px solid #572424;
	border-top: 3px solid #572424;
	transition: background-color 0.15s ease-in-out;
}

.profile_button:hover {
	background-color: #6f3434;
}

.profile_button:active {
	border-left: 3px solid #4d1313;
	border-top: 3px solid #4d1313;
	transform: translate(2px, 2px);
}

.profile_button_inactive {
	display: inline-block;
	position: relative;
	width: 33%;
	height: 160px;
	top: 0px;
	border-radius: 10px;
    opacity: 0.3;
    filter: alpha(opacity=30); /* For IE8 and earlier */
}

.profile_button_image {
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 5px;
}

.profile_button_text {
	text-align: center;
}

.profile_button_touch {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

/* ============================================================================================================================== */
/* Addon stuff. */
/* ============================================================================================================================== */

.addon_row {
	min-height: 268px;
}

.addon_image {
	position:absolute;
	top: 6px;
	right: 6px;
	height: 256px;
	width: 256px;
}

.addon_title {
	position:absolute;
	top: 12px;
	left: 6px;
	font-size: 24px;
}

.addon_type {
	position:absolute;
	top: 38px;
	left: 6px;
	font-size: 18px;
}

.addon_desc {
	position:absolute;
	top: 90px;
	left: 6px;
	font-size: 16px;
	width: 550px;
	color: #8CA93E;
	font-family: Sans-Serif;
}

.addon_compat {
	position:absolute;
	top: 60px;
	left: 6px;
	font-size: 14px;
}

/* ============================================================================================================================== */
/* Option stuff. */
/* ============================================================================================================================== */

.option_row {
	min-height: 80px;
}

.option_icon {
	position:absolute;
	top: 6px;
	left: 6px;
	height: 64px;
	width: 64px;
}

.option_options {
	position:absolute;
	top: 18px;
	left: 82px;
	font-size: 24px;
}

.option_tip {
	position:absolute;
	bottom: 12px;
	left: 82px;
	font-size: 16px;
	width: 90%;
	color: #8CA93E;
	font-family: Sans-Serif;
}

