.cover {
	margin-bottom: 2rem;
}

.cover .bio {
    display: flex;
	align-items: center;
	
	height: 120px;
	border-radius: 0 0 8px 8px;
    background: var(--PrimaryColor) !important;
    border-color: var(--PrimaryBorderColor) !important;
}

.cover .bio .main-info {
	margin-left: 200px;
}

.cover .bio .main-info span {
	font-size: 20px;
}

.cover .bio .content {
	font-size: 16px;
	margin: 0 24px 0 auto;
}

.cover .area {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.cover .area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
	filter: grayscale(80%);
	transition: 1s;
}

.cover .area:hover > img {
	filter: grayscale(0);
	transform: scale(1.2);
}

.cover .area,
.cover .area img {
	border-radius: 8px 8px 0 0;
}

.profile-page .cover .area .edit {
	opacity: 0;
	transition: 1s;
	background: rgba(0, 0, 0, .62);
    position: absolute;
    right: 40px;
    top: 30px;
	margin-bottom: 0;
	z-index: 1;
}

.profile-page .cover .area:hover > .edit {
	opacity: 1;
}

form[data-target="Form"][data-toggle="Cover"] input {
	width: 100%;
}

#editCover .alert {
	border-radius: 8px 8px 0 0;
    border-left-width: unset;
    border-left-color: #ff0000;
	margin: 0;
}

#editCover .info {
    background: #e2e3e5;
    padding: 12px;
    border-radius: 0 0 8px 8px;
    color: #303030;
	margin-bottom: 14px;
}

#editCover ol {
    margin-left: 14px;
}

.cover div.avatar {
	position: absolute;
    width: 128px;
    height: 128px;
    top: 190px;
    left: 40px;
}

.cover div.avatar {
	display: flex;
	justify-content: center;
	align-items: center;
}

.cover div.avatar .outline img {
    width: 128px;
    height: 128px;
    left: 0;
    top: 0;
    position: absolute;
    background-size: 100%;
    background-repeat: no-repeat;
}

.cover div.avatar .btn.changeavatar {
	opacity: 0;
	transition: 1s;
	position: absolute;
	margin-bottom: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
	font-size: 24px;
    background: transparent;
    border-style: none;
	z-index: 1;
}

.cover div.avatar:hover > .btn.changeavatar {
	opacity: 1;
}

.cover .avatar img.avatar {
    width: 128px;
    height: 128px;
    object-fit: cover;
    object-position: top;
	padding: 12px;
	border-radius: 20px;
}

@media only screen and (max-width: 844px) {
	.cover div.avatar {
		margin-left: auto;
		margin-right: auto;
		left: 0;
		right: 0;
		text-align: center;
		top: 140px;
	}
	
	.cover .area {
		height: 200px;
	}
	
	.cover .bio {
		display: flex;
		justify-content: center;
		flex-direction: column;
		height: auto;
		padding-top: 80px;
	}
	
	.cover .bio .content {
		justify-content: center;
		padding: 24px;
		margin-left: 0;
	}
	
	.cover .bio .main-info {
		height: 40px;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 1.1rem;
		font-weight: 600;
		margin-left: 0;
	}
	
	.cover .bio .content {
		margin: 0;
	}
}

a.btn {
	margin-bottom: 0;
	font-size: 18px;
	color: #eee;
}

a.btn:hover {
	color: rgba(238, 238, 238, .28);
}

#editAvatar .modal-body input {
	width: 100%;
}

.profile-page .profile table tbody tr td[colspan="2"] h4 {
    margin-left: -40px;
    background: #121212;
    border-top: 1px solid #101010;
    border-left: 4px solid #6b69dd;
    border-bottom: 1px solid #101010;
    color: #e6e6e6;
}