@charset "utf-8";
/* CSS Document */

@font-face { font-family: 'sinewssanspro';
    src: url('http://xn--kche-0ra.bergstation.nrw/schrift/sinewssanspro_regular.ttf'); 
}

:root{
    --homeBoxShadow: 0px 0px 30px 5px lightgray;
}

body{
    margin: 0px;
    font-family: sinewssanspro;
}

header{
    display: inline-flex;
	background: #00387B ;
    font-family: sinewssanspro;
    height: 100px;
    width: 100%;
}

footer{
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    display: inline-flex;
	background: lightblue ;
    font-family: sinewssanspro;
    height: 50px;
}

.logoHeader{
    height: 100px;
}

#uhrzeit, #datum{
	color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3em;
    width: 40%;
}

.footerButton{
	color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1em;
    width: 40%;
}

.anleitung{
    height: 2vh;
}


/* popUp */

#taskPopUp {
	position: fixed;
 	top: 0;
 	bottom: 0;
  	left: 0;
  	right: 0;
 	background: rgba(0, 0, 0, 0.7);
    z-index: 100;
}

.taskPopUpInhalt {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 40px;
    background: #fff;
    border-radius: 10px;

    width: 90%;
  
    height: 75vh;
    overflow-y: auto;

   
    display: flex; 
    z-index: 3;
    border-color: black;
    border-style: solid;
    border-width: medium;
    
}
  
.taskPopUpflex {
    flex: 1 1 auto;
    overflow: visible; 
}

#PopUpEnde {
	color: red;
	position: absolute;
 	top: 0px;
 	right: 15px;
	font-size: 50px;
}

#PopUpEnde:hover {
	color: darkred;	
}


/* Essen */
#order{
    height: calc(100vh - 150px - 600px);
    overflow-y: scroll;
}

.essen {
	display: flex;
	font-family: sinewssanspro;
	font-weight: bold;
    margin: auto;
    margin-top: 20px;
    width: 95vw;
    border-radius: 15px;
    box-shadow: var(--homeBoxShadow);
}

.essen-bestellung {
 	font-size: 12px;
	display: inline-flex;
    width: 95vw;
    margin-top: 15px;
    margin-bottom: 10px;
    height: 44px;
}

.essen-name {
	border-radius: 4px;
 	font-size: 40px;
    text-align: right;
    padding-right: 10px;
    width: 50vw;
}

.essen-message {
    width: 30vw;
	border-radius: 4px;
 	font-size: 40px;
    padding-left: 10px;
	display: flex;
  	align-items: center;
  	justify-content: left;
}

.essen-done {
	color: white;
    width: calc(15vw - 40px);
    height: 108px;
	background-color:  #02C908;
    border-radius: 4px;
 	font-size: 30px;
	display: flex;
  	align-items: center;
  	justify-content: center;
}

.essen-zeit {
 	padding: 5px;
 	font-size: 30px;
	display: flex;
  	align-items: center;
  	justify-content: center;
    width: 15vw;
}

.essen-cancel {
	color: white;
	background-color: #C31114;
    border-radius: 4px;
 	font-size: 30px;
	display: flex;
  	align-items: center;
  	justify-content: center;
    width: 200px;
}

.essen-info {
 	font-size: 30px;
	display: flex;
  	align-items: center;
  	justify-content: center;
    width: 20vw;
}

.essen-anleitung {
	text-decoration: none;
}

.essen-mini {
	color: black;
    background-color: orange;
    border-radius: 4px;;
	text-decoration: none;
    font-size: 30px;
	display: flex;
  	align-items: center;
  	justify-content: center;
    width: 20vw;
}

.essen-fortschritt {
	grid-column-start: 1;
  	grid-column-end: 5;
	background-color: green;
	border-radius: 4px;
}

.essen-1 {
    font-size: 15px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 15vw;
}

.essen-2 {
    font-size: 25px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 15vw;
}

/* Anleitung */

.headline{
    font-size: 50px;
}
.anleitung{
    font-size: 30px;
}
.suche {
    display: flex; 
    justify-content: center; 
    align-items: center;
}

#knowBaseSuche {
    border-radius: 10px;
    border-color: gray;
    border-style: solid;
    border-width: medium;
    width: 100%;
    padding: 20px;
    font-size: 1.5em;
}

.knowBaseZeile {
	background: #00387B;
	color:#fff;
	text-align: center;
	font-size: 30px;
	padding: 15px 0;
	border-radius: 10px;
} 

#knowBaseTable{
    width: 100%;
    border-spacing: 7.5px;
}

.knowBaseUnsichtbar{
    display: none;
}