
/*****************************
 *** Aufbau der Workbench
 *****************************/
 #workbenchContent {
	position: relative;
	float: left;
	width: inherit;
	height: calc(100% - 60px);
	height: 100%;
	background-color: inherit;
}
#workbenchLeftContainer {
	position: relative;
	float: left;
	width: inherit;
	height: calc(100% - 45px - 3px);
	background-color: inherit;
}
#workbenchRightContainer {
	position: absolute;
	width: 320px;
	height: calc(100% - 45px - 3px);
	bottom: 0px;
	right: 0px;
	background-color: inherit;
}

/********************************************
 ***  Aufbau der linken Seite der Workbench
 ********************************************/
#workbenchInfo {
	position: relative;
	float: left;
	width: calc(100% - 30px);
	height: 25px;
	padding: 10px;
	margin-top: 3px;
	margin-left: 5px;
	color: #fff;
	font-size: 20px;
	background-color: darkslategray;
}
/** DIV mit der Info welche Tisch angezeigt werden */
#workbenchInfoTableOverview {
	margin: 0 0 0 15px;
	font-size: 14px;
	font-weight: bold;
}
/** DIV in dem die Daten der Workbench angezeigt werden */
#workbenchData {
	position: relative;
	float: left;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	margin: 5px;
	background-color: inherit;
}
#facilityOverview, #outletOverview, #cashpointOverview {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: white;
}
/** In der Kellner- und Tischübersicht wird das Numpad eingeblendet und die Breite muss verkleinert werden */
#kellnerOverview, #tableOverview {
	position: relative;
	width: calc(100% - 315px);
	height: 100%;
	background-color: white;
	display: flex;
	justify-content: center;
}
/** In der Kellner- und Tischübersicht wird das Numpad eingeblendet und die Breite muss verkleinert werden */
#tableOverview {
	height: calc(100% - 50px);
}
/** DIV in dem die Buttons in der Tischübersicht angezeigt werden */
#workbenchButtons {
	position: absolute;
	bottom: 0px;
	float: left;
	width: calc(100% - 315px);
	height: 50px;
}
/** DIV in dem die Buttons der Kellner-Funktionen angezeigt werden */
#kellnerbuttonslayer {
	position: relative;
	float: left;
	bottom: 0px;
	width: calc(100% - 20px);
	height: 278px;
	padding: 10px;
	padding-top: 0px;
}
