
body {
	padding: 0px;
	margin: 0px;
}

.site--std-body {
	background-color: #f7f7ea;
}

.site--container {
	margin: 0px;
}

.site--formset {
	width: 800px;
	padding: 10px;
	border: 1px solid #444444;
	border-radius: 4px;
	background-color: #eeeeee;
}

.site--label {
	display: inline-block;
	font-weight: bold;
	margin-bottom: 10px;
	width: 250px;
	font-size: 13px;
}

.site--submit {
	color: #f0f0f0;
	background-color: #2233a0;
	margin: 2px 1px 0 0;
	padding: 3px 6px;
	border-radius: 3px;
	cursor: pointer;
	outline: none;
	border: none;
	font-family: sans;
	font-size: 14px;
	font-weight: bold;
	height: 25px;
	max-height: 25px;
	min-height: 25px;
	text-align: center;
	text-decoration: none;
}

div.site--easy-table {
	/*height: 600px;*/
}

table.site--easy-table {
	border-collapse: collapse;
	border: 1px solid maroon;
}

tr.site--easy-table {
	
}

th.site--easy-table {
	background-color: lightgrey;
	border-bottom: 1px solid maroon;
	font-weight: bold;
	padding: 3px 5px 3px 5px;
	text-align: left;
}

td.site--easy-table {
	background-color: #f0f0ff;
	border-bottom: 1px dotted grey;
	padding: 3px 5px 3px 5px;
	text-align: left;
	min-width: 20px;
	max-width: 280px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.site--success {
	color: green;
	font-style: italics;
}

.site--error {
	color: red;
	font-style: italics;
}

.site--info {
	color: blue;
	font-style: italics;
}

.site--button {
	display: inline-block; /* brauch ich das ? */
	margin: 2px 1px 0 0;
	padding: 3px 4px;
	border-radius: 2px;
	cursor: pointer;
	outline: none;
	border: none;
	font-family: sans;
	font-size: 14px;
	font-weight: bold;
	width: 170px;
	max-width: 170px;
	min-width: 170px;
	height: 20px;
	max-height: 20px;
	min-height: 20px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	text-align: center;
	text-decoration: none;
}

.site--menu-button {
	background-color: #6079d0;
	color: #f9f9f6;
}

.site--menu-button-active {
	background-color: #83a0f0;
	color: #f9f9f6;	
}

.site--pagelinks {
	margin: 5px 0 2px 0;
}

.site--pagelink {
	margin: 0 3px 0 0;
	padding: 5px 0px 5px 8px;
	color: #f22260;
	font-size: 16px;
	font-weight: bold;
	background-color: #a9c9f0;
	text-decoration: none;
	display: inline-block;
	min-width: 20px;
}

.site--shiftlink {
	margin: 0 3px 0 0;
	padding: 4px 0px 4px 8px;
	color: green;
	font-size: 18px;
	font-weight: bold;
	background-color: #a9c9f0;
	text-decoration: none;
	display: inline-block;
	min-width: 20px;
}

.site--samelink {
	margin: 0 3px 0 0;
	padding: 5px 0px 5px 8px;
	color: #404040;
	font-size: 16px;
	font-weight: bold;
	background-color: #a9a9a9;
	text-decoration: none;
	display: inline-block;
	min-width: 20px;
}

.site--iconlink {
	font-size: 15px;
	cursor: pointer;
}

.site--iconinfo {
	font-size: 15px;
}

.site--top {
	height:35px;
	width: 100%;
	padding: 5px 0px 3px 20px;
	margin: 0px;
}

/** css switcher - begin */
/** @credits https://www.w3schools.com/howto/tryit.asp?filename=tryhow_css_switch */
.site--switch {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 17px;
}

.site--switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

.site--slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 17px;
}

.site--slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .site--slider {
  background-color: #2196F3;
}

input:focus + .site--slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .site--slider:before {
  -webkit-transform: translateX(13px);
  -ms-transform: translateX(13px);
  transform: translateX(13px);
}
/** css switcher - end */