@charset "UTF-8";

* {
    font-family: 'Source Sans Pro', sans-serif;
    box-sizing: border-box;
}

article, footer {
    background: rgba(255,255,255,0.85);
    padding: 0.5em;
    margin-bottom: 0.5em;
    position: relative;
}

h1 {
    font-size: 125%;
}

h2 {
    font-size: 110%;
}

h3 {
    font-size: 100%;
}

html {
    min-width: 320px;
}

body {
    height: 100%;
    line-height: 1.5rem;
    color: #544;
    background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-attachment: fixed;
}

a {
    color: #a92037;
    text-decoration: none;
}
.container {
    position: relative;
    padding: 20px;
    margin: 0 auto;
	max-width: 500px;
    height: 100%;
    background-color: rgba(255, 117, 0, 0.63);
}

.big {
  max-width: none; 
}

.userbig {
  font-size: 250%;
  line-height: normal;
}

img.preview {
  width: 100%;
}

form textarea {
	padding: 0.6em;
	min-width: 100%;
	max-width: 100%;
	min-height: 5em;
  border: none;
  background-color: rgba(255, 223, 148, 0.6);
}

form label {
	display: inline-block;
	width: 100%;
	margin: 10px 0;
}


form input, form select {
  width: 100%;
  border: none;
  background-color: rgba(255, 223, 148, 0.6);
  padding: 0.2em;
  font-size: 125%;
}

form fieldset {
  border: none;
  background-color: #ffbc67;
}

form input[type="checkbox"] {
  width: auto;
}

form ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

form ul li {

}

form li label {
  padding: 0;
  margin: 0;
}

.error {
	color: red;
  font-size: 120%;
  animation: blinker 1s linear infinite;
}

@keyframes blinker {  
  25% { opacity: 0; }
} 

label.currency {
	width: 7em;
}

div.currency {
	width: 100%;
}

input.currency {
	width: calc(100% - 1em);
}
  
.panel {
  background-color:#f3c600;
  margin-top: 1em;
  padding: 0 1em;
}

.form-Buttons {
	margin: 1em 0;
}

.form-Buttons input {
  width: 100%;
  margin: 10px 0;
  font-weight: bold;
}


@media (min-width: 20em) {
  .form-Buttons .half {
    width: 45%;
  }

  .form-Buttons input.half ~ input.half {
    float: right;
  }
}

form select {
  margin-bottom: -2px;
}

form.payed label {
  width: 45%;
  padding: 0 1em;
}

form.payed label.info {
  width: 100%;
}

table {
  background-color: #ffeda0;
  border-collapse: collapse;
  border: none;
  width: 100%;
}
thead {
  background-color: #f3c600;
}
.gerade {
  background-color: bisque;
}
.ungerade {
  background-color: wheat;
}
tfoot {
  background-color: #F7F1D4;
  font-size: 80%;
  border-top: 1px solid #999;
}
td, th {
  text-align: left;
  padding: 0.5em 1em;
}

.editarea {
  padding: 0.5em 2em;
  background-color: inherit;
}

.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.linkbutton {
    padding: 6px 8px;
    background-color: #aaa;
    color: #fff;
    border-radius: 5px;
    border: solid 1px #333;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.4);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 1px 1px rgba(0, 0, 0, 0.2);
    user-select: none;
    text-decoration: none;
}
.linkbutton:hover {
    color: #fff;
    background-color: #999;
    text-decoration: none;
}
.linkbutton:active {
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.5);
    background-color: #888;
}

@media print {
    .noprint {
        display: none;
    }
}