:root { --topbar-height: 70px; }

#topbar {

	background: #ffffff;
	border-bottom: 1px solid #00000010;

	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 1001;

	height: var(--topbar-height);
	width: 100%;

	top: 0;
	left: 0;

}

#topbar .topbar__content {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#topbar .topbar__brand {
	width: 100%;
}

#topbar .topbar__brand img {
	height: 30px;
}


/* LINKS BOX */

#topbar .topbar__links {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}

#topbar .topbar__links .link__item {
	white-space: nowrap;
	transition: all 300ms;
	margin: 0px 10px;
	padding: 5px 15px;
	font-size: .9em;
	font-weight: 400;
	text-decoration: none;
	color: #343a40c1;
}

#topbar .topbar__links svg {
	width: 20px;
	max-height: 20px;
	margin-top: -2px;
	margin-right: 5px;
	stroke-width: 1.2px;
}

#topbar .topbar__links .link__active {
	color: #000 !important;
}

#topbar .topbar__links .link__item:hover {
	color: #000;
}


/* ACCOUNT BOX */

#topbar .topbar__actions {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	flex-wrap: nowrap;
	width: 100%;
}

#topbar .topbar__account {
	width: 40px;
	height: 40px;
	cursor: pointer;
	border-radius: 100%;
	transition: box-shadow 400ms;
	box-shadow: 0 0 0 3px transparent;
	background-size: cover !important;
	background-position: center center !important;
}

#topbar .topbar__account:hover {
	box-shadow: 0 0 0 3px #00000008;
}

#topbar .emptyPicture {
	background: #e7e8ec !important;
	color: #1e2022c1 !important;

	display: flex;
	justify-content: center;
	align-items: center;

	font-weight: 600;
	font-size: .9em;
}

/* DROPDOWN BOOTSTRAP */

#topbar .topbar__actions * {
	transition: all 300ms;
}

#topbar .dropdown-menu {
	width: 250px;
	margin-top: 5px !important;
	border-radius: 15px !important;
	overflow: hidden !important;
	border: none !important;
	box-shadow:  9px 9px 18px #f1f1f170,
	             -9px -9px 18px #f1f1f170;
	font-weight: 300;
	font-size: .9em;
}

#topbar .dropdown-menu hr {
	margin: 8px 0px !important;
	border-color: #00000020;
}

#topbar .dropdown-menu .dropdown-item {
	font-size: .9em;
	color: #343a40;
}

#topbar .dropdown-menu .dropdown-item svg {
	height: 20px;
	max-width: 20px;
	margin-top: -2px;
	stroke-width: 1px;
	margin-right: 5px;
}

#topbar .dropdown-menu .dropdown-item:focus {
	background: #f1f1f1 !important;
	color: #343a40;
}

#topbar .dropdown-menu .profile__pic {
	width: 40px;
	height: 40px;

	min-width: 40px;
	min-height: 40px;

	background: red;
	border-radius: 100%;
	margin-right: 15px;
}

#topbar .dopdown__profile {
	padding: 5px 15px;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

#topbar .dopdown__profile p {
	margin-bottom: 0px;
	font-size: .9em;
	text-overflow: ellipsis !important;
	white-space: nowrap !important;
	overflow: hidden !important; 
}

#topbar .profile__text {
	width: 150px;
}

#topbar .profile__text .profile__name {
	color: #000 !important;
	font-weight: 400 !important;
	font-size: .9em;
	line-height: 1.5;
}

#topbar .profile__text .profile__mail {
	font-size: .8em;
}


/* MOBILE MENU MODAL */
#MobileMenuModal .menu__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}

#MobileMenuModal img.menu__logo {
	width: 35px;

}

#MobileMenuModal h1.menu__title {
	font-size: 1.5em;
	font-weight: 400;
	margin-bottom: 0px;
}

#MobileMenuModal .menu__close svg {
	width: 25px;
	stroke-width: 1px;
}

#MobileMenuModal .menu__content {
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 70%;
}

#MobileMenuModal .menu__content .menu__link {
	text-align: center;
	padding: 15px 0px;
	font-size: 1.5em;
	font-weight: 300;
	color: #343a40;
	width: 100%;

	display: flex;
	justify-content: center;
	align-items: center;
}

.menu__link svg {
	width: 1.3em;
	stroke-width: 1px;
	margin-right: 10px;
}

.mobileMenuBox {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	height: 100vh;
}