/* ================= */
/* === Menu Page === */
/* ================= */

#menu-page {
	background: #ffffff;
	margin-bottom: 140px;
	padding-top: 200px;
}

#menu-page .container {
	display: flex;
	flex-direction: row;
}

/* Drinks page */

.page-id-558 #menu-page .main h1 {
	margin-bottom: 40px;
}

.page-id-558 #menu-page .main .info {
	display: none;
	visibility: hidden;
}

/* Sidebar */

#menu-page .sidebar {
	width: 300px;
	will-change: min-height;
	display: block;
	visibility: visible;
}

#menu-page .sidebar #menu-nav {
	padding-top: 25px;
}

#menu-page .sidebar .inner {
	transform: translate(0, 0);
	transform: translate3d(0, 0, 0);
	will-change: position, transform;
}

#menu-page .sidebar ul {
	margin: 0;
	padding: 0;
}

#menu-page .sidebar ul li {
	list-style: none;
	margin-bottom: 25px;
}

#menu-page .sidebar ul li a {
	font-family: 'Fraunces', serif;
	font-size: 20px;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

#menu-page .sidebar ul li.active a {
	border-bottom: 2px solid #1C1C1E;
}

#menu-page .sidebar ul li a:hover {
	text-decoration: underline;
	text-decoration-style: dotted;
}

/* Main */

#menu-page .main {
	width: calc(100% - 300px);
	padding-left: 100px;
}

#menu-page .main h2 {
	margin-bottom: 40px;
}

#menu-page .icon {
	height: 22px;
	width: 22px;
	background-size: 22px;
	background-position: center;
	background-repeat: no-repeat;
}

#menu-page .icon.vegetarian {
	background-image: url("/wp-content/themes/one-sixteen/images/icon-vegetarian.svg");
}

#menu-page .icon.gluten-free {
	background-image: url("/wp-content/themes/one-sixteen/images/icon-gluten-free.svg");
}

#menu-page .icon.spicy {
	background-image: url("/wp-content/themes/one-sixteen/images/icon-spicy.svg");
}

#menu-page .main .info {
	margin-bottom: 40px;
}

#menu-page .main .info p {
	font-family: 'Fraunces', serif;
	display: inline-block;
	margin-right: 30px;
	margin-bottom: 0;
}

#menu-page .main .info .text,
#menu-page .main .info .icon {
	display: inline-block;
	vertical-align: middle;
}

#menu-page .main .info .text {
	margin-left: 10px;
}

#menu-page .menu-section > .inner {
	padding-top: 40px;
}

#menu-page .main .subtext {
	margin-top: -25px;
	margin-bottom: 60px;
	font-style: italic;
}

#menu-page .main .subtext p:nth-last-child(1) {
	margin-bottom: 0;
}

#menu-page .main .download-links {
	margin-top: -20px;
	margin-bottom: 40px;
}

#menu-page .main .download-links a {
	font-size: 30px;
	margin-right: 40px;
	margin-bottom: 20px;
	display: inline-block;
	text-decoration: underline;
	text-decoration-style: dotted;
}

#menu-page .main .download-links a:hover {
	text-decoration-style: solid;
}

#menu-page .menu-item {
	margin-bottom: 80px;
}

#menu-page .menu-item:nth-child(odd) > .inner {
	padding-right: 60px;
}

#menu-page .menu-item:nth-child(even) > .inner {
	padding-left: 60px;
}

#menu-page .menu-section h3 {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 20px;
}

#menu-page .menu-section .description {
	margin-bottom: 20px;
}

#menu-page .menu-section .bottom {
	display: flex;
	align-items: flex-end;
}

#menu-page .menu-section .bottom .price {
	margin-right: auto;
	margin-bottom: 0;
}

#menu-page .menu-section .bottom .icon {
	margin-left: 20px;
}

/* Mobile Menu */

#menu-page #mobile-menu-nav {
	position: fixed;
	top: 80px;
	z-index: 50;
	display: none;
	visibility: hidden;
}

.logged-in #menu-page #mobile-menu-nav {
	top: 126px;	
}

#menu-page #mobile-menu-nav ul {
	width: 100%;
	white-space: nowrap;
	overflow-x: scroll;
	position: fixed;
	background: #000000;
	padding: 7px 0;
	margin: 0;
}

#menu-page #mobile-menu-nav ul::-webkit-scrollbar {
  display: none;
}

#menu-page #mobile-menu-nav ul {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


#menu-page #mobile-menu-nav ul li {
	display: inline-block;
	margin-top: 0;
	margin-right: 30px;
}

#menu-page #mobile-menu-nav ul li:nth-child(1) {
	margin-left: 30px;
}


#menu-page #mobile-menu-nav ul li a,
#menu-page #mobile-menu-nav ul li a:hover,
#menu-page #mobile-menu-nav ul li.active a {
	color: #ffffff;
	text-decoration: none;
}

/* ===================== */
/* === Media Queries === */
/* ===================== */

/* Extra Large devices (desktops, less than 1281px) */
@media (max-width: 1280.98px) {



}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {

	#menu-page .main {
		padding-left: 40px;
	}

	#menu-page .menu-item:nth-child(odd) > .inner {
		padding-right: 20px;
	}
	
	#menu-page .menu-item:nth-child(even) > .inner {
		padding-left: 20px;
	}

}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {

	#menu-page > .container {
		padding-left: 45px;
		padding-right: 45px;
	}

	#menu-page .sidebar {
		display: none;
		visibility: hidden;
	}

	#menu-page .main {
    width: 100%;
    padding: 0;
	}

	#menu-page #mobile-menu-nav {
		display: block;
		visibility: visible;
	}

	#menu-page .menu-item:nth-last-child(1) {
		margin-bottom: 0;
	}

	#menu-page .menu-item:nth-child(odd) > .inner,
	#menu-page .menu-item:nth-child(even) > .inner {
		padding: 0;
	}

}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {



}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {

	#menu-page .main .download-links a {
		display: block;
	}

}







