.menuContainer {
	height: 100%;
	background-color: var(--background-color);
}

.headerMenuContainer {
	display: flex;
	height: var(--header-height);
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 0 8px;
	border-bottom: 2px solid rgba(110, 110, 110, 0.3);
}

.headerMenuDev {
	font-size: 12px;
	color: gray;
	cursor: pointer;
	text-decoration: none !important;
}

.pwaDiv {
	width: 100%;
	bottom: 0;
	border-top: 10px solid var(--footer-secondary);
}

.pwaBtn {
	background-color: var(--footer-primary) !important;
	border-radius: unset !important;
	width: 100%;
	text-transform: unset !important;
}

.pwaSpan {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 16px 8px;
	color: white;
	gap: 2rem;
	font-weight: bold;
}

.pwaBtn:hover {
	background-color: var(--hover-color) !important;
}

.pwaBtn:after {
	content: "»";
	font-size: 20px;
	opacity: 0;
	transition: 0.7s;
}
.pwaBtn:hover:after {
	opacity: 1;
}

.menuBottomDiv {
	display: flex;
	flex-direction: column;
	gap: 5px;
	position: absolute;
	bottom: 0;
	width: 100%;
}

.terratwinLink {
	cursor: pointer;
	display: flex;
	font-size: 11px;
	justify-content: center;
	padding-right: 5px;
	align-items: center;
	gap: 4px;
	text-decoration: none !important;
}

/* MUI Menu Icons */
.MuiListItemIcon-root {
	width: 3rem;
}
