/* 
	Author	:	Boris Geiger
*/

.modtab {
	width: 100%;
	border: black solid thin;
}

.modtabkopf {
	background-color: aqua;
	text-align: left;
	padding: 10px;
}

.modtabzeile:nth-child(even) {
	background-color: #e4ebf2;
	color: #000;
}

.modbutton {
  /*
  background-color: aqua;
  border: none;
  padding: 15px 32px;
  color: #000;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19); */
  background-color: #2196F3;
  border: none;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}

.modbutton:hover {
  /*
  background-color: antiquewhite;
  */
  background-color: #1976D2;  
}

.modselect {
  /*
  border: 1px solid #000;
  border-radius: 0.50em;
  padding: 0.25em 0.5em;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1.1;
  background-color: aqua;
  */
  border: 2px solid #2196F3;
  padding: 10px;
  border-radius: 5px;
  margin: 5px;
  display: inline-block;
}

.toolleiste {
	box-shadow: 10px 20px 15px silver;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 1em 2em;
	flex-wrap: nowrap;
	flex-direction: row;
	border-radius: 20px;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	padding-right: 10px;
	background: silver;
	border: 2px solid black;
}

.modflex {
	display: flex;
	justify-content: center;
	gap: 1em 2em;
	flex-wrap: wrap;
	flex-direction: row;
	min-width: 90vw;
	max-width: 90vw;
}

.modflexitem {
	width: 400px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
	background: aquamarine;
	border: 2px solid black;
}

#body-overlay.sichtbar, .dialog.sichtbar .nachoben.sichtbar {
	display: block;
}

#body-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.6);
	display: none;
}

.dialog {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	background-color: white;
	color: black;
	border-radius: 8px;
	box-shadow: 8px 8px 16px rgba(255, 255, 255, 0.1);
	z-index: 9999999;
	display: none;
}

.dialog_schiessen {
	position: absolute;
	top: 10px;
	right: 10px;
	font-size: 32px;
	line-height: 32px;
	color: rgba(0, 0, 0, 0.4);
	text-decoration: none;
}