/* apply a natural box layout model to all elements, but allowing components to change
http://www.paulirish.com/2012/box-sizing-border-box-ftw/; 
*/
html, body {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
/* Set full height: http://stackoverflow.com/questions/6654958/make-body-have-100-of-the-browser-height */
html {
  /* body will set it's height based on its parent, which is html */
  height: 100%;
  /* set full width as well */
  width: 100%;
  /* set font-family*/
  font-family: 'Montserrat', sans-serif;
}
body {
  /* min-height is needed for pages that might scroll, ie they may contain _more_ than 100% of viewport height */
  min-height: 100%;
  /* needed to prevent unwanted scroll-bars */
  margin: 0;
  padding: 0;
  /* This is just so we can tell the body block apart from the app container */
  background-color: lightgray;
}
/* Full height centered app container */
#app-container {
  /* Set block height using the viewport height unit, and force it to be full height, even if the containing content does not require it */
  min-height: 100vh;
  /* center this block for larger viewports */
  margin: 0 auto;
  /*Use max-width for better browser handling of small windows
  http://www.w3schools.com/css/css_max-width.asp
  */
  max-width: 31.25em;
  /* Use min-width to prevent your design from being scrunched up in tiny viewports (and instead be replaced with horizontal scroll bars) 
  */
  min-width: 18.75em;
  /* Add padding around your content - this is just an arbitrary number */
  padding: 1em;
  /* Add sufficient top padding so the fixed header doesn't cover up main content by defailt.  This value should be a calculated value (eg using calc(), sass, etc):
  padding for this container + height of app header; Here, that is 1em + 4em */
  padding-top: 20em;
  /* just used to so we can tell the content block apart from the body block */
  background-color: white;
  padding-top: 5em;
}
#app-header {
  /* fix the header to the top of the viewport. */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  /* this should match the min-width in app-container. Recommend setting using a common variable (eg with Sass) */
  min-width: 300px;
  /* just arbitrary values */
  height: 4em;
  padding: 1em;
  /* internal layout, centered vertically - flex layout is great for this */
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  /* just so we can tell the header apart */
  background-color: #000000;
  color: white;
}
#app-header h1 {
  /* set the h1 block as the main flex block - it will fill all unused space in the block */
  flex: 1;
  /* center content inside the block */
  text-align: center;
  font-size: 24px;
}
/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  background-color: #000000;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}
/* Style the links inside the navigation bar */
.navbar a {
  float: center;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}
/* Change the color of links on hover */
.navbar a:hover {
  background-color: #000000;
  color: white;
}
/* Add a color to the active/current link */
.navbar a.active {
  background-color: #000000;
  color: white;
}
/* Add a color to the inactive/current link */
.navbar a.inactive {
  background-color: #aaaaaa;
  color: #cccccc;
}
.button {
  background-color: #4CAF50; /* Green */
  border: none;
  color: white;
  padding: 8px 16px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.button_submit {
  background-color: white;
  color: black;
  border: 2px solid #555555;
  padding: 8px 16px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.button_number {
  background-color: white;
  color: black;
  border: 2px solid #555555;
  padding: 8px 16px;
  text-align: center;
  display: inline-block;
  font-size: 32px;
  width:140px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button_submit:hover {
  background-color: #555555;
  color: white;
}
.button_delete {
  background-color: white;
  color: red;
  border: 2px solid #555555;
  padding: 8px 16px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}
.button_delete:hover {
  background-color: #555555;
  color: white;
}
.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button_green {
  background-color: white;
  color: black;
  border: 2px solid #4CAF50;
}
.button_green:hover {
  background-color: #4CAF50;
  color: white;
}
.button_blue {
  background-color: white;
  color: black;
  border: 2px solid #008CBA;
}
.button_blue:hover {
  background-color: #008CBA;
  color: white;
}
.button_red {
  background-color: white;
  color: black;
  border: 2px solid #f44336;
}
.button_red.big {
  background-color: white;
  color: black;
  border: 2px solid #f44336;
  padding: 8px 16px;
  text-align: center;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
}
.button_red:hover {
  background-color: #f44336;
  color: white;
}
.button_grey {
  background-color: white;
  color: black;
  border: 2px solid #e7e7e7;
}
.button_grey:hover {
  background-color: #e7e7e7;
}
.button_black {
  background-color: white;
  color: black;
  border: 2px solid #555555;
}
.button_black:hover {
  background-color: #555555;
  color: white;
}
input[type=text], select {
  width:30%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}
input[type=password] {
  width: 30%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}
#stepProgressBar {
  display: flex;
  //justify-content: space-between;
  vertical-align: middle;
  align-items: flex-end;
  //width: 300px;
  margin: 0 auto;
  margin-bottom: 00px;
}
.step {
  text-align: center;
}
.step-text {
  margin-bottom: 10px;
  font-size: 14px;
  color: gray;
}
.step-text.active {
  margin-bottom: 10px;
  color: #000000;
  font-weight: 700;
}
.step-text.completed {
  margin-bottom: 10px;
  color: #28a745;
}
.bullet {
  vertical-align: middle;
  /*border: 2px solid #000000;*/
  height: 25px;
  width: 25px;
  border-radius: 100%;
  color: white;
  display: inline-block;
  position: relative;
  transition: background-color 500ms;
  line-height: 25px;
  font-weight: 700;
  background-color: #cccccc;
}
.bullet.completed {
  color: white;
  background-color: #28a745;
}
.bullet.active {
  color: white;
  background-color: #000000;
}
.bullet.completed::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: 10px;
  height: 1px;
  width: 54px;
  background-color: #28a745;
}
/* Base styles and helper stuff */
.hidden {
  display: none;
}
button {
  padding: 5px 10px;
  border: 1px solid black;
  transition: 250ms background-color;
}
button:hover {
  cursor: pointer;
  background-color: black;
  color: white;
}
button:disabled:hover {
  opacity: 0.6;
  cursor: not-allowed;
}
.text-center {
  text-align: center;
}
.container {
  /* fix the header to the top of the viewport. */
  position: fixed;
  top: 4em;
  left: 0;
  right: 0;
  z-index: 10;
  /* this should match the min-width in app-container. Recommend setting using a common variable (eg with Sass) */
  min-width: 300px;
  /* just arbitrary values */
  height: 4em;
  padding: 0;
  /* internal layout, centered vertically - flex layout is great for this */
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  /* just so we can tell the header apart */
  background-color: white;
  color: black;
}
.appcontent {
  /* fix the header to the top of the viewport. */
  display: none;
  //position: fixed;
  top: 0em;
  left: 0;
  right: 0;
  z-index: 10;
  /* this should match the min-width in app-container. Recommend setting using a common variable (eg with Sass) */
  min-width: 300px;
  /* just arbitrary values */
  height: 6em;
  padding: 0;
  /* internal layout, centered vertically - flex layout is great for this */
  align-items: center;
  color: #000000;
}
/* Style the links inside the navigation bar */
.appcontent h3 {
font-size: 14px;
}
.appcontent h2 {
font-size: 18px;
	padding: 0px;
}
.huge {
  text-align: center;
  padding: 20px 0px;
  text-decoration: none;
  font-size: 72px;
  line-height: 0px;
  font-weight: 700;
  margin: 30px 0;
}

.highlight {
  font-size: 16px;
  color: black;
  font-weight: 600;
  display:inline;
}

.highlight_red {
  font-size: 16px;
  color: red;
  font-weight: 600;
  display:inline;
}

.vending {
  /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: black;
}
.vending td, #customers th {
  border: 1px solid #ddd;
	font-weight: 100;
  padding-top: 6px;
  padding-bottom: 6px;
}
.dialog.marktd {
  border:3px solid blueviolet;
}
.vending tr:nth-child(even) {
  background-color: #f2f2f2;
}
.vending tr:nth-child(odd) {
  background-color: #ffffff;
}
.vending tr:hover {
  background-color: #ddd;
}
.vending th {
  padding-top: 12px;
  padding-bottom: 12px;
  //text-align: left;
  background-color: #000000;
  color: white;
}

.vendingadd {
  /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  font-size: 18px;
  color: black;
}
.vendingadd td, #customers th {
  border: 1px solid #ddd;
  text-align: center;
	font-weight: 100;
}
.vendingadd tr:nth-child(even) {
  background-color: #f2f2f2;
}
.vendingadd tr:nth-child(odd) {
  background-color: #ffffff;
}
.vendingadd tr:hover {
  background-color: #ddd;
}
.vendingadd th {
  padding-top: 8px;
  padding-bottom: 8px;
  //text-align: left;
  background-color: #000000;
  color: white;
}
#summarylist {
  /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  font-size: 14px;
  color: black;
}  
#summarylist td, #customers th {
  border: 1px solid #ddd; 
  padding-top: 6px;
  padding-bottom: 6px;
	font-weight: 100;
}
#summarylist tr:nth-child(even) {
  background-color: #f2f2f2;
}
#summarylist tr:nth-child(odd) {
  background-color: #ffffff;
}
#summarylist tr:hover {
  background-color: #ddd;
}
#summarylist th {
  padding-top: 12px;
  padding-bottom: 12px;  
  font-size: 16px;
  //text-align: left;
  background-color: #000000;
  color: white;
}
/*new styles*/
.arrow-image {
  margin: 45px 20px 45px 20px;
  height: 50px;
}
.home-button {
  /*background: black;*/
  display: block;
  position: absolute;
  left: 10px;
  top: 20px;
}
#overlay {
  position: fixed;
  display: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.1);
  z-index: 2;
  cursor: pointer;
}

#overlay_text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

.c_overlay {
  position: fixed;
  display: none;
  opacity : 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.1);
  z-index: 2;
  cursor: pointer;
}
.c_overlay_show {opacity : 1; visibility:visible; }


.c_overlay_num{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 200px;
  color: black;
  transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
}

/* Customize the label (the container) */
.cont {
  display: inline;
  position: relative;
  //padding-left: 35px;
  //margin-bottom: 12px;
  cursor: pointer;
  //font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.cont input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #ccc;
}

/* On mouse-over, add a grey background color */
.cont:hover input ~ .checkmark {
  background-color: #aaa
}

/* When the checkbox is checked, add a blue background */
.cont input:checked ~ .checkmark {
  background-color: blue;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cont input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cont .checkmark:after {
  left: 9px;
  top: 5px;
  width: 7px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.image-upload > input
{
    display: none;
}

.image-upload img
{
    width: 60px;
    cursor: pointer;
}

.fadeinoutelem {
  background: white;
  -webkit-animation: fadeinout 0.5s linear forwards;
  animation: fadeinout 0.5s linear forwards;
}

@-webkit-keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes fadeinout {
  0%,100% { opacity: 0; }
  50% { opacity: 1; }
}


.slots {
  /*font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;*/
  border-collapse: collapse;
  text-align: center;
  width: 100%;
  font-size: 9px;
  color: black;
}
.slots td, #customers th {
  border: 1px solid #ddd;
	font-weight: 100;
  padding-top: 1px;
  padding-bottom: 1px;
  word-wrap: break-word;         /* All browsers since IE 5.5+ */
  overflow-wrap: break-word;
}
.dialog.marktd {
  border:3px solid blueviolet;
}
.slots tr:nth-child(even) {
  background-color: #f2f2f2;
}
.slots tr:nth-child(odd) {
  background-color: #ffffff;
}
.slots tr:hover {
  background-color: #ddd;
}
.slots th {
  padding-top: 12px;  
  padding-bottom: 12px;
  background-color: #6f6fe7;
  font-size: 18px;
	font-weight: 200;
  color: white;
}
