html,
body {
	margin: 0;
	padding: 0;
}

button {
	margin: 0;
	font-size: 100%;
	vertical-align: baseline;
	font-family: inherit;
	font-weight: inherit;
	color: inherit;
}

body {
	line-height: 1.4em;
	background: #f5f5f5;
	color: #111111;
	min-width: 230px;
	margin: 0 auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-weight: 300;
}

.hidden {
	display: none;
}


.cyberslam {
	background: #fff;
	margin: auto;
	width: 90%;
	position: relative;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.2),
		0 25px 50px 0 rgba(0, 0, 0, 0.1);
	display: flex;
	flex-direction: column;
}

.main {
	position: relative;
	z-index: 2;
	border-top: 1px solid #e6e6e6;
	padding: 20px;
}

.todo-list {
	margin: 0;
	padding: 0;
	list-style: none;
	width: 300px;
}

.todo-list label{
	text-wrap: nowrap;
}
.todo-list li {
	position: relative;
	font-size: 15px;
	
	border-bottom: 1px solid #ededed;
}

.todo-list li:last-child {
	border-bottom: none;
}

.todo-list li .toggle {
	text-align: center;
	width: 40px;
	/* auto, since non-WebKit browsers doesn't support input styling */
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto 0;
	border: none; /* Mobile Safari */
	-webkit-appearance: none;
	appearance: none;
}

.todo-list li .toggle {
	opacity: 0;
}

.todo-list li .toggle + label {
	/*
		Firefox requires `#` to be escaped - https://bugzilla.mozilla.org/show_bug.cgi?id=922433
		IE and Edge requires *everything* to be escaped to render, so we do that instead of just the `#` - https://developer.microsoft.com/en-us/microsoft-edge/platform/issues/7157459/
	*/
	background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%23949494%22%20stroke-width%3D%223%22/%3E%3C/svg%3E');
	background-repeat: no-repeat;
	background-position: center left;
}

.todo-list li .toggle:checked + label {
	background-image: url('data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2240%22%20height%3D%2240%22%20viewBox%3D%22-10%20-18%20100%20135%22%3E%3Ccircle%20cx%3D%2250%22%20cy%3D%2250%22%20r%3D%2250%22%20fill%3D%22none%22%20stroke%3D%22%2359A193%22%20stroke-width%3D%223%22%2F%3E%3Cpath%20fill%3D%22%233EA390%22%20d%3D%22M72%2025L42%2071%2027%2056l-4%204%2020%2020%2034-52z%22%2F%3E%3C%2Fsvg%3E');
}

.todo-list li label {
	word-break: break-all;
	padding: 15px 15px 15px 60px;
	display: block;
	line-height: 1.2;
	transition: color 0.4s;
	font-weight: 400;
	color: #484848;
}

.todo-list li.completed label {
	color: #949494;
	text-decoration: line-through;
}


.todo-list li .edit {
	display: none;
}

.todo-list li.editing:last-child {
	margin-bottom: -1px;
}

.header {
	width: 100%;
	display: flex;
	justify-content: space-between;
	background-color: rgb(9, 50, 104);
	color: rgb(255, 255, 255);
	font-size: 20px;
	font-weight: bold;
}

.footer {
	padding: 10px 15px;
	background-color: rgb(9, 50, 104);
	color: rgb(255, 255, 255);
	height: 20px;
	text-align: center;
	font-size: 15px;
	border-top: 1px solid #e6e6e6;
}

.footer:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 50px;
	overflow: hidden;
}


.info {
	margin: 65px auto 0;
	color: #4d4d4d;
	font-size: 11px;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
	text-align: center;
}

.info p {
	line-height: 1;
}

.info a {
	color: inherit;
	text-decoration: none;
	font-weight: 400;
}

.info a:hover {
	text-decoration: underline;
}

:focus,
.toggle:focus + label,
.toggle-all:focus + label {
	box-shadow: 0 0 2px 2px #CF7D7D;
	outline: 0;
}
.view label {
user-select: none;
}

form > label{
	width: 200px;
	display: block;
}

form > button {
	margin: 10px;
}

.next > h1 {
	font-size: 20px;
	line-height: normal;
	text-align: center;
}

.next > h2 {
	font-size: 40px;
	line-height: normal;
	text-align: center;
}

.next > h3 {
	font-size: 20px;
	line-height: normal;
}
.next > quote {
	font-style: italic;
	border-left: 1px solid #000;
	padding: 10px;
}

.next > .learnings {
	text-align: justify;
}

.next>.tasks {
	text-align: justify;
}
.formQuiz {
	padding: 20px;
	border: 1px solid black;
	margin-bottom: 20px;
	h2 {
		font-weight: bold;
	}
	label {
		width: max-content;
		padding: 10px 0px 10px 0px
	}
	a {
		padding: 10px;
	}
}

.formNext {
	padding: 20px;
	border: 1px solid black;
}

.content {
	display: flex;
}
.right {
	width: 400px;
}