*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #f3f5f9;
	/* background-color: black; */
	/* font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
	font-family: 'Roboto', sans-serif;
	color: rgb(48, 46, 46);
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
header {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#top-logo {
	height: 90%;
	margin-left: 40px;
}

header span {
	margin-right: 20px;
	font-size: small;
	font-weight: 500;
}

.top-bar {
	height: 50px;
	background-color: #3d3b56;
	position: relative;
}

#login-container {
	width: 100%;
	padding: 0px;
	border: 1px solid #dfdfdf;
	border-radius: 3px;
	width: 640px;
	margin: 50px auto 0px;
	width: 640px;
}

#login-top {
	background-color: #f7f7f7;
	height: 35px;
	padding: 15px;
}

#login-main {
	padding-top: 20px;
	border-top: 1px solid #dfdfdf;
	background-color: white;
	height: 300px;
}

.input-box {
	height: 28px;
	width: 100%;
	border: 1px solid #dfdfdf;
	padding: 0 15px;
	border-radius: 3px;
}
.login-block {
	display: flex;
	justify-content: space-around;
	align-items: flex-end;
}
.login-box {
	width: 100%;
	padding: 10px 50px 10px 0;
	text-align: right;
}
.login-txt {
	width: 25%;
	padding: 10px 0 10px 50px;
}

.input-box:focus {
	border: 1px solid #5867dd;
	outline: none;
}

.button-standard {
	height: 35px;
	width: 70px;
	background-color: #5867dd;
	color: white;
	border-radius: 3px;
	border: 1px solid #5867dd;
	font-weight: bold;
}

select {
	height: 35px;
	margin: 0 20px 0 5px;
}

.overview-menu {
	margin-top: 5px;
	display: flex;
	padding: 5px;
	justify-content: center;
}

.overview-form {
	display: flex;
	justify-content: center;
	align-items: center;
}

button:hover,
.logout:hover {
	background-color: darkblue;
	/* border: 1px solid darkblue; */
	transition: background-color 0, 5s ease-in-out;
	/* transition: border 1s ease-in-out; */
}

#error {
	text-align: center;
	justify-content: center;
	color: red;
	font-weight: bold;
	margin: 20px auto;
}

table.table-def {
	border-collapse: collapse;
	width: 50%;
	margin: 20px auto;
}

table.table-def td,
table.table-def th {
	border: 1px solid #dddddd;
	text-align: center;
	padding: 8px;
}

table.table-def tr:nth-child(even) {
	background-color: #dddddd;
}

form {
	width: 100%;
	height: 100%;
}

footer {
	height: 40px;
	background-color: white;
	display: flex;
	align-items: center;
	color: gray;
	width: 100%;
	padding-left: 10px;
	margin-top: auto;
	z-index: 4;
}

.week-date {
	font-weight: lighter;
	font-size: 10px;
	color: gray;
}

.calendar-size {
	padding: 0px;
	border: 1px solid #dfdfdf;
	width: 900px;
	margin: 20px auto 10px;
}

.legend {
	display: flex;
	justify-content: center;
	width: 900px;
	margin: 5px auto 15px;
	color: #fff;
}

.legend p {
	margin: 0 10px;
	padding: 0 10px;
	border-radius: 5px;
}

.red {
	background-color: red;
}

.orange {
	background-color: orange;
}

.blue {
	background-color: #3788d8;
}

.green {
	background-color: green;
}

.row-red {
	color: red;
}

.hamburger {
	height: 100%;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 10px;
	padding: 5px;
	cursor: pointer;
	background-color: transparent;
	font-size: 0;
	border: 0;
	/* transform: translateY(-100%); */
}

.hamburger__box {
	width: 30px;
	height: 20px;
	display: inline-block;
	position: relative;
}

.hamburger__inner {
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	position: absolute;
	height: 3px;
	background-color: lightgrey;
	transition: background-color 0.1s;
	border-radius: 2px;
}

.hamburger__inner::before,
.hamburger__inner::after {
	content: '';
	width: 100%;
	position: absolute;
	height: 3px;
	background-color: lightgray;
	left: 0;
	border-radius: 2px;
	transition: transform 0.2s;
}

.hamburger__inner::before {
	top: -8px;
}

.hamburger__inner::after {
	top: 8px;
}
.hamburger--active .hamburger__inner {
	background-color: transparent;
}
.hamburger--active .hamburger__inner::before {
	transform: translateY(8px) rotate(45deg);
}
.hamburger--active .hamburger__inner::after {
	transform: translateY(-8px) rotate(-45deg);
}

.navigation {
	width: 200px;
	background-color: #3d3b56;
	position: absolute;
	bottom:0;
        top: 100px;
	left: 0px;
	transform: translateX(-200px);
	transition: transform 0.3s 0.1s ease-in-out;
	z-index: 3;
	overflow: hidden;
}

.navigation__list {
	margin-top: 20px;
	list-style: none;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: right;
	align-items: center;
}
.navigation__item {
	width: 100%;
	color: rgb(99, 91, 91);
	text-decoration: none;
	padding: 5px;
	font-size: 20px;
	font-weight: 600;
}

.navigation__item__link {
	width: 100%;
	color: lightgrey;
	text-decoration: none;
	padding: 8px 30px;
	font-size: 15px;
	font-weight: bold;
	list-style: none;
}

.navigation__item__link :hover {
	color: white;
	transition: background-color 0.5s;
}

.navigation--active {
	transform: translateX(0px);
}
.logout {
	position: absolute;
	display: flex;
	right: 0;
	margin-right: 20px;
	align-items: center;
	height: 100%;
}

.logout img {
	height: 40px;
	width: 40px;
	border-radius: 100%;
}

@media only screen and (max-width: 900px) {
	#login-container {
		width: 100vw;
	}
	.input-box {
		width: 100%;
		margin: 0 auto;
	}
	table.table-def td,
	table.table-def th {
		padding: 2px;
		font-size: 9px;
	}
	table.table-def {
		width: 100%;
	}
	#menu {
		padding: 10px;
		font-size: 12px;
		font-weight: normal;
	}

	header span {
		display: none;
	}
	.login-block {
		display: block;
	}

	.login-box {
		width: 100%;
		padding: 5px 20px;
	}
	.login-txt {
		width: 100%;
		padding: 5px 20px 0px;
	}
	.week-date {
		font-size: 6px;
	}

	.calendar-size {
		width: 100%;
	}

	.legend {
		width: 100%;
	}
}
