/* --- RESET CSS --- */

@import url('https://fonts.googleapis.com/css?family=Lato|Oswald');

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box; 
}

html, body{
	height: 100%; 
}

body {
	background: white;
	font-family: 'Lato', sans-serif;
}

nav{
	background: #de5b5b;
	padding: 10px 10px;
	color: #eee;
	text-align: center;
	font-size: 20px;
}

#wrapper{
	background:white;
	position: relative;
	width: 100%;
	height:100%;
	padding: 20px;
}

header {
	text-align: center;
	margin-bottom: 10px;
}

#menu{
	position: relative;
	display:inline-block;
	text-align: center;
	width:100%;
	float: right;*/
}

.menuItem{
	position: relative;
	text-align: center;
	padding: 5px 5px 5px 5px;
	width: 400px;
	height:auto;
	overflow:hidden;
	/*border:solid 1px red;*/
	margin-top: 2px;
}

.menuItem p{
	padding: 7px 0px 5px 0px;
}

.menuTitle{
	font-size: 24px;
	padding-bottom: 10px;
}

.menuText{
	position: relative;
	text-align: center;
	width:50%;
	/*float:right;*/
}

.menuImg {
	visibility: hidden;
}

.menuImg img{
	width:0px;
	visibility: hidden;
}

.course{
	font-size: 18px;
	font-weight: bold;
	font-style: italic;
}

.courseDesc{
	font-size: 14px;
}

.menuBtns{
	padding-top: 15px;
}

.button {
    background-color: #de5b5b;
    border: none;
    color: white;
    padding: 10px 10px;
    width:100px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 12px;
    margin: 4px 2px;
    cursor: pointer;
}

#order { 
	position:relative; 
	display:inline-block;
	/*top:20%; 
	left:10%; */
	margin-top: 20px;
	margin-bottom: 20px;
	width:90%;
	height: auto;
	border:solid 2px #de5b5b;
	border-radius: 15px;
}

#orderTitle{
	font-size: 24px;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 20px;
}

.orderHeader{
	position:relative; 
	text-align: center;
}

.menuHeader{
	position:relative; 
	display:inline-block;
	width:50%;
	text-align: center;
	text-decoration: underline;
	padding-bottom: 20px;
}

.orderItem{
	position:relative; 
	width:100%;
}

.orderItemSpan{
	position:relative; 
	display:inline-block;
	text-align: center;
	width:50%;
}

.orderTotal{
	position:relative; 
	width:100%;
	padding-top: 20px;
	padding-bottom: 20px;
}
.orderTotalSpan{
	position:relative; 
	display:inline-block;
	text-align: center;
	width:50%;
}

/* ==== TABLET LAYOUT ==== */
/* 481px to 768px. Inherits styles from mobile layout */

@media only screen and (min-width: 481px) {
	#wrapper {
		width: 90%;
		margin: 0 auto;
	}

	#order { 
		position:relative; 
		display:inline-block;
		width:100%;
		width:350px;
		height: auto;
		
	}
}

@media only screen and (min-width: 900px) {

	#order { 
		position:fixed; 
		top:35%; 
		left:7%; 
		width:80%;
		width:300px;
		height: auto;
	}

	#menu{
		position: relative;
		width:60%;
		float: right;
		margin-top: 40px;
	}

	.menuImg {
		visibility: hidden;
	}

	.menuItem{
		width: 500px;
	}


}


/* ==== DESKTOP LAYOUT ==== */
/* 969px to max of 1200px. Inherits styles from mobile layout and Tablet Layout */

@media only screen and (min-width: 1269px) {
	#wrapper {
		width: 80%;
		max-width: 1200px;
	}

	.menuImg {
		position: relative;
		float:left;
		width:50%;
		visibility: visible;
	}

	.menuImg img{
		width:250px;
		padding: 5px 5px 5px 5px;
		border-radius: 15px;
		visibility: visible;
	}

	#order { 
		position:fixed; 
		width:60%;
		top:35%; 
		left:10%; 
		width:350px;
		height: auto;
	}

	.menuItem{
		width: 600px;
		padding: 20px 5px 20px 5px;
	}

	.menuText{
		position: relative;
		text-align: center;
		width:50%;
		float:right;
	}

}

@media only screen and (min-width: 1369px) {

	#order { 
		position:fixed; 
		width:60%;
		top:35%; 
		left:14%; 
		width:350px;
		height: auto;
	}

}

@media only screen and (min-width: 1499px) {

	#order { 
		top:35%; 
		left:15%; 
	}

}

@media only screen and (min-width: 1599px) {

	#order { 
		top:35%; 
		left:18%; 
	}

}

@media only screen and (min-width: 1699px) {

	#order { 
		top:35%; 
		left:22%; 
	}

}

