/* menu line underneath */

#expanded-menu {
	display: none;
	background: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(10px);
	border-left: 2px solid var(--light-color);
	height: 100vh;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 9999999999;
	position: fixed;
	top: 0;
	left: auto;
	max-width: 300px;
	width: 100%;
	right: 0;
	bottom: 0;
}

#expanded-menu.show {
	display: block;
}

#expanded-menu img {
	max-width: 100%;
	width: 100%;
}

#expanded-menu .menu {
	list-style-type: none;
	padding: 0;
}

#expanded-menu .mobile-menu {
	width: 100%;
}

#expanded-menu li {
	list-style-type: none !important;
}

#expanded-menu .menu li {
	position: relative;
	margin-bottom: 15px;
}

#expanded-menu .menu li a {
	background: var(--primary-color);
	font-weight: bolder !important;
	font-family: "Archivo Black", sans-serif !important;
	padding: 7.5px 15px;
	border-radius: 7px;
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1rem;
	transition: background 0.3s ease-in-out;
}

#expanded-menu .menu li.current_page_item a {
	background: var(--secondary-color);
}

#expanded-menu .menu li a:hover {
	background: var(--secondary-color);
}

#expanded-menu .menu li a:after {
	font-family: 'Material Symbols Outlined';
	content: "\e5df";
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	font-size: 2rem;
	color: var(--text-color);
	text-decoration: none;
}

#expanded-menu .menu li a {
	color: var(--text-color);
	text-decoration: none;
}

#expanded-menu .et_pb_button {
	font-size: .8rem;
	width: 100%;
	text-align: center;
}

	#close-mobile-menu i,
	#close-mobile-menu p,
	#expanded-menu h2,
	#expanded-menu .cart-items i {
		color: var(--light-color) !important;
		cursor: pointer;
	}

#close-mobile-menu i,
#close-mobile-menu p {
	font-size: 1.5rem;
	font-weight: bolder !important;
}