#drawer {
	height: 100%;
	width: 100%;
	background: lightblue;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

#menu-wrapper {
	height: 100vh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	overflow-y: scroll;
	overflow-x: hidden;
}


#menu-wrapper ul {
	margin: 0;
	padding: 0;
	background: white;
	flex-direction: column;
	justify-content: center;
	list-style: none;
	overflow-y: scroll;
	overflow-x: hidden;
}

#menu-wrapper>ul {
	justify-content: unset;

}

#menu-wrapper>div {
	padding: 10px 20px;
}

#menu_top *,
#menu_bottom * {
	max-width: 100%;
}

#menu-wrapper ul ul {
	height: 100%;
	padding-top: 130px;
}

#menu-wrapper li {
	font-family: var(--menu_items_font_family, var(--all_font_family), sans-serif);
	color: var(--menu_items_font_color, var(--all_font_color), black);
	font-style: var(--menu_items_font_style, var(--all_font_style), normal);
	font-weight: var(--menu_items_font_weight, var(--all_font_weight), bold);
	text-transform: var(--menu_items_font_transform, var(--all_font_weight), none);
	font-size: var(--menu_items_font_size, .67em);
}

#menu-wrapper li a:not(.btn) {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	cursor: pointer;
	padding: 16px 20px;
	margin: 2px;
	font-family: var(--menu_items_font_family, var(--all_font_family), sans-serif);
	color: var(--menu_items_font_color, var(--all_font_color), black);
	font-style: var(--menu_items_font_style, var(--all_font_style), normal);
	font-weight: var(--menu_items_font_weight, var(--all_font_weight), bold);
	text-transform: var(--menu_items_font_transform, var(--all_font_weight), none);
	font-size: var(--menu_items_font_size, .67em);
	transition: all .3s;
}
#menu-wrapper li a.btn {
	margin: 16px 20px;
}

#menu-wrapper,
#menu-wrapper li a:not(.btn),
#menu-wrapper ul {
	background-color: var(--header_background);
}

#menu-wrapper,
#menu-wrapper li a:not(.btn),
#menu-wrapper ul {
	background-color: var(--scrolling_header_background);
}

#mobile_menu {
	overflow: auto;
}

#mobile_site_logo {
	padding: 15px;
}

#mobile_menu li.btn {
	display: inline-block;
	width: 90%;
	margin: 20px auto;
}

#mobile_menu .btn a {
	display: inline-block;
	width: 90%;
	padding: 0;
	background: inherit;
}

.animate {
	transition: .25s;
}

.sub-menu::before,
#menu-wrapper::before {
	content: '';
	width: 100%;
	height: 50px;
	/* background: linear-gradient(0deg, var(--header_background) 0%, rgba(0, 0, 0, 0) 75%); */
	position: fixed;
	bottom: 0;
}

#menu-wrapper ul.sub-menu {
	padding-bottom: 50px;
}