#header {
	background-color: #213740;
	position: fixed;
	width: 100%;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
	z-index: 1110;
}

#header a {
	display: block;
	padding: 10px;
	color: #ccc;
}

#header a:hover {
	text-decoration: none;
	color: #fff;
}

#header a.logo {
	font-weight: bold;
	padding: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	height: 100%;
}

#header a.logo img {
	max-width: 80px;
	max-height: 100%;
}

#header .menu {
	display: flex;
	align-items: center;
	justify-content: center;
}

#header a.menu_opener {
	padding: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

#header .submenu {
	display: none;
	background-color: #fff;
}

#header .submenu > a {
	display: block;
	padding: 5px 15px;
	color: #333;
}

#header .submenu > a:hover {
	text-decoration: none;
	color: #000;
	background-color: #eee;
}

#header .submenu_container {
	position: relative;
}
.submenu_opener {
	text-transform: uppercase;
}

#header .submenu_container > a::after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0dd";
	margin-left: 10px;
}

#header .submenu {
	position: absolute;
	top: 52px;
	min-width: 200px;
	right: 10px;
	border: 1px solid #ccc;
	box-shadow: 5px 5px 5px #333;
}

@media (min-width: 1200px) {
	#header a.menu_opener {
		display: none;
	}
}

#header .notifications_tab {
	background-color: #bf0426;
	color: #fff;
	font-size: 12px;
	text-align: center;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	padding-top: 20px;
	padding-bottom: 5px;
	padding-left: 2px;
	padding-right: 2px;
	margin-right: 10px;
}

#header a.notifications_tab {
	color: #fff !important;
}

#header .notifications_tab .bdg {
	color: #bf0426;
	background-color: #fff;
	font-size: 16px;
	font-weight: bold;
	border-radius: 100%;
	margin-top: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	margin-left: auto;
	margin-right: auto;
}

#menu {
	background-color: #213741;
	position: fixed;
	top: 60px;
	left: 0;
	width: 250px;
	height: calc(100vh - 60px);
	padding: 0 10px;
	display: none;
	overflow: auto;
	z-index: 1100;
}

#menu a {
	display: block;
	padding: 10px;
	color: #333;
	position: relative;
	background-color: #fff;
	margin-top: 10px;
	text-transform: uppercase;
	font-size: 15px;
	border-radius: 5px;
}

#menu a:hover {
	text-decoration: none;
	color: #fff;
	background-color: #666;
}

#menu a.active {
	text-decoration: none;
	color: #fff;
	background-color: var(--c2);
}

#menu .submenu_container > a::after {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f0dd";
	margin-left: 10px;
	position: absolute;
	right: 10px;
}

#menu a.submenu_opener2 {
	margin-top: 5px;
	padding: 5px 10px 5px 10px;
	font-size: 12px;
}

#menu .submenu {
	display: none;
	margin-left: 15px;
}

#menu .submenu > a {
	padding: 5px 10px 5px 10px;
	font-size: 12px;
	margin-top: 5px;
	text-transform: uppercase;
}

#menu .submenu2 {
	display: none;
	margin-left: 15px;
}

#menu .submenu2 > a {
	padding: 5px 10px 5px 10px;
	font-size: 12px;
	margin-top: 5px;
	text-transform: uppercase;
}

.main {
	height: calc(100% - 60px);
}

.main h3 {
	text-transform: uppercase;
	font-weight: 500;
	color: var(--c2);
	margin-bottom: 20px;
}

@media (min-width: 1200px) {
	.main {
		margin-left: 250px;
		width: calc(100% - 250px);
	}

	#menu {
		display: block;
	}
}

#menu .times_menu_badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu .times_menu_badge,
#menu .times_menu_badge:hover {
	padding: 10px;
	background-color: #fff;
	color: #000;
	text-align: center;
}

#menu .times_menu_badge .label {
	text-transform: uppercase;
}

#menu .times_menu_badge .bdg {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #bf0725;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
}

#menu .orders_menu_badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu .orders_menu_badge,
#menu .orders_menu_badge:hover {
	padding: 10px;
	background-color: #bf0426;
	color: #fff;
	text-align: center;
}

#menu .orders_menu_badge img {
	height: 30px;
	margin-bottom: 10px;
}

#menu .orders_menu_badge .label {
	text-transform: uppercase;
	font-size: 16px;
}

#menu .orders_menu_badge .bdg {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #fff;
	font-size: 16px;
	color: #bf0426;
	font-weight: bold;
	border-radius: 5px;
}

#menu .reservations_menu_badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu .reservations_menu_badge,
#menu .reservations_menu_badge:hover {
	padding: 10px;
	background-color: #fff;
	color: #000;
	text-align: center;
}

#menu .reservations_menu_badge .label {
	text-transform: uppercase;
}

#menu .reservations_menu_badge .bdg {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #bf0426;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
}
#menu .reservations_menu_badge::after {
	right: 45px !important;
}
#menu .payment_menu_badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu .payment_menu_badge,
#menu .payment_menu_badge:hover {
	padding: 10px;
	background-color: #fff;
	color: #000;
	text-align: center;
}

#menu .payment_menu_badge .label {
	text-transform: uppercase;
}
#menu .payment_menu_badge .bdg {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #bf0426;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
}
#menu .payment_menu_badge::after {
	right: 45px !important;
}
#menu .orders_menu_badge .label,
#menu .selfordering_menu_badge .label,
#menu .reservations_menu_badge .label,
#menu .times_menu_badge .label,
#menu .payment_menu_badge .label {
	font-weight: 600;
}

#menu .menu_badge {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#menu .menu_badge .label {
	text-transform: uppercase;
}

#menu .menu_badge .bdg {
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #bf0426;
	font-size: 16px;
	color: #fff;
	font-weight: bold;
	border-radius: 5px;
}

#menu .selfordering_menu_badge,
#menu .selfordering_menu_badge:hover {
	background-color: #fff;
	color: #000;
}

#header.light {
	background-color: #f8f9fa;
}

#header.light a {
	color: rgba(0, 0, 0, 0.5);
}

#header.light a:hover {
	color: rgba(0, 0, 0, 0.9);
}

#header.light a.active {
	color: rgba(0, 0, 0, 0.9);
}

#menu .button-help {
	background-color: #bf0426;
	color: #fff;
	font-weight: 600;
	text-transform: uppercase;
}
