/************************************************************************
FORM STYLING
*************************************************************************/
/* https://github.com/philipwalton/solved-by-flexbox/blob/master/assets/css/components/site.css */
.sitecontent {
  flex: 1 0 auto; /* 2 */
  padding: var(--space) var(--space) 0;
  width: 100%;
}
.sitecontent::after {
  content: '\00a0'; /* &nbsp; */
  display: block;
  margin-top: var(--space);
  height: 0px;
  visibility: hidden;
}

a.noa:link      { color: #CCC; text-decoration: none; display:inline-block; width:100%; }
a.noa:visited   { color: #CCC; text-decoration: none; display:inline-block; width:100%; }
a.noa:hover     { color: #CCC; text-decoration: none; display:inline-block; width:100%; }
a.noa:active    { color: #CCC; text-decoration: none; display:inline-block; width:100%; }

.btn{
    font-size: 14px;
    font-weight: bold;
    background-color: #333;
    width: 95%;
    height: 32px;
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;
    padding: 8px;
    text-align: center;
    color: #CCC;
    border: none;
}
html {
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    font-family: "Lucida Sans", sans-serif;
    height: 100%;
    font-size:14px;
    color:#0000dd;
}
.header {
    /* border: 1px solid red; */
    background-color: #9933cc;
    color: #ffffff;
    padding: 1px;
}
body {
  	display: flex;
  	height: 100%;
  	flex-direction: column;
	background-color: lightblue;
}
.footer {
    background-color: #0099cc;
    color: #ffffff;
    text-align: center;
    font-size: 12px;
    padding: 10px;
    width: 100%;
}
[class*="col-"] {
    float: left;
    padding: 5px;
    /* border: 1px solid red; */
}
/* For mobile phones: */
[class*="col-"] {
    width: 100%;
}
@media only screen and (min-width: 768px) {
    /* For desktop: */
   	.col-1 {width: 50%;}
	.col-2 {width: 100%;}
}     
a:hover { 
     background-color:yellow;
}
.ausgabe {
	background: white;
	box-shadow: 0 2px 2px #999;
	max-height: 300px;
	overflow-y: auto;
}
.ergebnis {
	padding: 3px;
	font: 13px "Lucida Grande", Sans-Serif;
}
* {
    box-sizing: border-box;
}
.row::after {
    content: "";
    clear: both;
    display: table;
}
button.button{
    font-size: 14px;
    font-weight: bold;
    background-color: #333;
    width: 95%;
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;
    padding: 8px;
    text-align: center;
    color: #CCC;
    border: none;
}
input, textarea{
    font-family:Helvetica,Arial,sans-serif;
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;
    color:#555555;
    color:#0000dd;
    background:#FBFBFB none repeat scroll 0 0;
    border:1px solid #E5E5E5;
    font-size:12px;
    line-height: 16px;
    margin-bottom:8px;
    margin-right:6px;
    margin-top:8px;
    padding:8px;
    width: 90%;
}
select {
    font-family:Helvetica,Arial,sans-serif;
    -webkit-appearance: menulist-button;
    -webkit-border-radius: 5px; 
    -moz-border-radius: 5px;
    color:#555555;
    background:#FBFBFB none repeat scroll 0 0;
    border:2px solid #E5E5E5;
    font-size:12px;
    color:#0000dd;
    line-height: 16px;
    height: 32px;
    margin-bottom:8px;
    margin-right:6px;
    margin-top:8px;
    padding:8px;
    display: inline-block;
    width: 90%;
}

label{
    font-size: 12px;
    font-weight: bold;
    color:#0000dd;
    display: block;
}
label span, .required {
        color: #C00;    
}

