body {
	margin: 10px;
	background-color: #F2F6EA; 
	font-family: 'Nunito', sans-serif;
}

.no-select {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.no-select:focus {
    outline: none !important;
}

.callout {
	margin-top: 10em;
	display: flex;
	padding: 0 5em;
	font-size: 18px;
    align-items: center;;
    flex-direction: column;
	text-align: center;
}

#wrapper{
	/* max-width: 98%; */
	margin: auto;
	padding: 0 1em 1em 1em;
	padding-bottom: 0;

}


h1 {
  font-family: sans-serif;
}

#selected-items-summary{
	font-weight: 400;
}

#order-button{

	max-width: 50em;
	width: 100%;

	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 3em;

	cursor: pointer;
	background-color: #bfceac; 
	font-family: 'Nunito', sans-serif;
	font-weight: 600;
	padding: 0 3em;
	margin-top: 0.25em;
	margin-bottom: 1em;
	/* max-width: 20.4em; */
}

.order-subtext{
	display: inline-block;
	font-weight: 400;
}

.order-label{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #d6e2c8; 
	height: 3em;
	width: 6em;
	float: left;
	
	font-weight: 400;

}

#order-day-label{
	display: contents;
}

.dropdown-icon{
	display: block;
	width: 0.75em;
	height: 0.75em;
	padding-top: 0.2em;
	padding-right: 0.2em;
}

.v-spacer{
	width: 2em;
	float: left;
	width: 0.5em;
	padding: 0.15em;
	
}
.menu-header-left{
	display: flex;
	justify-content: space-between;
	/* height: 28px; */
}

.menu-header{
	/* display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-between; */
}


.menu {
	/* display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row; */
	/* -webkit-tap-highlight-color: red; */
	max-width: 50em;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;

	background-color: #d6e2c8;
	border: none; 
	color: black;
	padding: 1em 0 1em 0.8em;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	cursor: pointer;
	white-space: normal;
	/* padding-bottom: 1.5em; */
	/* width: 90%; */
	/* width: 100%; */
	/* height: 6em; */
	text-align: left;
	margin-bottom: 0.2em;
	font-family: 'Nunito', sans-serif;
	font-weight: 200;
}

 .menu:hover{ 
	/* background-color: #d9e4d9; */
	/* border: solid;
	border-width: 1px;
	color: black; */
  } 

.menu-note-button{
	/* padding-top: 0.8em; */

	/* float: right; */
	display: none;
	width: 1.3em;
	height: 1.3em;
	padding: 0.35em 0.8em 0.35em 0.35em;
	cursor: pointer;
	color: #3a3a3a;
}

.add-to-cart-button{
	/* float: right; */
	padding-top: 0.33em;
	padding-right: 0.5em;
	width: 1.2em;
	height: 1.2em;
	cursor: pointer;
	color: #3a3a3a	; 
}

.menu-title{
	/* width: 100%; */
	font-size: 1em;
	font-weight: 700;
	cursor: pointer;
	padding: 0.5em 0;
	margin-right: 0.8em;
	/* background-color: antiquewhite; */
}

.menu-description{
	font-size: 1em;
	/* display: none; */
	margin-top: -0.3em;
	margin-bottom: 0.4em;
	margin-left: 1.72em;
	margin-right: 0.8em;
}

.menu-type{
	font-weight: 400;
	font-size: 1.25em;
	/* font-family: 'Poppins', sans-serif; */
	margin: 1.8em 0 0.5em 0;
	padding-left: 0.15em;
}

.order-header{
	font-size: 1.15em;
	font-weight: 700;
}

.intro {
	/* margin-top: 1em; */
	margin-bottom: 1em;
	font-family: 'Nunito', sans-serif;
	font-weight: 400;
	font-size: 18px; 
	line-height: 1.2em;
	/* padding: 0 0.5em; */
}

/* CHECKBOX */

/* Customize the label (the container) */
.container {
	display: block;
	position: relative;
	padding: 15px 35px;
	cursor: pointer;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;

  }
  
  /* Hide the browser's default checkbox */
  .container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 12;
	left: 4;
	vertical-align: middle;
	height: 25px;
	width: 25px;
	/* background-color: #eee; */
  }
  
  /* On mouse-over, add a grey background color */
  .container:hover {
	background-color: rgb(225, 225, 225);
  }
  
  /* When the checkbox is checked, add a blue background */
  /* .container input:checked ~ .checkmark {
	background-color: #2196F3;
  } */
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .container input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .container .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid rgb(0, 0, 0);
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }


  .select{
	  margin: 0.5em 0;
	  padding: 0.5em;
	  
	  max-width: 48em;

	  background-color: #bfceac;
	  cursor: pointer;

	  display: flex;
	  justify-content: space-between;
	  align-content: center;
	  flex-direction: row;

	  font-weight: 600;



  }

  .select-dropdown {
	  display: none;
	  position: absolute;
	  z-index: 999;
	  background-color: rgb(255, 255, 255);
	  font-weight: 400;
	  min-width: 15em;
	  margin-right: 2.5em;

	  box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
	  -webkit-box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
  }

  .selected-items-label{
	  display: none;
	  cursor: pointer;
	  font-weight: 400;
	  margin-top: 0.3em;	
	  margin-left: 1.7em;
	  color: #000000;
  }

.selected-item-note{
	margin-left: 1.7em;
	margin-top: 0.5em;
	margin-right: 0.8em;
	display: none;
}

.selected-item-note-field{
	width: 100%;
}


.order-day-chevron{
	cursor: pointer;
	height: 2em;
}

#order-days{
	display: none;
	position: relative;

	margin-left: 0.0em;
	margin-top: 0.0em;
	max-width: 50em;

	z-index: 999;
	background-color: rgb(255, 255, 255);
	font-weight: 400;

	box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
}
#order-extras{
	display: none;

	margin-left: 0.4em;
	margin-top: 0.8em;
	max-width: 50em;

	position: absolute;
	z-index: 999;
	background-color: rgb(255, 255, 255);
	font-weight: 400;

	box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
	-webkit-box-shadow: 1px 1px 25px 0px rgba(0, 0, 0, 0.35);
}

.extra-description{
	font-size: 0.85em;
	font-weight: 200;
}

#order-note, #order-note-field{
	width: 100%;
}

#order-note{
	margin: 0.5em 0;
	max-width: 50em;
}

.order-block{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: flex;
	flex-direction: column;
	background-color: #d6e2c8; 
	border: none;
	color: black;
	padding: 1em 1em;
	text-align: center;
	text-decoration: none;
	font-size: 16px;
	/* cursor: pointer; */
	white-space: normal;
	max-width: 48.7em;

	/* width: 90%; */
	/* width: 100%; */
	/* height: 6em; */
	text-align: left;
	margin-bottom: 2em;
	font-family: 'Nunito', sans-serif;
	font-weight: 200;
}

textarea {
	padding-top: 0.2em;
	padding-left: 0.2em;
}

form {
	margin-bottom: 4em;
}

#spinner-container {
	display: none;
	position: fixed;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.6);
	top: 0;
	left: 0;
}
#spinner {

	position: fixed;
	top: 50%;
	left: 50%;
	margin-top: -80px; 
	margin-left: -50px;

	height:60px;
	width:60px;

	-webkit-animation: rotation .6s infinite linear;
	-moz-animation: rotation .6s infinite linear;
	-o-animation: rotation .6s infinite linear;
	animation: rotation .6s infinite linear;
	border-left:6px solid rgba(0,174,239,.15);
	border-right:6px solid rgba(0,174,239,.15);
	border-bottom:6px solid rgba(0,174,239,.15);
	border-top:6px solid rgba(27, 119, 218, 0.8);
	border-radius:100%;
 }
 
 @-webkit-keyframes rotation {
	from {-webkit-transform: rotate(0deg);}
	to {-webkit-transform: rotate(359deg);}
 }
 @-moz-keyframes rotation {
	from {-moz-transform: rotate(0deg);}
	to {-moz-transform: rotate(359deg);}
 }
 @-o-keyframes rotation {
	from {-o-transform: rotate(0deg);}
	to {-o-transform: rotate(359deg);}
 }
 @keyframes rotation {
	from {transform: rotate(0deg);}
	to {transform: rotate(359deg);}
 }