*, body, html {
	font-family: 'Ubuntu', sans-serif;
	padding:0;
	margin:0;
	font-size:20px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-webkit-tap-highlight-color: transparent;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

html,body {
	height:100%;
	background-color:#ddd;
}

.prompt {
  display: none;
}

.prompt p {
	display: inline-block;
	margin-right:10px;
}
.prompt button {
	padding: 5px 10px;
	margin-left:10px;
}

h1 {
	font-size:40px;
}
h2 {
	font-size: 35px;
}
h3 {
	font-size: 30px;
}
#login {
	height:100%;
}

#login div {
	padding-top:25vh;
	text-align:center;
	
}

#login input {
	display:block;
	margin-left:auto;
	margin-right:auto;
	margin-top:10px;
	width:50%;


}
#login input[type=text], #login input[type=password], #login input[type=number] {
	border: 1px solid #333;
	border-radius: 4px;
	text-align:center;
	font-size:50px;
	-webkit-user-select:text;
}

#login input[type=submit] {
	padding:20px;
}

/* Loading screen */
#loading {
	width:100%;
	height: 100%;
	top:0;
	left:0;
	position:fixed;
	display:block;
//	opacity:1;
//	background-color:#eee;
	z-index:99;
	text-align:center;
	padding-top:5%;
	backdrop-filter:blur(10px);
}
#loading p {
	margin-top:10px;
	opacity:1.0;
	color:#000;
}

.loading-animation {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
	margin: 0 auto;
}
.loading-animation div {
  position: absolute;
  border: 4px solid #cef;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.loading-animation div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes loading-animation {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}

/* Header */
.header {
	position:fixed;
	padding:0;
	margin:0;
	width:100%;
	min-height:60px;
	z-index:1000;
	text-align:center;
//	border-bottom:1px solid #000;
	background-color:#891836;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);	
	color:#FFF;
}
.header img {
	//width:90%;
	max-height:50px;
}
/* Menu */
.menu {
	padding:0;
	margin:0;
	overflow:hidden;
	//border-top: 1px solid #ccc;
	background-color:#891836;
	text-align:center;
	width: 100%;
	height: 64px;
	bottom:0px;
	position:fixed;
	z-index:1000;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);	

}

.menu button {
	background-color: inherit;
	float: center;
	border: none;
	outline: none;
	cursor: pointer;
	transition: 0.3s;
	padding:0;
	margin:0;
	width: 19%;
	height: 64px;
}
.menu button img {
	height: 66%;
	filter:invert(1);
}

.menu button:hover {
	background-color: #ddd;
}
.menu button:hover img {
	filter:invert(0);
}

.menu button.active {
	background-color: #fff;
	filter:invert(0);
}
.menu button.active img {
	filter:invert(0);
}

.menucontent {
	padding-top:80px;
	display: none;
	//border: 1px solid #ccc;
	//border-top:none;
}

.menucontent >:last-child {
  padding-bottom: 80px;
}

.item {
	box-sizing:border-box;
	width: 100%;
	padding-left:5px;
	//border-top:1px solid #891836;
	border-bottom:1px solid #891836;
	float:left;
	vertical-align:middle;
	font-size:1em;
	line-height:3em;
	position:relative;
	margin-bottom:0px;
}

.group >:last-child {
	border-bottom:none;
}		
.item div {
	position:absolute;
	right:5px;
	top:50%;
	transform:translateY(-50%);
	float: right;
}

.group {
	float:left;
	width:100%;
	padding-bottom:20px;
}

.info {
	padding-top:10px;
	line-height:1.25em;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0;
  margin: 0;
  border: 1px solid #ccc;
  border-top: none;
}

.cameraimage {
	width:100%;
}



/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



a:link, a:visited {
  //background-color: white;
  color: black;
  border: 2px solid #891836;
  padding: 5px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
	line-height:1em;
}

a:hover, a:active {
  background-color: #891836;
  color: white;
}

.numbercontrol{
  right:5px;
  float:right;
  height:50px;
//  width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  //background: #FFF;
//  border-radius: 12px;
}
.numbercontrol span{
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.numbercontrol span {
	height:50px;
	line-height:50px;
	width:40px;
}

.numbercontrol span.actual {
	width:80px;
	font-weight:normal;	

}

.numbercontrol span.num{
  font-size: 20px;
  padding-left:5px;
  padding-right:5px;
  pointer-events: none;
  background:#FFF;
}

.numbercontrol span.minus {
	background-color: #D16A5E;
	border-top-left-radius: 12px;
	border-bottom-left-radius:12px;
}
.numbercontrol span.plus {
	background-color: #91BEB3;
	border-top-right-radius: 12px;
	border-bottom-right-radius:12px;
}

