#previewImage {
	display: none;
	max-width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #ececee;
	border-radius: 50%;
}

.profile-content-wrap {
	background: var(--white);
	border: 0.3px solid var(--grey-500);
	border-radius: 14px;
	padding: 35px 15px;
}

.img-preview {
	width: 80px;
	height: 80px;
	margin: auto;
	background: url("../images/profile.svg") no-repeat center center / 100px;
	border-radius: 50%;
	position: relative;
	cursor: pointer;
	overflow: hidden;
	border: 1px solid rgba(0, 0, 0, 0.2);
}

.profile-content-inner {
	max-width: 750px;
	margin: auto;
}

.profile-content-inner.full-w {
	max-width: 100%;
}

.input-wrapper.img-upload {
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
}

.common-form .input-wrapper input[type="file"] {
	appearance: none;
	opacity: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 50%;
	object-fit: cover;
}

.input-wrapper.img-upload label {
	width: fit-content;
	margin: auto;
	font-size: 14px;
	letter-spacing: 0.54px;
	font-weight: 600;
	color: var(--primary-blue);
	cursor: pointer;
}

/* Breadcrumb navigation */
.settings-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
}

.settings-breadcrumb a {
	color: var(--primary-blue);
	text-decoration: none;
}

.settings-breadcrumb a:hover {
	text-decoration: underline;
}

.settings-breadcrumb .separator {
	color: var(--grey-900);
	font-size: 12px;
}

.settings-breadcrumb .current {
	color: var(--grey-600);
}

@media screen and (max-width: 767px) {
	.img-preview {
		width: 65px;
		height: 65px;
	}

	.profile-content-wrap {
		padding: 20px 15px;
		border-radius: 12px;
	}
}