
* {
  box-sizing: border-box;
}

details {
	border: 0px;
}


.pl_outer{
	border: 0px solid red;
	width: 100%;
	display: flex;
}
.pl_col_1 {
	border: 0px solid red;
	width: 65%;
}
.pl_col_2 {
	border: 0px solid red;
	width: 35%;
}


@media (max-width: 940px) {
	.pl_outer{
		width: 100%;
		display: flex;
		flex-direction: column;
	}
	.pl_col_1 {
		width: 100%;
	}
	.pl_col_2 {
		width: 100%;
	}
}


.grid-container {
	border: 1px solid red;
  margin: 5px auto;
  width: 100%;

  display: grid;
  grid-auto-columns: 1fr;
  gap: 1em;
  grid-template-areas: 

  /*
		'one one one four four'
    'two three three four four'
*/

    'one one one four four'
    'two two two three three'
}

.grid-item {
  border-radius: 1em;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  color: white;
}

.grid-item:nth-child(1) {
  grid-area: one;
}

.grid-item:nth-child(2) {
  grid-area: two;
}

.grid-item:nth-child(3) {
  grid-area: three;
}

.grid-item:nth-child(4) {
  grid-area: four;
  flex-direction: column;
  justify-content: flex-start;
  color: black;
}

.grid-item:nth-child(5) {
  grid-area: five;
}


@media (max-width: 940px) {
  .grid-container {
    grid-template-areas: 
    'one one one four four'
    'two two two three three'
  }
}

@media (max-width: 640px) {
  .grid-container {
    grid-template-areas: 
    'one one one four four'
    'two two two three three'
  }
}

@media (max-width: 460px) {
  .grid-container {
    grid-template-areas: 
    'one'
    'three'
    'four'
    'two';
  }
}
/**/

#p_outer{
	border: 1px	solid red;
	display: flex;
}
#p_1{
	border: 1px	solid red;
	width: 70%;
}
#p_2{
	border: 1px	solid red;
	width: 30%;
}


/* iPad Air Portrait  */
@media screen and (max-width: 820px) {
	
	#p_outer{
		flex-direction: column;
	}
	#p_1{
		width: 100%;
	}
	#p_2{	
		width: 100%	;
	}
}





#Planer {
	border: 0px	solid red;
	padding: 5px;
}



#Planer_2 {
	display: flex;
}



/* iPad Air Portrait  */
@media screen and (max-width: 820px) {
	
#Planer_2 {
	display: flex;
	flex-direction: column;
}

}




/* Button  */

.btn_GMap {
	width: 100%x;
	font-size: clamp(0.8rem, 1.0vw, 1.2rem);
	padding: 0 10px;
	background-color: var(--EDH-Gelb);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;

	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}



/* boxshadow  */
.shadow_btn{
	color: #333333;
	border: 2px solid var(--EDH-Gelb);
	background-color: #b9c7da;
	border-radius: 5px;
	box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.shadow_input{
	border: 1px solid var(--EDH-Gelb);
	color: #333333;
	background-color: var(--EDH-Weiss);
	border-radius: 3px;
	box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}


.style_input {
	height: 25px;
    font-family: Arial, Sans-Serif;
    font-size: clamp(0.8rem, 1.0vw, 1.2rem);
    color: #585858;
    padding: 0 10px;
    border: solid 1px #adadad;
    border-radius: 8px;
    -moz-box-shadow:inset 0 0 3px 3px #E6E6E6;
    -webkit-box-shadow:inset 0 0 3px 3px #E6E6E6;
    box-shadow:inset 0 0 3px 3px #E6E6E6;
    clear: right;
}


.h-divider {
  width: 100%;
  border-bottom: 4px solid #F3E2A9;
  margin: 3px 0;
}





/************************
 * Datum
 ***********************/
#date {
	border: 0px	solid red;
	position: relative;
	width: 100%;
	padding: 5px 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#reload {
	height: 40px;
	position: absolute;
	right: 10px;
	top: 5px;
	cursor: pointer;
}
#addZusatz {
	height: 30px;
//	position: absolute;
	left: 70px;
	top: 5px;
	cursor: pointer;
}

#date > details {
	width: 100%;
	margin: 0px;
	padding: 0px;
}
#date > details > div {
	border: 0px	solid pink;
	width: 100%;
	margin: 0px;
	padding: 0px;
	margin-top: 5px;
	display: flex;
	flex-direction: row;
}
#date > details > div > div {
	border: 0px	solid brown;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#date > details > div > div > span,
#date > details > div > div > form > input {
	padding: 0 8px;
	height: 30px;
	font-size: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#date > details > div > div > form > button{
	margin: 0px;
}

/*
#date > div {
	border: 1px	solid pink;
	display: flex;
}
#date > div > div {
	border: 1px	solid red;
	border-radius: 5px;
	padding: 0px;
	display: flex;
//	flex-direction: column;
	align-items: center;
	justify-content: center;
}
#date > div > div > form {
	border: 1px	solid red;
	display: flex;
	align-items: center;
	justify-content: center;
}
#date button {
	margin-top: 15px;
}

#ist_datum, #ist_jahr, #ist_kw {
	//height: 100%;
	display: flex;
	align-items: center;
	padding: 0px 15px;
}

#dd{
	margin: 0px;
}
*/

/* iPad Air Portrait  */
@media screen and (max-width: 820px) {
	
	#date > details > div > div > span,
	#date > details > div > div > form > input {
		border: 0px	solid red;
		height: 20px;
		font-size: 12px;
	}

	#kw_minusminus, #kw_plusplus {
		display: none;
	}
		
}


/************************
 * Planung
 ***********************/
#planung{
	border: 0px	solid red;
	width: 100%;
}

.woche{
	border: 2px	solid #848484;
	border-radius: 5px;
	display: flex;
	margin-bottom: 5px;
	padding: 3px;
}
.wocheHead{

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.wocheHead_name{
	font-size: var(--fontSize_S);
	line-height: var(--fontSize_S);
	font-weight: bold;
}
.wocheHead_date{
	font-size: var(--fontSize_S);
	line-height: var(--fontSize_S);
	font-weight: normal;
}

.woche > div {
	border: 0px	solid red;

	width: 20%;
	font-size: clamp(0.8rem, 1.0vw, 1.2rem);

	padding: 2px;

	color: #333333;
  	background-color: #F2F2F2;
  	border-radius: 3px;
	box-shadow: inset -5px -5px 10px 0px rgba(255, 255, 255, 0.5), inset 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}

.worker{
	border: 5px	solid red;
	margin: 2px;
}
.auftrag{
	border: 1px	solid red;
	background-color: #F2F2F2;
	margin: 2px;
	padding-left: 5px;
	border: 0px;
	border-radius: 5px;
	cursor: pointer;

	font-size: clamp(0.6rem, 0.7vw, 1rem);

	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}


/************************
 * Info
 ***********************/

#info_planen{
	padding: 0px;
}

#info, #info_zusatz{

	width: 100%;

	//width: 800px;

	color: #123;

	display: flex;
	flex-direction: column;

	border: 5px solid #BDBDBD;
	border-radius: 5px;
	background-color: #E6E6E6;

}


	/* Handy hoch */
	@media only screen and (max-width: 820px) {
		#info, #info_zusatz{
			width: 100%;
		}
	}
	/* Handy quer */
	@media only screen and (max-width: 1180px) {
		#info, #info_zusatz{
			width: 100%;
			margin: 0px;
			padding: 0px;
		}
	}
	
#info_spalte {
	border: 0px	solid blue;
	display: flex;
}
.info_spalte_1 {
	border: 0px	solid red;
	width: 40%;
}
.info_spalte_2 {
	border: 1px	solid #6E6E6E;
	border-radius: 5px;
	padding: 5px;
	width: 60%;
}



#info_zeile{
	border: 0px	solid blue;
	padding: 5px;
	display: flex;
}

.auftragsinfo_id {
	border: 0px	solid green	;
	width: 70px;
}
#info_auftrag_id {
		border: 0px	solid red;
		width: 	50px;
}
.auftragsinfo_btn {
	border: 0px	solid pink;
	width: 100%;


}
.auftragsinfo_text {
	border: 1px solid #848484;
	border-radius: 5px;
	font-size: clamp(0.6rem, 0.7vw, 1rem);
	padding: 	5px;
	display: flex;
	flex-direction: column;
}

.auftragsinfo_text_2 {
	border: 1px	solid #6E6E6E;
	border-radius: 5px;
	margin-left: 5px;
	padding: 	5px;
	display: flex;
	flex-direction: column;
}





.info_check {
	accent-color: var(--EDH-Gelb);
}
#planen_confirmed{
	accent-color: green;
}

#tblFruits label, #wochentage label {
	margin-right: 5px;
	font-size: clamp(0.6rem, 0.8vw, 1rem);
}




/************************
 * Liste / Map, Legende
 ***********************/
#map_outer{
	border: 0px	solid red;
	width: 100%;
	display: flex;
}

/* Liste  */
#liste{
	border: 2px	solid black;
	border-radius: 5px;
	overflow-y: auto;
	margin: 5px;
	width: 100%;
	height: 30px;
	padding: 2px;
	font-size: 12px;
	display: flex;
	align-items: center;
	justify-content: center;

	display: flex;
	flex-direction: column;
}

#liste_hoch, #liste_normal {
	border: 0px	solid blue;

}


.btn_kw {
	border: 2px	solid black;
	border-radius: 5px;
	padding: 1px;
	font-size: clamp(0.6rem, 0.9vw, 1rem);
	cursor: pointer;
	position: relative;
	color: #333333;
	border: 2px solid var(--EDH-Gelb);
	background-color: #b9c7da;
	border-radius: 5px;
	box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
	margin-bottom: 3px;
}
.btn_kw_text {
	font-size: clamp(0.6rem, 0.7vw, 1rem);
}

.btn_list {
	width: 200px;
	height: auto;
	margin: 2px;
	padding: 2px;
	font-size: clamp(0.6rem, 0.7vw, 1rem);
	cursor: pointer;
	position: relative;
	color: #333333;
	display: inline-block;
	border: 2px solid var(--EDH-Gelb);
	background-color: #b9c7da;
	border-radius: 5px;
	box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
	margin-bottom: 3px;
}
.ddd {
	height: 25px;
	border: 0px solid red;
	display: flex;
	align-items: center;

}
.btn_list img {
	height: 25px;

	transform: translate(-40%, 0);
}





.listeBtn {
	border: 2px	solid black;
	height: 25px;
	margin-bottom: 4px;
	padding-left: 5px;
	border-radius: 5px;

	display: flex;
	align-items: center;

	cursor: pointer;


	font-size: clamp(0.6rem, 0.8vw, 1rem);
	



	color: #333333;
	border: 2px solid var(--EDH-Gelb);
	background-color: #b9c7da;
	border-radius: 5px;
	box-shadow: -5px -5px 10px 0px rgba(255, 255, 255, 0.5), 5px 5px 10px 0px rgba(0, 0, 0, 0.3);
}
.listeBtn_img {
	border: 0px	solid black;
	height: 90%;
	margin-right: 3px;
	
}
.listeBtn_img img {
	height: 100%;
}
.listeBtn_id {
	border: 1px	solid black;
	width: 45px;
	height: 18px;
}
.listeBtn_kurzb {
	border: 1px	solid black;
	width: 80px;	
}
.btn {
	height: 20px;
	background-color: var(--EDH-Gelb);
	margin: 0px 3px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;

	box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}


/*  KARTE  */
#mapLegende{
	border: 0px	solid pink;
	width: 100%;
}
#map{
	width: 100%;
	height: 400px;
	
	border: 1px solid black;
	border-radius: 5px;
	margin-right: 5px;

	//box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

#legende{
	border: 1px solid red;
	margin-top: 10px;
}




/************************
 * Fahne
 ***********************/
.f_header{
	font-weight: bold;
}



