.wrapper-user-profile .group-user-profile {
	float: left;
	width: 100%;
	position: relative;
	margin: 150px 0 0;
}
.wrapper-user-profile .group-user-profile .user-profile {
	background-color: #4592C8;
	margin-bottom: 75px;
}
/* 	==========================================================================
   							 	Profile and Tabs
	=========================================================================*/
.wrapper-user-profile .user-profile .profile-and-tabs {
	background-color: rgb(69,146,200);
	padding-top: 60px;
	color: #ffffff;
	margin-right: -30px;
}

.wrapper-user-profile .profile-and-tabs .image-user {

	margin: 0 auto;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	border: 8px solid rgb(221,234,243);
	margin-bottom: 15px;
    overflow: hidden;
	position: relative;

}

.wrapper-user-profile .profile-and-tabs .change-profile {

	/* For the following settings we set 100%, but it can be higher if needed
    See the answer's update */

	position: relative;
	margin: 0 auto;
	text-align: center;
	width: 100%;
	height: 100%;

	-webkit-transition: all 0.1s ease-in-out;
	-moz-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out;

}

.wrapper-user-profile .profile-and-tabs .change-profile > form{
	margin: 0 auto;
	display: flex;
	max-height: 150px;

	position: relative;
}

.wrapper-user-profile .profile-and-tabs .change-profile > form > img{
	opacity: 0.9;
}

.wrapper-user-profile .profile-and-tabs .change-profile input[type="file"] {
	opacity: 0;
	font-size: 45px;
	filter: alpha(opacity=0);
	cursor: pointer;
	width: 100%;
	height: 100%;
	position: absolute;
}

.wrapper-user-profile .profile-and-tabs .change-profile img.camera{
	position: absolute;
	right: 0;
	display: none;
	top: 50%;
	left: 0;
	margin: 0 auto;
	transform: translateY(-50%);
	z-index: 9999;

}
.wrapper-user-profile .profile-and-tabs .change-profile:hover {
	background-color: rgba(0,0,0,0.4);
}
.wrapper-user-profile .profile-and-tabs .change-profile:hover img.camera{
	display: block;
}

.wrapper-user-profile .profile-and-tabs .user-name {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	text-align: center;
}
.wrapper-user-profile .profile-and-tabs .user-type {
	margin-bottom: 30px;
	text-align: center;
}
.wrapper-user-profile .profile-and-tabs .tabs > a {
	color: #fff;
	font-size: 18px;
}
.wrapper-user-profile .profile-and-tabs .tabs > a:first-of-type li { border-top: 1px solid rgb(116,174,214); }
.wrapper-user-profile .profile-and-tabs .tabs > a > li {
	line-height: 65px;
	border-bottom: 1px solid rgb(116,174,214);
	padding-left: 25px;
}
.wrapper-user-profile .profile-and-tabs .tabs > a > li.active { background-color: rgba(0,105,180,1); }
.wrapper-user-profile .profile-and-tabs .tabs > a > li:hover { background-color: rgba(0,105,180,1); }
/* 	==========================================================================
   							 		My Profile
	=========================================================================*/
.wrapper-user-profile .tab-content .my-profile {
	background-color: #ffffff;
	padding: 45px;
	min-height: 962px;
	border: 20px solid #E6F1F7;
	width: 100%;
}
.wrapper-user-profile .tab-content .my-profile .full-name,
.wrapper-user-profile .tab-content .my-profile .sex,
.wrapper-user-profile .tab-content .my-profile .email,
.wrapper-user-profile .tab-content .my-profile .phone,
.wrapper-user-profile .tab-content .my-profile .create-date,
.wrapper-user-profile .tab-content .my-profile .d-o-b,
.wrapper-user-profile .tab-content .my-profile .address {
	background-repeat: no-repeat;
	background-position: 0 10px;
    background-size: 30px auto;
}
.wrapper-user-profile .tab-content .my-profile .full-name {
	background-image: url("../images/icon/Profile_Name.svg");
	font-size: 14px;
	font-weight: bold;
}
.wrapper-user-profile .tab-content .my-profile .sex { background-image: url("../images/icon/Profile_sex.svg"); }
.wrapper-user-profile .tab-content .my-profile .email { background-image: url("../images/icon/Profile_mail.svg"); }
.wrapper-user-profile .tab-content .my-profile .phone { background-image: url("../images/icon/Profile_phone_number.svg"); }
.wrapper-user-profile .tab-content .my-profile .create-date { background-image: url("../images/icon/Profile_Create_Date.svg"); }
.wrapper-user-profile .tab-content .my-profile .d-o-b { background-image: url("../images/icon/Profile_Date_of_birth.svg"); }
.wrapper-user-profile .tab-content .my-profile .address { background-image: url("../images/icon/Profile_location.svg"); }

.wrapper-user-profile .tab-content .my-profile > ul > li { line-height: 50px; padding-left: 50px; }
.wrapper-user-profile .tab-content .main-title {
	font-size: 30px;
	margin-bottom: 20px;
}
.wrapper-user-profile .tab-content .my-profile .main-title span a { color: #333; }
.wrapper-user-profile .tab-content .my-profile .main-title span {
	background-image: url("../images/icon/Edit.svg");
    background-position: 35px 2px;
    background-repeat: no-repeat;
    background-size: 12px auto;
    float: right;
    font-size: 16px;
    height: 20px;
    padding-right: 25px;
}
/* 	==========================================================================
   							 	Edit Profile User
	=========================================================================*/
.wrapper-user-profile .tab-content .edit-profile {
	background-color: #ffffff;
	padding: 45px;
	min-height: 962px;
	border: 20px solid #E6F1F7;
	width: 100%;
}
.wrapper-user-profile .form-edit-profile .form-control {
    background-color: rgba(0, 105, 180, 0.1);
    background-image: none;
    border: 1px solid transparent;
	border-radius: 1px;
	color: #000;
}
.wrapper-user-profile .form-edit-profile textarea.form-control {
	height: 106px;
	resize: none;
	color: #000;
	font-size: 18px;
	margin-bottom: 35px;
}
.wrapper-user-profile .form-edit-profile .btn-save {
	text-align: center;
}
.wrapper-user-profile .form-edit-profile .btn.btn-lg {
	background-color: #156bb5;
	border-radius: 0;
	color: #fff;

}
.wrapper-user-profile .form-edit-profile .btn.btn-lg:hover {
	background-color: #1b9792;
	color: #fff;
	border-color: #1b9792;
}

/* 	==========================================================================
   							 		My-CV
	=========================================================================*/
.wrapper-user-profile .tab-content .my-cv {
	background-color: #ffffff;
	padding: 45px;
	min-height: 962px;
	border: 20px solid #E6F1F7;
	float: left;
	width: 100%;
}
.wrapper-user-profile .tab-content .my-cv > ul { width: 100%; }
.wrapper-user-profile .tab-content .my-cv > ul > li { line-height: 40px; float: left; width: 100%; }
.wrapper-user-profile .tab-content .my-cv > ul > li:last-of-type { margin-bottom: 20px; }
.wrapper-user-profile .tab-content .my-cv .main-title-block {
	margin-bottom: 10px;
	float: left;
	width: 100%;
}
.wrapper-user-profile .tab-content .my-cv .main-title span a { color: #333; }
.wrapper-user-profile .tab-content .my-cv .main-title span {
	background-image: url("../images/icon/Edit.svg");
    background-position: 35px 2px;
    background-repeat: no-repeat;
    background-size: 12px auto;
    float: right;
    font-size: 16px;
    height: 20px;
    padding-right: 25px;
}
.wrapper-user-profile .tab-content .my-cv .favorite-job > li { float: left; width: 50%; }
.wrapper-user-profile .tab-content .my-cv .favorite-job > li:last-of-type { float: left; width: 100%; }

/* 	==========================================================================
   							 		Edit My-CV
	=========================================================================*/
.wrapper-user-profile .tab-content .edit-cv {
	background-color: #ffffff;
	padding: 45px;
	min-height: 962px;
	border: 20px solid #E6F1F7;
	margin-left: -15px;
}
.wrapper-user-profile .tab-content .my-cv .image-cv {
	position: absolute;
	right: 10%;
	width: 150px;
	height: 185px;
	overflow: hidden;
}
/* 	==========================================================================
   							 		Favorite Career
	=========================================================================*/
#FavoriteJobs .favorite-career {
	border-radius: 0;
	background-color: #fff;
	text-align: center;
	cursor: default;
}
/* 	==========================================================================
	==========================================================================
   							 		TABLATE
	==========================================================================
   	========================================================================== */
@media only screen 	and (min-width : 720px) and (max-width : 1280px){
	.wrapper-user-profile .group-user-profile{ margin: 100px 0 0;}
}


@media only screen 	and (min-device-width : 768px) and (max-device-width : 1024px){
	.wrapper-user-profile .group-user-profile .user-profile {
		background-color: #4592C8;
	}
	.wrapper-front-end .menu-buttom .main-profile > li .averta{margin-top: 27%;}
	.wrapper-user-profile .group-user-profile .user-profile{ margin-bottom: 0}
}