/************************************
 * 
 * 	SCROLLBAR
 * 	Header
 * 	Container
 * 	Inputfelder
 * 	Button
 *  POPUP
 *  Login
 */



/*****************************************************************************************************************
* DIALOG  
*****************************************************************************************************************/
::backdrop {
  background-image: linear-gradient(
    45deg,
    magenta,
    rebeccapurple,
    dodgerblue,
    green
  );
  opacity: 0.75;
}


dialog {
	width: 800px;
	border-radius: 10px;
	background-color: #A4A4A4;
}




/*****************************************************************************************************************
* CLOSE BUTTON 
*****************************************************************************************************************/
#popPlanen_btn_close {
	width: 25px;
	height: 25px;
	font-size: 20px;
	font-weight: bolder;
	line-height: 1px;
	background-color: #FDEB4D;
	border-radius: 5px;
	position: absolute;
	top: 10px;
	right: 10px;

	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

/*****************************************************************************************************************
* HEADER 
*****************************************************************************************************************/
#popPlanen_header {
	border: 0px solid red;
	font-size: 25px;
	font-weight: bold;
	color: var(--EDH-Gelb);
}

/*****************************************************************************************************************
* BUTTON 
*****************************************************************************************************************/
.popPlanen_btn {
	border: 0px solid red;
	display: flex;
}


/*****************************************************************************************************************
* TERMIN BESTÄTIGT 
*****************************************************************************************************************/
#popPlanen_sh_confirmed {
	height: 50px;
	border: 0px solid red;
	display: flex;
	position: relative;
	display: flex;
	align-items: center;
}
#popPlanen_sh_confirmed > label {
	border: 0px solid red;
	display: flex;
	align-items: center;
	font-weight: bold;
	padding-left: 5px;
}
#popPlanen_sh_confirmed > button {
	position: absolute;
	right: 0px;
}

/*****************************************************************************************************************
* GANZER TAG 
*****************************************************************************************************************/
#popPlanen_sh_fullDay {
	height: 50px;
	border: 0px solid red;
	display: flex;
	position: relative;
	display: flex;
	align-items: center;
}
#popPlanen_sh_fullDay > label {
	border: 0px solid red;
	display: flex;
	align-items: center;
	font-weight: bold;
	padding-left: 5px;
}
#popPlanen_sh_fullDay > button {
	position: absolute;
	right: 0px;
}

/*****/
/*****/
/*****/
/*****/
/*****/
/*****/
/*****/



#popPlanen, #popupZusatz, #pop_anlagecheck_change, #pop_anlagecheck_new {
	width: auto;
	background-color: var(--EDH-Türkis3);
	border: 5px solid var(--EDH-Gelb);
	border-radius: 5px;
	padding: 5px;

  	position: absolute;
  	top: 50%;
  	left: 50%;

	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	z-index: 99;
	display: none; 
}

#popClose {
	width: 25px;
	height: 25px;
	font-size: 20px;
	font-weight: bolder;
	line-height: 1px;
	background-color: #FDEB4D;
	position: absolute;
	top: 10px;
	right: 10px;

	display: flex;
	align-items: center;
	justify-content: center;
}

/*****************************************************************************************************************
* TITEL 
*****************************************************************************************************************/
.pop_titel {
	border: 0px solid red;
	color: var(--EDH-Gelb);
}




/*****************************************************************************************************************
* INPUT 
*****************************************************************************************************************/
.pop_input {
	border: 0px solid red;
	color: var(--EDH-Gelb);
}



/*****************************************************************************************************************
* Wochentag 
*****************************************************************************************************************/

.pop_wochentag {
	border: 0px solid red;
}
.pop_wochentag_titel {
	color: var(--EDH-Gelb);
}
.pop_wochentag_weekday {
	display: flex;
}
.pop_wochentag_weekday_btn {
	height: 30px;
	width: 150px;
	margin: 5px;
	background-color: #2ECCFA;
	color: #000;

	font-size: 20px;
	line-height: 1px;

	display: flex;
	align-items: center;
	justify-content: center;
}
.pop_wochentag_line {
	width: 100%;
	height: 3px;
	background-color: var(--EDH-Gelb);
	border-radius: 5px;
}


/* iPad Air Landscape */
@media screen and (max-width: 1180px) {

}

/* iPad Air Portrait  */
@media screen and (max-width: 820px) {

		.pop_container_week {
			flex-direction: row;
		}
		.pop_container_weekday {
			flex-direction: column;
		}	


		.pop_container_weekday_btn {
			height: 30px;
			width: 80px;
			margin: 5px;
			background-color: #2ECCFA;
			color: #000;

			font-size: 10px;
			line-height: 1px;

			display: flex;
			align-items: center;
			justify-content: center;
		}
}






