/*-------------------------------------------------------------------------*/
/* User control panel
/*-------------------------------------------------------------------------*/
#ucp_top {
	padding: 0;
}

/* User control panel: Avatar
/*----------------------------------------------------------*/
#ucp_top #ucp_avatar {
	width: 120px !important;
	height: 120px !important;
	float: none;
	margin: 1rem auto;
	border: 2px solid #3a3e39;
	display: block;
	box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
	-moz-box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
	-webkit-box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

#ucp_top #ucp_avatar:before {
	width: 110%;
	height: 110%;
	top: -5%;
	left: -5%;
	border: 1px solid #3a3e39;
	content: '';
	position: absolute;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	transition: 100ms transform ease-in-out;
	-o-transition: 100ms transform ease-in-out;
	-ms-transition: 100ms transform ease-in-out;
	-moz-transition: 100ms transform ease-in-out;
	-webkit-transition: 100ms transform ease-in-out;
}

#ucp_top #ucp_avatar:hover:before {
	transform: scale(1.2);
	-o-transform: scale(1.2);
	-ms-transform: scale(1.2);
	-moz-transform: scale(1.2);
	-webkit-transform: scale(1.2);
}

#ucp_top #ucp_avatar:after {
	width: 300%;
	height: 2px;
	top: 50%;
	left: -100%;
	margin: -1px 0 0 0;
	content: '';
	position: absolute;
	background: -moz-linear-gradient(left,  rgba(58,62,57,0) 0%, rgba(58,62,57,1) 50%, rgba(58,62,57,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(58,62,57,0) 0%,rgba(58,62,57,1) 50%,rgba(58,62,57,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(58,62,57,0) 0%,rgba(58,62,57,1) 50%,rgba(58,62,57,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#003a3e39', endColorstr='#003a3e39',GradientType=1 ); /* IE6-9 */
}

#ucp_top #ucp_avatar div {
	width: 100%;
	height: 100%;
	z-index: 9;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

#ucp_top #ucp_avatar img {
	width: 100%;
	height: 100%;
	z-index: 8;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
}

/* User control panel: Info
/*----------------------------------------------------------*/
#ucp_top #ucp_info {
	width: 100%;
	height: auto;
	float: none;
	display: block;
}

#ucp_top #ucp_info aside {
	width: 100%;
	height: auto;
	margin: 0;
}

#page-profile #ucp_top #ucp_info aside {
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* User control panel: Buttons
/*----------------------------------------------------------*/
#ucp_buttons {
	margin: 0;
	display: flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-box;
	display: -webkit-flex;
	flex-flow: row wrap;
	-webkit-flex-flow: row wrap;
	justify-content: start;
}

#ucp_buttons a {
	flex: 0 0 100%;
	float: none;
	margin: 1%;
	display: block;
	align-items: stretch;
	justify-content: center;
	background-size: 100% 186px;
}

/* User control panel: Characters
/*----------------------------------------------------------*/
#ucp_characters {
	margin: 0 0 -1rem 0;
	padding: 0;
}

#ucp_characters h1 {
	margin: 0 0 1rem 0;
}

#ucp_characters a {
	width: 62px;
	height: 62px;
	margin: 0 0.5rem 1rem 0.5rem;
}

#ucp_characters a img {
	border: 2px solid #3a3e39;
	box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
	-moz-box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
	-webkit-box-shadow: 0 0 10px 5px rgb(19, 16, 15, 0.45), 0 0 20px 5px rgba(96, 86, 75, 0.54);
}

/* User control panel: Responsive
/*----------------------------------------------------------*/
@media screen and (min-width: 768px) { /* Desktop */
	/* User control panel: Info
	/*----------------------------------------------------------*/
	#ucp_top #ucp_info aside {
		width: 50%;
	}

	#page-profile #ucp_top #ucp_info aside {
		width: 33.333% !important;
	}

	/* User control panel: Characters
	/*----------------------------------------------------------*/
	#ucp_buttons a {
		flex: 0 0 48%;
	}
}

@media screen and (min-width: 992px) { /* Desktop */
	/* User control panel: Characters
	/*----------------------------------------------------------*/
	.is-fullwidth #ucp_buttons a {
		flex: 0 0 31.3%;
	}
}