
.header {
	background: var(--surfaceContainers-surface-container-lowest);
	padding: 16px 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	position: fixed;
	top: 0;
	width: 100%;
}

.header .logo, .header .logo a {
	display: flex;
	align-items: center;
	gap: 32px;
}

.header h2 {
	color: var(--project-primary);
	font-size: 20px;
	font-weight: 700;
	position: relative;
}

.header h2::before {
	content: "";
	width: 2px;
	height: 40px;
	border-radius: 1px;
	background: var(--outlines-outline-on-surface);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -16px;
}

.dropdown .dropbtn {
	font-size: 16px;
	background: none;
	border: none;
	display: flex;
	align-items: center;
	gap: 8px;
	outline: none;
	color: #333333;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
}

.dropdown .dropbtn::after {
	content: url('/assets/images/icon-arrow-down.svg');
}

.dropdown .dropbtn div {
	background: var(--Container-secondary-container);
	border-radius: 50%;
	display: flex;
	min-width: 32px;
	height: 32px;
	justify-content: center;
	align-items: center;
}

.dropdown .dropbtn div p {
	color: #fff;
}

.dropdown-content {
	display: none;
	position: absolute;
	background-color: #ffffff;
	overflow: hidden;
	border-radius: 12px;
	min-width: 210px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 9999;
}

.dropdown-content a {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	color: var(--surfacePrimary-on-surface-primary-variant);
	padding: 16px;
	text-decoration: none;
	text-align: left;
}

.dropdown-content a:hover {
	color: var(--Container-on-quaternary-container);
	background: var(--Container-quaternary-container);

}

.dropdown-content a:hover svg path {
	stroke: var(--Container-on-quaternary-container);
}

.show {
	display: block;
}

.icon,
.info-user-mobile,
.overlay-navbar,
.btn-close-menu {
	display: none;
}



.layout header.header {
	position: fixed;
	top: 0;
	left: 270px;
	right: 0;
	height: 64px;
	display: flex;
	align-items: center;
	padding: 14px 32px;
	z-index: 500;
	box-sizing: border-box;
	transition: left 0.3s ease, width 0.3s ease;
	width: calc(100% - 260px);
}


@media screen and (max-width: 600px) {
	.header {
		padding: 16px;
		position: relative;
		height: 65px;
		gap: 0;
	}

	.navbar .icon {
		display: block;
		color: #000000;
		font-size: 24px;
		padding: 0;
	}

	.navbar.responsive .icon {
		display: none;
	}

	.navbar.responsive .btn-close-menu {
		display: block;
		cursor: pointer;
		background: none;
		border: none;
		position: absolute;
		right: 12px;
		top: 8px;
		padding: 0;
	}

	.navbar {
		padding: 0;
		gap: 0;
	}

	.navbar.responsive {
		position: fixed;
		flex-direction: column;
		align-items: flex-start;
		justify-content: flex-start;
		background: #fff;
		top: 0;
		left: 0;
		width: 80%;
		padding: 0;
		gap: 0;
		height: 100dvh;
		z-index: 999;
	}

	.navbar.responsive {
		left: 0;
	}

	.navbar.responsive a {
		display: flex;
		border-radius: 0;
		font-size: 16px;
		padding: 20px 16px;
		border-top: 1px solid #d1d1d1;
		width: 100%;
	}

	.dropdown {
		width: 100%;
		margin-top: auto;
	}

	.navbar.responsive .dropdown .dropbtn {
		display: none;
	}

	.navbar.responsive .dropdown-content {
		display: block;
		width: 100%;
		position: unset;
	}

	.dropdown .dropbtn span {
		display: none;
	}



	.dropdown-content {
		box-shadow: none;
		border: none;
		right: 8px;
	}

	.navbar.responsive .info-user-mobile {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 16px;
		padding: 23px 32px;
	}

	.info-user-mobile div {
		width: 70px;
		height: 70px;
		background: #233060;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.info-user-mobile div p {
		font-size: 32px;
		font-weight: bold;
		color: #fff;
	}

	.info-user-mobile>p {
		font-size: 20px;
		font-weight: bold;
	}

	body.no-scroll {
		overflow: hidden;
	}

	div.overlay-navbar {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.5);
		z-index: 1;
		opacity: 0;
		transition: opacity 0.5s ease;
	}

	.overlay-navbar.show {
		display: block;
		opacity: 1;
	}

	.navbar.responsive .overlay-navbar {
		display: block;
	}

	.header h2 {
		display: none;
	}
}