/* Hauptteil der CSS */
/* Version 1.3       */
@media screen and (min-width: 480px) {
  /*  Code für große Smartphones, kleine Tablets */	
}

body {
  background-color:#white;
  /*background-color:#EFF8FB;*/
  font-family:Verdana;
  font-size:1em;
  text-align: left;
}

div.wrapper{
	border: 3px solid red;
	background-color: #EFF8FB;
	margin: 10px;
   }
   
div.wrapper_outer{
	background-color: #EFF8FB;
	margin: 3px;
   }
   
   
form {
  /*background-color:#EFF8FB;*/
  font-size:1.6em;
  padding:10px;
  margin:5px;
  text-align:left;
  
  /*width:65%;*/
}

h2 {
	font-size: 0.9em;
}

select, input {
  border-radius: 3px;
  font-size:1.2em;
}

textarea {
	background-color:#EFF8FB;
	border: 1px solid #cccccc;
	font-family: Verdana, sans-serif;
	font-size:0.8em;
	width:99%;
	height: 12em;
	padding:1ex;
    box-sizing:border-box;
    color:navy;
}

/* Ende des Hauptteils */
div.Fehlermeldung {
  font-size:1.5em;
  color: red;
  border:3px solid red;
  background-color: white;
  padding: 5px;
  margin:10px;
}

div.Fusszeile {
  background-color:#EFF8FB;
  padding:.9em;
  text-align:center;
  border-top:3px solid gray;
}

div.Danksagung {
  background-color: white;
  font-size:1.1em;
  padding:10px;
  margin:10px;
  text-align:center;
  color:black;
}

div.statementsNotes {
  font-family:Verdana;
  font-size:12pt;
}

div.debug {
  border:thin;
  color:blue;
  font-size:0.7em;
}

/* Links Design */
a:link {
  border-style:none;
  color:black;
  font-family:Arial;
}
a:visited {
  color:black;
  font-family:Arial;
}
a:hover {
  color:black;
  font-family:Arial;
}
a:active {
  color:black;
  font-family:Arial;
}
a:focus {
  color:black;
  font-family:Arial;
}
/* Ende Links Design */

div.Logo {
  padding-bottom:10px;
  text-align:center;
  background-color: white;
}

.Fehler {
  border-color: red; 
}

.Normal {
  border-color: black; 
}


fieldset {
  background-color: white;
  margin: 5px;
  padding: 10px;
  padding-left: 20px;
  border: 3px solid black;
}


legend {
  color: white;
  background-color: red;
  float: right;
  padding: 0.2em 1.5em;
  border-bottom-left-radius: 1em;
}

input[type='text']
{ width: 95%; background-color: #EFF8FB;}

input[type='email'] 
{ width: 95%; background-color: #EFF8FB;}

input[type='submit']
{
  display: inline;
  padding: 15px 25px;
  margin: 30px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: red;
  border: none;
  border-radius: 10px;
  box-shadow: 0 9px firebrick;
  width: 35%;
} 
   
input[type='submit']:hover
{
  background-color: firebrick;
  box-shadow: 0 9px red;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
} 


input[type='reset']
{
  display: inline;
  padding: 15px 25px;
  margin: 30px;
  font-size: 24px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: red;
  border: none;
  border-radius: 10px;
  box-shadow: 0 9px firebrick;
  width: 35%;
}


label.date
{
 width: 70px;
 margin-right:10px; 
 display: inline-block;
}

label.radio
{
 background-color:white;
 display: inline-block;
 position:relative; 
 cursor: pointer;
 padding:5px;
 margin:5px;
 border: none;
 border-radius: 10px;
 /*padding-left: 20px;*/
}

input[type='radio'] 
{ 
  left:-1.2em;
  color: #000;
  right:-1.2em;
  top:-0.3em;
  width:1.0em;
  text-align: left;
  line-height: 1.0em;
  transform: scale(1.5);
}

label.radio:hover 
{ 
	background-color:#EFF8FB;
}

label.button:hover 
{ 
	background-color:#EFF8FB;
}

li {
    list-style-type:square;
}

li::marker {
  color: red;
}
