@charset "UTF-8";
/* CSS Document */

/* #region  GENERELLES STYLING */

html,
html * {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: Futura, Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	text-align: center;
	text-decoration: none;
	/* transition: all 0.5s; */
}

body {
	background-color: #111111;
	color: #eeeeee;
}

a {
	text-decoration: none;
	color: #666666;
	opacity: 0.8;
	cursor: pointer;
	transition: all 0.1s;;
}

a:hover {
	color: black;
	opacity: 1.0;
}

p {
	text-align: left;
	font-weight: normal;
	font-size: 16px;
	line-height: 1.5;
	padding-bottom: 5px;
	color: #222222;
}

h1 {
	text-align: center;
	font-size: 30px;
	padding-top: 15px;
	padding-bottom: 15px;
}

h2 {
	text-align: left;
	font-size: 25px;
	padding-top: 15px;
	padding-bottom: 15px;
}

h2::after {
	display: inline-block;
	content: " ";
}

h3 {
	text-align: left;
	font-size: 20px;
	padding-top: 15px;
	padding-bottom: 15px;
}

h4 {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}

h5 {
	text-align: left;
	font-size: 15px;
	padding-top: 10px;
	padding-bottom: 10px;
}

ul {
	text-align: left;
	list-style-type: circle;
	margin-left: 25px;
	margin-top: 10px;
	margin-bottom: 10px;
}

li {
	text-align: left;
	padding: 3px;
	padding-left: 0px;
}

button {
	cursor: pointer;
	border: none;
	background-color: transparent;
}

input[type="checkbox"] {
	display: none;
  }
  
  input[type="checkbox"] + label {
	position: relative;
	display: inline-flex;
	cursor: pointer;
	line-height: 1.5;
  }
  
  input[type="checkbox"] + label:before {
	width: 40px;
	height: 20px;
	border-radius: 30px;
	border: 2px solid #ddd;
	background-color: #EEE;
	content: "";
	margin-right: 15px;
	transition: background-color 0.5s linear;
  }
  
  input[type="checkbox"] + label:after {
	width: 20px;
	height: 20px;
	border-radius: 30px;
	background-color: #fff;
	content: "";
	transition: margin 0.1s linear;
	box-shadow: 0px 0px 5px #aaa;
	position: absolute;
	left: 2px;
	top: 2px;
  }
  
  input[type="checkbox"]:checked + label:before {
	background-color: #2b8718;
  }
  
  input[type="checkbox"]:checked + label:after {
	margin: 0 0 0 20px;
  }


input[type="text"], input[type="password"], input[type="email"], input[type="submit"] {
	height: 40px;
	margin-top: 5px;
	margin-bottom: 5px;
	font-size: 12px;
	width: 250px;
	border: 1px solid silver;
	border-radius: 1px;
	background: white;
	-webkit-appearance: none;
	-moz-appearance: none;
	transition: all 0.5s;
}

input[type="submit"] {
	cursor: pointer;
	background: whitesmoke;
	margin-top: 10px;
	margin-bottom: 10px;
}

input[type=submit]:hover {
	background-color:#71a759;
	border: 1px solid black;
	transition: all 0.5s;
}

/* Farben */

:root {
	--color-schuricht: #59ade2;
	--color-thormeyer: #ef563c;
	--color-donndorf: #71a759;
	--color-cauer: #fa9d07;
	--color-suche: #696F7B;
}
/* #endregion */
