.Left-menubar {
	width: 70px;
	height: 100vh;
	background-color: var(--PRIMARY-COLOR);
	display: grid;
	grid-template-rows: auto 1fr auto;
	align-items: end;
	padding: 10px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
}

.leftmenu-logo {
	width: 35px;
}

.leftmenu-icons {
	width: 97%;
}

.top-icons {
	display: grid;
	gap: 10px;
	justify-items: center;
}

.bottom-icons {
	display: grid;
	justify-items: center;
}

.logo {
	width: 40px;
	height: 40px;
	border-radius: 50%;
}


.custom {
	width: 70px !important;
}

.head-navbar {
	flex-grow: 1 !important;
	padding: 0% !important;

}

.head-card {
	width: 100%;
	height: 55px !important;
	background-color: #ffffff !important;
	color: white;
	border-radius: 0px !important;
	padding: 10px;
	position: sticky !important;
	left: 0;
	top: 0;
	z-index: 999;
}

.search-bar {
	width: 15%;
	border: 1px solid #e9ebec;
	border-radius: 5px;
}

.search-container {
	position: relative;
	width: 100%;
	max-width: 300px;
}

.search-input {
	width: 70%;
	height: 35px;
	padding: 10px 10px 10px 35px;
	border: 1px solid #e9ebec;
	border-radius: 4px;
	background-color: #f5f5f5;
}

.search-input::placeholder {
	color: #888;
}

.search-icon {
	position: absolute;
	top: 28%;
	left: 10px;
}

.header-font-1 {
	color: #212529 !important;
}

.header-font-2 {
	color: #878a99 !important;
}

.leftmenu-icons,
.leftmenu-logo {
	cursor: pointer;
	transition: all 0.2s ease-in-out;
	border-radius: 10px;
}

.leftmenu-link:active,
.leftmenu-icons.active {
	border: 1px solid white !important;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px !important;
}

.tooltip-container {
	position: relative;
	display: inline-block;
}

.tooltip-text {
	visibility: hidden;
	background-color: #fff7f7;
	color: #000000;
	text-align: center;
	padding: 4px 8px;
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	bottom: -35px;
	/* show below */
	left: 50%;
	transform: translateX(-50%);
	white-space: nowrap;
	font-size: 12px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.tooltip-container:hover .tooltip-text {
	visibility: visible;
	opacity: 1;
}

.tooltip-announcement {
	position: absolute !important;
	left: 44px !important;
}

.profile-dropdown .profile-toggle {
	cursor: pointer;
}

.profile-dropdown .profile-menu {
	min-width: 180px;
	border-radius: 10px;
}

.dropdown-item {
	color: #8E8E8E !important;
}

.dropdown-item:hover {
	background-color: rgba(232, 232, 232, 1) !important;
	border-radius: 5px;
}

.dropdown-menu {
	top: 15px !important;
	box-shadow: -3px 4px 8.9px 4px rgba(78, 124, 174, 0.12);
}

.header-avatar {
	width: 35px;
	height: 35px;
}