@keyframes blinker {
	50% { opacity: 0; }
}

#clientNameDiv{
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 20px;
	color: var(--color-text);
}

#client_name{
	display: inline-block;
	padding: 5px;
	border: 0;
	border-radius: 5px;
	width: 40px;
	text-align: center;
}

#productsArt{
	display:inline-block;
	vertical-align: top;

	width: calc(450px - 40px - 20px);
	height: calc(100% - 20px - 20px);
	
	margin: 10px 20px;
	padding: 10px 10px;
	border-radius: 30px;
	overflow: auto;
	
	background-color: var(--color-sheet-bg);
}

#orderArt{
	display: inline-block;
	vertical-align: top;
	
	width: calc(100% - 450px  - 40px - 40px);
	height: calc(100% - 20px - 20px);
	
	margin: 10px 20px;
	padding: 10px 20px;
	border-radius: 30px;
	overflow: auto;
	
	background-color: var(--color-sheet-bg);
}


#productsDiv{
	display: inline-block;
	vertical-align: top;
	height: 100%;
	width: 100%;
}


#productsHeader{
	overflow: auto;
	height: 80px;
}

#products{
	height: calc(100% - 80px - 20px);
	width: calc(100% - 20px);
	margin: auto;
	padding: 10px 10px;
	list-style-type: none;
	overflow: auto;
}


.productsTitle{
	font-size: 28px;
	margin: 5px;
}

.categoryTitle{
	font-size: 18px;
}

.product{
	position: relative;
	width: 100%;
	padding: 3px;
	margin: 0;
	font-size: 14px;
	overflow: hidden;
	white-space: nowrap;
}

.selected{
	color: var(--color-sheet-slected-text);
}

.notAvailable *{
	color: #CCC;
	cursor: default !important;
}

.productName{
	display: inline-block;
	margin: 0;
	padding: 0;
	vertical-align: top;
	text-align: left;
	white-space: nowrap;
	cursor: pointer;
}

.selectedQty{
	padding-right: 5px;
}

.productStock{
	font-size: 11px;
}

.productPrice{
	display: inline-block;
	position: absolute;
	bottom: 0px;
	right: 0px;
	margin: 0;
	padding-left: 5px;
	vertical-align: top;
	text-align: right;
	font-size: 14px;
	cursor: pointer;
	background-color: var(--color-sheet-bg);
}

.productPriceFree{
	color: red;
}

#order .productName{
	cursor: default;
}

#order .productPrice{
	padding-right: 10px;
	right: 383px;
	cursor: default;
}

#order .course{
	display: inline-block;
	position: absolute;
	top: 3px;
	right: 293px;
	width: 90px;
	padding-right: 10px;
	vertical-align: top;
	background-color: var(--color-sheet-bg);
}

.productQty{
	border: none;
	width: 25px;
	text-align: right;
	font-size: 14px;
	vertical-align: top;
}

.orderLineBtn{
	margin-left: 3px;
	margin-right: 3px;
	font-weight: bold;
	width: 20px;
	height: 20px;
	padding: 0;
	font-size: 14px;
}

.removeProduct{
	position: absolute;
	top: 0px;
	right: 0px;
	padding-left: 5px;
	padding-right: 3px;
	background-color: var(--color-sheet-bg);
}

.productNotes{
	display: inline-block;
	position: absolute;
	top: 3px;
	right: 33px;
	margin: 0;
	padding-left: 5px;
	vertical-align: top;
	border: none;
	border-bottom: 1px solid var(--color-sheet-input-border);
	width: 260px;
	font-size: 14px;
	background-color: var(--color-sheet-bg);
}

.productQty::-webkit-outer-spin-button,
.productQty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}


.help{
	text-align: center;
	font-size: 12px;
	font-style: italic;
	color: #999;
	margin: 3px 0px 7px 0px;
}


/* order */

.orderTitle{
	font-size: 28px;
	margin: 5px;
}


#orderHeader{
	width: 100%;
	border-spacing: 10px 1px;
	margin-bottom: 20px;
}

#orderHeader td{
	text-align: center;
}

#orderHeader td.bookingTd{
	width: 30%;
}

#orderHeader td.customerNameTd{
	width: 30%;
}

#orderHeader td.tableTd {
	width: 100px;
}

#orderHeader td.coversTd {
	width: 100px;
}

#orderHeader td.takeAwayTd {
	width: 50px;
}

.orderHeader-input{
	width: 100%;
	border: 0;
	border-bottom: 1px solid var(--color-sheet-input-border);
	font-size: 18px;
}


#order{
	margin: auto;
	margin-top: 5px;
	margin-bottom: 5px;
	padding: 10px;
	list-style-type: none;
}


.orderHeader-checkbox{
	vertical-align: bottom;
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-right: 10px;
}

.orderTotal{
	font-weight: bold;
}

.orderSummary{
	display: none;
	position: relative;
	padding: 10px 20px 5px 20px;
	white-space: nowrap;
	overflow: hidden;
}

.orderSummary .summaryDesc{
	display: inline-block;
	white-space: nowrap;
	vertical-align: top;
}

.orderSummary .summary{
	display: inline-block;
	position: absolute;
	top: 10px;
	right: 0px;
	padding-right: 393px;
	margin: 0;
	padding-left: 5px;
	vertical-align: top;
	text-align: right;
	font-size: 14px;
	background-color: var(--color-sheet-bg);
}

.orderSummary .paid input[type="text"]{
	text-align: right;
	width: 50px;
	font-size: 14px;
	border: 0;
	border-bottom: 1px solid var(--color-sheet-input-border);
}

.orderSummary .paymentMethod{
	font-size: 16px;
}

.orderSummary-checkbox{
	vertical-align: bottom;
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-right: 5px;
}

.orderSummary-radio{
	vertical-align: bottom;
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-right: 5px;
}

#print{
	display: none;
	text-align: center;
	margin-top: 20px;
}

#orderEntry{
	display: none;
	text-align: center;
	margin-top: 20px;
}

#saveBtn {
	margin-top: 30px;
	background-color: #146bce;
	border-color: #0c3564;
}