/**https://codepen.io/rachelandrew/pen/PNwaZe**/
body {
	margin: 0;
	padding: 0;
	background: url(BACKGROUNDTOP.png) no-repeat center center fixed;
	background-size: cover;
	height: 100%;
	font-family: Arial;
}

/*
/
/
/Logo
/
/
*/
.logo {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	position: absolute;
	top: calc(-100px/ 2);
	left: calc(50% - 50px);
}

/* unvisited link */
a:link {
	color: with;
	text-decoration: none;
}

/* visited link */
a:visited {
	color: with;
	text-decoration: none;
}
/*
/
/
/No Access
/
/
*/
.noAccess {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 320px;
	padding: 80px 40px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.noAccess p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}

.noAccess a {
	position: relative;
	top: 20px;
	font-size: 50px;
	color: #fff;
	border-radius: 3px;
	background: #8C8D8B;
}

.noAccess input {
	width: 100%;
	margin-bottom: 10px;
}

.noAccess input[type="submit"] {
	margin-top: 400;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 30px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	text-decoration: none;
}

.noAccess input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/Login
/
/
*/
.login {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 350px;
	padding: 80px 40px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.login p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}

.login input {
	width: 100%;
	margin-bottom: 10px;
}

.login input[type="email"], input[type="password"] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
}

::placeholder {
	color: rgba(255, 255, 255, .5);
}

.login input[type="submit"] {
	border: none;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
	position: center;
}

.login input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/Logout
/
/
*/
.logout {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 350px;
	height: 250px;
	padding: 80px 40px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
}
/*
/
/
/Logout Schrift
/
/
*/
.logout p {
	margin: 0;
	margin-bottom: 40;
	padding: 0;
	font-weight: bold;
	color: #FFFFFF;
}
/*
/
/
/Logout Button
/
/
*/
.logoutButton {
	margin-top: 400;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 30px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	text-decoration: none;
}

.logoutButton:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/Registrierung neuer Nutzer
/
/
*/
.registration {
	position: absolute;
	top: 50%;
	left: 50%;
	overflow-y: auto;
	overflow-x: auto;
	transform: translate(-50%, -50%);
	width: 50%;
	height: 80%;
	margin-left: auto;
	margin-right: auto;
	padding: 40px 40px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
}

.registration input {
	width: 100%;
	margin-bottom: 0px;
}

.registration input[type="telefonnummer"], input[type="text"], input[type="email"],
	input[type="passwort"], input[type="passwort2"], input[type="nachname"],
	input[type="klasse"] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 30px;
	color: #fff;
	font-size: 16px;
}

.registration input[type="checkbox"] {
	display: block;
	background: #ff0000;
}

/*
/
/
/Registrierung Schrift
/
/
*/
.registration p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}

.registration a {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}
/*
/
/
/Platzhalter Schrift
/
/
*/
::placeholder {
	color: rgba(255, 255, 255, .5);
}
/*
/
/
/Registrierungs Button
/
/
*/
.registration input[type="submit"] {
	border: none;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
	position: center;
}

.registration input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/Footer
/
/
*/
.footer {
	position: fixed;
	z-index: 10;
	left: 0;
	bottom: 0;
	width: 100%;
	margin-top: 10px;
	background-color: #8C8D8B;
	color: white;
	text-align: center;
	display: inline-block;
}

a: link {
	color: #fffff;
	background-color: transparent;
	text-decoration: none;
}

/*
/
/
/Navbar
/
/
*/
.topnav {
	position: fixed;
	background-color: #4a4a4a;
	min-height: 55px;
	width: 100%;
	z-index: 15;
	background-clip: padding-box;
	border-bottom: 4px solid rgba(0, 0, 0, 0.49);
}
/*
/
/
/Navbar Schrift
/
/
*/
.topnav a {
	font-size: 1.28vw;
	color: #FFFFFF;
	float: left;
	text-align: center;
	text-decoration: none;
	padding: 14px 14px;
}

.topnav a:hover, .dropdown:hover .dropbtn {
	background-color: #333333;
}

.topnav .log {
	color: #4db8ff;
	float: right;
}
/* The dropdown container */
.topnav .dropdown {
	float: left;
	overflow: hidden;
}

/* Dropdown button */
.topnav .dropdown .dropbtn {
	border: none;
	text-align: center;
	outline: none;
	font-size: 1.28vw;
	color: #FFFFFF;
	padding: 14px 14px;
	background-color: inherit;
}

/* Dropdown content (hidden by default) */
.topnav .dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

/* Links inside the dropdown */
.topnav .dropdown-content a {
	float: none;
	color: black;
	padding: 14px 14px;
	text-decoration: none;
	display: block;
	text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.topnav .dropdown-content a:hover {
	background-color: #ddd;
}

/* Show the dropdown menu on hover */
.topnav .dropdown:hover .dropdown-content {
	display: block;
}
/*
/
/
/Nutzerentfernung
/
/
*/
.deleteuser {
	position: absolute;
	top: 50%;
	left: 50%;
	overflow-y: auto;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 60px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.deleteuser a {
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: bold;
	color: white;
}

.deleteuser p {
	margin: 0;
	padding: 0;
	font-size: 30px;
	font-weight: bold;
	color: black;
}

.deleteuser h1 {
	text-align: center;
	font-size: 26px;
	color: black;
}

.deleteuser label {
	text-align: center;
	font-size: 20px;
	color: #303030;
}
/*
/
/
/Nutzerentfernung Button
/
/
*/
.deleteuser input[type="submit"] {
	border: none;
	outline: none;
	height: 30px;
	color: #000000;
	font-size: 25px;
	background: #8C1111;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 3px;
	position: center;
}

.deleteuser input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/Kuchenliste 
/
/
*/
.adminliste {
	position: absolute;
	top: 50%;
	left: 50%;
	overflow-y: auto;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 70%;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 60px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.adminliste a {
	margin: 0;
	padding: 0;
	font-size: 40px;
	font-weight: bold;
	color: #fff;
}

.adminliste p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}

.adminliste input {
	width: 100%;
	margin-bottom: 10px;
}

.textinput {
	border: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 100px;
	color: #fff;
	font-size: 18px;
	margin-bottom: 15px;
}

.adminliste input[type="email"], input[type="text"], input[type="date"],
	input[type="number"] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
}

::placeholder {
	color: rgba(255, 255, 255, .5);
}

.adminliste input[type="submit"] {
	border: none;
	outline: none;
	height: 30px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin: 2px;
	position: center;
}

.adminliste input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}

.adminliste button {
	border: none;
	outline: none;
	width: 49.5%;
	height: 40px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
}

.adminliste button:hover {
	background: #6E6E6E;
	color: #262626;
}
/*
/
/
/User Calendar
/
/
*/
.calendaruser {
	position: fixed;
	overflow-y: scroll;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 80%;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 60px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.calendaruser p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: black;
	font-size: 20px;
	position: center;
}

.calendaruser input {
	width: 99%;
	margin-bottom: 10px;
}

.calendaruser input[type="email"], input[type="password"] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	margin-bottom: 15px;
}

::placeholder {
	color: rgba(255, 255, 255, .5);
}

.calendaruser form {
	display: inline;
	vertical-align: middle;
}

.calendaruser input[type="submit"] {
	border: none;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
	position: center;
}

.calendaruser input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}

.buttonlinkregister {
	border: none;
	color: white;
	text-align: center;
	text-decoration: none;
	font-size: 10px;
}

.link {
	color: #000000;
}

.calendartable {
	border-collapse: collapse;
	width: 100%;
}

.calendar {
	padding: 14px;
	text-align: center;
	border: 1px solid #000000;
}

.calendarsmall {
	padding: 8px;
	width: 30px;
	text-align: center;
	border: 1px solid #000000;
}

.calendarfree {
	background-color: #C0F390;
	text-align: center;
	border: 1px solid #000000;
}

.calendarfreeadmin {
	background-color: #C0F390;
	text-align: center;
	border: 1px solid #000000;
	padding: 8px;
}

.calendarweekend {
	background-color: #505050;
	text-align: center;
	border: 1px solid #000000;
	padding: 8px;
}

.calendarfull {
	background-color: #DD2222;
	text-align: center;
	border: 1px solid #000000;
	padding: 8px;
}

.calendaruser button {
	border: none;
	outline: none;
	width: 49.4%;
	height: 40px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.calendaruser button:hover {
	background: #6E6E6E;
	color: #262626;
}

input[type="number"] {
	-moz-appearance: textfield;
}

h1, h2, h3 {
	color: #fff;
	margin-top: 15px;
}
/*
/
/
Popup
/
/
*/
/* The alert message box */
.popup {
	padding: 20px;
	overflow-y: auto;
	background-color: #585858;
	color: white;
	position: absolute;
	text-align: center;
	top: 25%;
	right: 20%;
	width: 60%;
	height: 50%;
	font-size: 16px;
}
/* The close button */
.closebtn {
	margin-left: 15px;
	color: white;
	font-weight: bold;
	float: right;
	font-size: 22px;
	line-height: 20px;
	cursor: pointer;
	transition: 0.3s;
}

/* When moving the mouse over the close button */
.closebtn:hover {
	color: black;
}

/*testteam*/
.testteam {
	position: fixed;
	overflow-y: scroll;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	height: 80%;
	margin-left: auto;
	margin-right: auto;
	padding: 30px 60px;
	box-sizing: border-box;
	background: rgba(0, 0, 0, .5);
	position: center;
}

.testteam a {
	color: black;
	font-size: 24px;
}

.testteam input[type="number"] {
	border: none;
	border-bottom: 2px solid black;
	outline: none;
	width: 50px;
	height: 30px;
	font-size: 16px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.testteam input[type="submit"] {
	border: none;
	outline: none;
	width: 100px;
	height: 30px;
	color: #fff;
	font-size: 16px;
	background: #8C8D8B;
	cursor: pointer;
	border-radius: 3px;
	margin-top: 15px;
	margin-bottom: 15px;
}

.testteam input[type="submit"]:hover {
	background: #6E6E6E;
	color: #262626;
}

/* NEW Calendar-Design \*

/* declare a 5 column grid on the table */
#newcalendar {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
}

#newcalendar tr, #newcalendar tbody {
	grid-column: 1/-1;
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	width: 100%;
}

caption {
	text-align: center;
	grid-column: 1/-1;
	font-size: 130%;
	font-weight: bold;
	padding: 10px 0;
}

#newcalendar a {
	color: #8e352e;
	text-decoration: none;
}

#newcalendar td, #newcalendar th {
	padding: 5px;
	box-sizing: border-box;
	border: 1px solid #ccc;
}

#newcalendar .weekdays {
	background: #8e352e;
}

#newcalendar .weekdays th {
	text-align: center;
	text-transform: uppercase;
	line-height: 20px;
	border: none !important;
	padding: 10px 6px;
	color: #fff;
	font-size: 13px;
}

#newcalendar td {
	min-height: 180px;
	display: flex;
	flex-direction: column;
}

#newcalendar .days li:hover {
	background: #d3d3d3;
}

#newcalendar .date {
	text-align: center;
	margin-bottom: 5px;
	padding: 4px;
	background: #333;
	color: #fff;
	width: 20px;
	border-radius: 50%;
	flex: 0 0 auto;
	align-self: flex-end;
}

#newcalendar .event {
	flex: 0 0 auto;
	font-size: 13px;
	border-radius: 4px;
	padding: 5px;
	margin-bottom: 5px;
	line-height: 14px;
	background: #e4f2f2;
	border: 1px solid #b5dbdc;
	color: #009aaf;
	text-decoration: none;
}

#newcalendar .event-desc {
	color: #666;
	margin: 3px 0 7px 0;
	text-decoration: none;
}

#newcalendar .other-month {
	background: #f5f5f5;
	color: #666;
}

/* ============================
				Mobile Responsiveness
   ============================*/
@media ( max-width : 768px) {
	#newcalendar .weekdays, #newcalendar .other-month {
		display: none;
	}
	#newcalendar li {
		height: auto !important;
		border: 1px solid #ededed;
		width: 100%;
		padding: 10px;
		margin-bottom: -1px;
	}
	#newcalendar, #newcalendar tr, #newcalendar tbody {
		grid-template-columns: 1fr;
	}
	#newcalendar  tr {
		grid-column: 1/2;
	}
	#newcalendar .date {
		align-self: flex-start;
	}
}