
/* ============================================================================================================================== */
/* Profile stuff shared between like pages (games, players, guilds, etc). */
/* ============================================================================================================================== */

.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 #455f2f;
	border-top: 3px solid #455f2f;
	transition: background-color 0.15s ease-in-out;
}

.profile_button:hover {
	background-color: #6a9349;
}

.profile_button:active {
	border-left: 3px solid #293a19;
	border-top: 3px solid #293a19;
	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%;
}

.section_header {
	position: relative;
	width: 100%;
	text-align: center;
	font-size: 40px;
	margin-bottom: 10px;
}
