/* Avatar container reuse */
.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eee;
  margin: 0 auto 1rem auto;
	border: 2px solid #652D90;
}

.avatar-fallback {
  width: 100%;
  height: 100%;
  font-size: calc(0.45 * 120px);
  font-weight: bold;
  font-family: 'Knewave', serif;
	background-color: #652D90;
  color: #FA8334;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
	border: none;
  box-shadow: none;
}

.avatar-fallback:hover {
  background-color: #408CA3;
	color: #fff;
  /*cursor: pointer;*/
  transition: background-color 0.3s ease;
}