@charset "utf-8";
/* CSS Document */

/* Side Bar Styles */

#SideBar {
	float: left;
	height:400px;
	padding: 0px;
	margin:10px 0 10px 0;
	position:relative;
}
.SideBarBackground {
	background-color: #A6C0C5;
}
#SideBarFilters {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	-webkit-transition: width 1s;
	transition: width 1s;
	overflow:hidden;
	z-index:100;
	border-radius: 15px;
}
.SideBarHeading {
	color: #000000;
	font-size: 1.1em;
	font-style: italic;
	padding: 10px;
	font-weight:bold;
}
.SideBarSection {
	padding: 5px;
	margin: 6px;
	background-color: #E8E8D5;
	border-radius: 15px;
}

.SideBarSection p {
	padding:0px;
	font-size:0.8em;
}
.SideBarSection a {
	text-decoration:none;
}
.SideBarSection a:hover {
	color:#000000;
}
#SideBarOpenButton {
	font-family: 'Lato';
	cursor: pointer;
	text-decoration: none;
	color:#000000;
	background-color: #A6C0C5;
	text-align:center;
	font-weight:bold;
	font-size:14px;
	padding:6px;
	width:200px;
	-webkit-transform: rotate(-90deg);
	-ms-transform: rotate(-90deg);
	-moz-transform: rotate(-90deg);
	-o-transform: rotate(-90deg);
	transform:rotate(-90deg);
	position:relative;
	top:100px;
	left:-90px;
	z-index:20;
}
.SideBarCloseButton {
	font-family: 'Lato';
	cursor: pointer;
	text-decoration: none;
	color:#000000;
	background-color: #A6C0C5;
	text-align:center;
	font-weight:bold;
	font-size:15px;
	padding:4px;
	position:absolute;
	top:2px;
	right:2px;
}
.FilterSelectAll {
	size:0.9em;
	font-weight:bold;
}
.SideBarOptionButton {
	font-family: 'Lato';
	cursor: pointer;
	text-decoration: none;
	border: none;
	text-align: center;
	display: block;
	color: #000000;
	font-size: 14px;
	font-weight: normal;
	border-radius: 10px;
	width: 100%;
	padding: 4px;
	margin: 4px 0 4px 0;
	background-color: #A6C0C5;
}
.MenuSelectButton {
	font-family: 'Lato';
	cursor: pointer;
	text-decoration: none;
	border: 1px solid #0D639E;
	text-align: center;
	display: inline-block;
	color: #000000;
	font-size: 13px;
	font-weight: normal;
	border-radius: 10px;
	padding: 1px 6px 1px 6px;
	margin: 4px 6px 4px 0;
	background-color: #A6C0C5;
}
.MenuSelectButton:hover {
	color: #FFFFFF;
}
.FavouritesButton {
	background-color: #890000;
	color:#FFFFFF;
}
#MainMenuDisplay {
	float: left;
	padding: 15px;
	border: 1px solid #0D639E;
	margin-right: 2%;
	background-color: #FFFFFF;
}
#MenuGreeting {
	width:100%;
	min-height:350px;
}
.MenuGreetingHeader {
	text-align:center;
	font-weight:bold;
	padding:20px;
	font-size:24px !important;
}
#MenuGreeting p {
	text-align:center;
	font-size:18px;
}
.MenuSection {
	float:left;
	padding:0 2% 0 2%;
}
[id*="DishType_"] {
	display:none;
	width:100%;
 }
.MenuSection h5 { /* Dish / Item name */
	font-weight:bold;
	padding:0;
	margin:20px 0 0 0;
	font-size:1em;
}
.MenuSection a {
	font-size:1em;
}
.MenuSection p { /* Dish / item description */
	margin:3px 0 0 0;
	padding:0;
}
.MenuDishHeader {
	text-align: center;
	font-weight: bold;
	font-size: 1.15em;
	margin: 0;
	padding: 20px 0 0 0;
	color: #0D639E;
}
.MenuDishDesc {
	text-align:center;
	font-size:1.0em;
	margin:0;
	padding:0 0 20px 0;
}
.MenuHeaderPrices {
	text-align:center;
	font-weight:bold;
	color:#570504;
	padding:5px 0 10px 0;
}
span {
	margin:0;
	padding:0 10px 0 10px;
}
#OrderDetail {
	float:left;
	height:500px;
}
#OrderDetail iframe {
	width:100%;
	height:100%;
	border:none;
}
.SetMenuHeader {
	font-size:1.1em;
	font-weight:bold;
	color:#0D639E;
	padding: 20px 0 5px 0;
	margin:0;
}
.RedText {
	color:#D32427;
	font-weight:bold;
}
#ItemAddedOuter {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	display:block;
	height:1px;
	background-color:#384F5F;
	z-index:5000;
}
#ItemAddedPopup {
	display:block;
	position: absolute;
	top:-50px;
	right: 10%;
	overflow: hidden;
	-webkit-transition: top 2s;
	transition: top 2s;
	z-index:2000;
	padding:10px;
	cursor: default;
	width:85%;
	max-width:800px;
	background-color: #F1EB52;
	border:6px solid #565656;
}
#ItemAddedPopup p {
	text-align:center;
	margin:0 20px 0 20px;
	padding:0;
	color:#8C0709;
}
#ItemAddedPopup span {
	margin:0;
	padding:0 10px 0 10px;
}
.CloseItemAdded {
	position:absolute;
	top:5px;
	right:5px;
	font-size:20px;
	color:#8C0709;
	cursor:pointer;
}
/* Side Bar Mobile */
@media only screen and (max-width: 768px){
	#SideBar {
		width:20px;
	}
	.SideBarHeading {
		margin:30px 0 5px 0;
	}
	#SideBarFilters {
		width:0;
	}
	#SideBarOpenButton{
		display:block;
	}
	.SideBarCloseButton{
		display:block;
	}
	.MenuDownloadButton {
		display:none;
	}

	/* End Of Side Bar Styles */

	#MainMenuDisplay {
		margin:0;
		border:none;
		padding:5%;
		float:right;
	}
	.MenuOrderingY { /* Width of the main menu with on-line ordering enabled */
		width:85%;
	}
	.MenuOrderingN { /* Width of the main menu with on-line ordering dis-enabled */
		width:85%;
	}
	.MenuSection {
		width: 100%;
	}
	.MenuSection h5 {
		font-size:1.0em;
	}
	.MenuSection p {
		font-size:0.9em;
	}
	#OrderDetail {
		display:none;
	}
}

/* Tablet */
@media only screen and (min-width: 769px) and (max-width: 990px){
	
	#SideBar {
		width: 20%;	
	}
	#SideBarFilters {
		width:100%;
	}	
	#SideBarOpenButton {
		display:none;
	}
	.SideBarCloseButton{
		display:none;
	}
	.MenuDownloadButton {
		display:none;
	}

	/* End Of Side Bar Styles */

	#MainMenuDisplay {
		margin:0 2% 0 2%;
	}
	.MenuOrderingY { /* Width of the main menu with on-line ordering enabled */
		width:46%;
	}
	.MenuOrderingN { /* Width of the main menu with on-line ordering dis-enabled */
		width:71%;
	}
	#OrderDetail {
		width:30%;
	}
	.MenuSection {
		width: 100%;
	}
	.MenuSection h5 {
		font-size:1.0em;
	}
	.MenuSection p {
		font-size:0.9em;
	}	
}

/* Desktop */
@media only screen and (min-width: 991px){
	#SideBar {
		width: 18%;	
	}
	#SideBarFilters {
		width:100%;
	}	
	#SideBarOpenButton {
		display:none;
	}
	.SideBarCloseButton{
		display:none;
	}
	.MenuDownloadButton {
		display:block;
	}

	/* End Of Side Bar Styles */


	#MainMenuDisplay {
		margin:0 2% 0 2%;
	}
	.MenuOrderingY { /* Width of the main menu with on-line ordering enabled */
		width:56%;
	}
	.MenuOrderingN { /* Width of the main menu with on-line ordering dis-enabled */
		width:70%;
	}
	#OrderDetail {
		width:22%;
	}
	.MenuSection {
		width: 50%;
	}
	.MenuSection h5 {
		font-size:1em;
	}
	.MenuSection p {
		font-size:0.9em;
	}
}
