/* Menu */

.menu {
	position: fixed;
	width: 288px;
	height: 100%;
	top: 50%;
	left: 288px;
	background-color: #fff;
	transform-origin: 0% 0%;	
	transform: translate(-200%, -50%);
	transition: transform 0.3s cubic-bezier(0.77, 0.2, 0.05, 1.0);
	z-index: 1000;
}

.menu--visible {
	transform: translate(-100%, -50%);
}

.menu__list {
	width: 100%;
	/* padding-top: 18vh; */
}

.menu__body {
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	height: calc(100% - 56.59px);
}

.menu__item {
	display: block;
	padding: 12px 0 12px 40px;
	font-size: 16px;
	text-decoration: none;
	color: #2E3033;
	transition: color 0.3s ease;
	cursor: pointer;
	line-height: 1.25;
	font-weight: 450;
	text-transform: capitalize;
}

.menu__item:hover {
	background-color: #E7E9EC;
	color: #000;
	font-weight: 700;
	padding: 12px 0 12px 34px;
}

.menu__header {
	padding: 27px 0 0 40.42px;
	display: flex;
	justify-content: flex-start;
}

.menu__close-button {
	background-color: transparent;
	border: none;
	margin: 5px;
}

.menu-gradient-visible {
	position: fixed;
	top: 0;
	left: 0;
	background: linear-gradient(90deg, #0000009e 0.17%, rgba(0, 0, 0, 0) 66.37%);
	transform: matrix(1, 0, 0, 1, 0, 0);
	width: 700px;
	height: 100%;
}