/* navbar user */
.nav-right li {
	cursor: pointer;
}
.nav-right li img {
	margin: auto 0 !important;
	vertical-align: middle;
}
.nav-right li p {
	color: var(--white-light);
	font-size: 0.9em;
	font-weight: 300;
	font-family: var(--primary-font);
	margin: auto 12px;
}
.nav-right li:hover p {
	color: var(--gray-light);
}
.menu-user {
	position: absolute;
	right: 50px;
	top: 80px;
	display: flex;
	background: var(--bg);
	border-radius: 8px;
	box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.25);
	display: none;
}
.left-user-menu {
	background: var(--bg);
	padding: 15px 0 15px 15px;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
}
.left-user-menu ul li {
	color: var(--white-light);
}

.right-user-menu {
	padding: 15px 15px 15px 0;
}
.right-user-menu a {
	color: var(--white-light);
	font-weight: 400;
	margin-left: 0;
	padding-left: 5px;
	padding-right: 0;
}
.menu-user li {
	padding: 10px;
}
.right-user-menu li:hover {
	background: var(--purple-light-hover);
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.menu-user::before {
	content: '';
	position: absolute;
	top: -20px;
	right: 15px;
	border: 10px solid;
	border-color: transparent transparent var(--bg) transparent;
}
.user.active .menu-user {
	display: flex;
}
.flex {
	display: flex;
}
.container {
	padding: 4%;
}
hr {
	border: 1px solid var(--bg);
	margin: 14px 0;
}
/* End Nacbar User */

#edit-profile {
	background-color: var(--bg-section);
	width: 50%;
	height: 120vh;
	margin: 4% auto;
	padding: 3%;
	border-radius: 14px;
	color: var(--white-light);
}
.card-body {
	text-align: left;
}
.header-data {
	margin-bottom: 20px;
	justify-content: space-between;
}
.left-profile img {
	max-width: 200px;
	width: 150px;
	height: 150px;
	border: 1px solid var(--white-light);
	border-radius: 12px;
	cursor: pointer;
}
.left-profile p {
	font-size: 12px;
	color: var(--gray-light);
	text-align: center;
	cursor: pointer;
}
.right-profile {
	width: 100%;
	margin-left: 30px;
}
.right-profile h3 {
	font-weight: 500;
	font-family: var(--primary-font);
	margin: 16px 0;
}

.data label {
	font-family: var(--primary-font);
	font-size: 16px;
	font-weight: 300;
}
input {
	width: 100%;
	height: 42px;
	border-radius: 2px;
	padding: 8px 18px;
	margin: 10px 0 18px;
	border: none;
	color: var(--bg-section);
	font-size: 14px;
	background-color: var(--white-light);
}
textarea:focus,
input:focus {
	border: none !important;
	box-shadow: none;
	outline: none;
}
.password {
	position: relative;
}
::placeholder {
	font-size: 13px;
}
textarea {
	width: 100%;
	height: 80px;
	border-radius: 2px;
	padding: 8px 18px;
	border: none;
	color: var(--bg-section);
	font-size: 14px;
	background-color: var(--white-light);
}
.sosmed {
	justify-content: space-between;
	flex-wrap: wrap;
}
.input {
	width: 45%;
}
.sosmed-title {
	margin: 40px 0 16px;
	font-weight: 500;
	font-family: var(--primary-font);
}
button {
	padding: 6px 26px;
	border-radius: 4px;
	border: none;
	float: right;
	margin: 20px 0 10px 10px;
	color: var(--white-light);
	font-size: 14px;
	font-weight: 300;
	cursor: pointer;
}
button[type='button'] {
	background-color: var(--purple-light);
}
button[type='button']:hover {
	background-color: var(--purple-light-hover);
}
button[type='submit'] {
	background-color: var(--purple-normal);
}
button[type='submit']:hover {
	background-color: var(--purple-normal-hover);
}

@media only screen and (max-width: 900px) {
	.user {
		flex-direction: row-reverse;
		justify-content: start;
		padding-left: 20px;
	}
	.menu-user {
		right: 150px;
		top: 280px;
	}
	.right-user-menu a {
		margin: 0;
		padding: 1.4px 0;
		text-align: start;
	}
}

@media only screen and (max-width: 320px) {
	.menu-user {
		right: 80px;
		top: 280px;
	}
	.menu-user li {
		padding: 4px;
	}
}
