/* Allgemein */
html {
	background: #ffffff;
	font-size: 1em;	
}
body {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	background: #fffbf0;
	width: 980px;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;
}
a:visited {
	color: black;
}
a:link {
	color: black;
	text-decoration: none;
}
a:active {
	color: black;
	
}
a:hover {
	color: green;
	text-decoration: underline;
}
.textSmal {
	font-size: 0.8em;
}
.textSmalPlus {
	font-size: 0.9em;
}
.textMiddel {
	font-size: 1.1em;
}
.textBig {
	font-size: 1.8em;
}
.textFett {
	font-weight: bold;
}
.aligneR {
	text-align: right;
}
.aligneCenter {
	margin-left: auto;
	margin-right: auto;
}
.h1 {
	font-weight: bold;
	text-align: center;
	font-size: 1.5em;
}

/* Header */
.header {
	grid-column: 1/4;
	margin-bottom: 15px;
}
/* Diashow */
.diashow {
	grid-column: 1/3;
	grid-row: 2/4;
	text-align: center;
	padding-top: 4em;
}
.numbertext {
	position: relative;
	font-size: 0.8em;
	color: white;
	top: +1.4em;
	left: -11em;
}
.text {
	margin-top: 1em;
}

/* Info */
.info {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.info > ul {
	list-style-image: url(../img/check-mark-15px.png);
}

.infofull {
	grid-column: 1/3;
}
/* Buchung */
.buchung {
	grid-column: 3/4;
	margin-top: 50px;
	text-align: center;
	color: black;
}
/* Beschreibung */
.beschreibung {
	grid-column: 1/4;
	margin-top: 20px;
}
/* Footer */
.footer {
	grid-column: 1/4;
	text-align: center;
	margin-bottom: 2em;
}
.footer > span {
	padding-right: 10px;
}

/* mail versand */
.formgrid {
	grid-column: 2/3;
}
.formgrid > form {
	width: 35em;
}
.fullrowform {
	grid-column: 1/3;
	text-align: center;
} 
form > fieldset {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
form > fieldset > span {
	grid-column: 1/2;
}
form > fieldset > input {
	grid-column: 2/3;
}
.formRowGapTop {
	margin-top: 1em;
}
.formRowGapBottom {
	margin-bottom: 1em;
}
.formButtonCenter {
	display: block;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	margin-left: auto;
	margin-right: auto;
}
.inputKlein {
	width: 40px;
}
.inputMittel {
	width: 130px;
}
.inputGross {
	width: 100px;
}
.formrechts {
	gird-column: 1/2;
}
.formlinks {
	grid-column: 2/3;
}
input:invalid {
	border-color: red;
}
input:valid {
	border-color: green;
}
textarea {
	resize: none;
	width: 258px;
}
/* map */
.map {
	grid-column: 1/4;
	margin-left: auto;
	margin-right: auto;
}
/* impressum */
.impressum {
	grid-column: 1/4;
	text-align: center;
}
/* disclaimer */
.disclaimer {
	grid-column: 1/4;
	text-align: center;
}
/* datenschutz */
.datenschutz {
	grid-column: 1/4;
	text-align: center;
}
/* ausserhalb der form */
.fullRow {
	display: block;
	text-align: center;
	margin-bottom: 1em;
}
