/**
 * User
 * =========================================== */
.user-gravatar {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 1px solid transparent;
	background-color: #f3f4f5;
	margin: 0 auto 10px;
	position: relative;
	cursor: pointer;
}
.user-gravatar > img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	position: relative;
	z-index: 1;
}
.user-gravatar:before {
	content: '';
	display: block;
	text-align: center;
	border: 1px solid #b4b9be;
	line-height: 150px;
	color: #82878c;
	font-size: 13px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	border-radius: 50%;
	transition: all .3s;
}
.user-gravatar.no-image:before {
	content: attr(data-placeholder);
	border: 1px dashed #b4b9be;
}
.user-gravatar:after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	background-color: transparent;
	border-radius: 50%;
	transition: all .3s;
}
.user-gravatar.no-image:after {
	z-index: 1;
}
.user-gravatar.no-image:hover:after {
	background-color: #e3e4e8;
}
.user-gravatar:not(.no-image):after {
	z-index: 3;
}
.user-gravatar:not(.no-image):hover:after {
	opacity: 1;
	background-color: rgba(227, 228, 232, .4);
}