
/* ============================================================================================================================== */
/* Player profile stuff. */
/* ============================================================================================================================== */

.player_image {
	display: block;
	border: 6px solid #3d1919;
	border-radius: 5px;
	height: 300px;
	width: 400px;
	transition: filter 1s;
}

.player_image:hover {
	filter: contrast(1.2) brightness(1.2);
}

.player_activity {
	width: 412px;
	margin-top: 10px;
	background-color: #3d1919;
	border-radius: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.player_activity_header {
	display: inline-block;
	width: 50%;
	font-size: 14px;
	text-align: center;
}

.player_activity_box {
	position: relative;
	display: inline-block;
	width: 50%;
	font-size: 16px;
	text-align: center;
	padding-top: 10px;
}

.player_activity_touch {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.player_activity_box .achievement_image {
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 4px;
}

.player_activity_box .game_score {
	height: 56px;
	width: 70%;
	font-size: 24px;
	margin-right: auto;
	margin-left: auto;
	margin-bottom: 4px;
	padding-top: 8px;
	background-color: #131313;
	border-radius: 5px;
	color: #70c1f4;
	text-shadow: #70c1f4 0 0 8px;
}

.player_activity_box .game_score .game_score_unit {
	display: inline-block;
	font-size: 12px;
    vertical-align: middle;
}

.player_activity_box .game_name {
}

.player_info_box {
	position: absolute;
	width: 422px;
	left: 430px;
	top: 0px;
}

.player_info_row, .player_activity_row {
	position: relative;
	min-height: 25px;
}

.player_info_label {
	position: absolute;
	width: 140px;
	top: 3px;
	left: 0px;
	font-size: 14px;
}

.player_info_details {
	position: absolute;
	width: 280px;
	top: 0px;
	left: 140px;
	font-size: 18px;
	overflow: hidden;
}

.player_description {
	margin-top: 10px;
	font-family: Poppins, Sans-Serif;
	line-height: 20px;
	font-size: 16px;
	color: #9CB94E;
	overflow: auto;
	height: 250px;
}

.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_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%;
}

.player_logo {
	position: absolute;
	display: block;
	bottom: 6px;
	right: 76px;
	width: 64px;
	height: 64px;
}

.player_contributor {
	position: absolute;
	display: block;
	bottom: 6px;
	right: 6px;
	width: 64px;
	height: 64px;
}

.player_contributor .player_contributor_tooltip {
	visibility: hidden;
	position: absolute;
    top: 5px;
    right: 105%; 
	border-radius: 5px;
	text-align: center;
	background-color: #131313;
	padding: 4px;
	width: 240px;
	margin-top: 6px;
   
}

.player_contributor:hover .player_contributor_tooltip {
	visibility: visible;
}
