@charset "utf-8";
/* Schriften */

/* Source Sans Pro */
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 300;
  src: local(''),
       url('../fonts/SourceSansPro-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 400;
  src: local(''),
       url('../fonts/SourceSansPro-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Source Sans Pro';
  font-style: normal;
  font-weight: 600;
  src: local(''),
       url('../fonts/SourceSansPro-SemiBold.ttf') format('truetype');
}

/* Farbvariablen und Zahlvariablen -------------------------------------------------------------------------------------------- */
:root {
	--akzent: #005c8e;
    --akzenthover: #009ba3;
	--akzent2: #009ba3;
    --akzent2hover: #005c8e;
	--text: #000;
    --texthell: #fff;
	--bg: #fff;
    --white: #fff;
	--black: #000;
	--label: #555;
	--headerheight: 100px;
}

/* Allgemeine Styles ---------------------------------------------------------------------------------------- */

* {
	padding: 0;
	margin:0;
    box-sizing: border-box;
}
html,body {
 height: 100%;
}
body {
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	font-size: 16px;
    line-height: 135%;
    background-color: var(--bg);
    color: var(--text);
}
a:link, a:visited {
    color: var(--akzent2);
}
a:hover {
    color: var(--akzent2hover);
}
img {
	border:none;
}

h1 {
    padding-bottom: 1em;
    color: var(--text);
    font-size: 1.8em;
}


.md {
	width: 220px;
	height: auto;
}
.download {
	background-color: var(--akzent);
}
.index .container {
    height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
padding-top: 0;
    position: relative;
    top: 0;
	grid-template-rows: 1fr 3em;
}
.container {
  display: grid;
  align-items: top;
  justify-content: center;
    position: relative;
    top: var(--headerheight);
	padding-top: 4em;
	grid-template-rows: 1fr 3em;
	
}

.index .content {
    min-width: 300px;
    max-width: 450px;
    padding: 0.5em;
}
.download .content {
    border: 2px solid var(--akzent);
	border-radius: 6px;
	background-color: var(--white);
	padding: 3em;
	padding-top: 2em;
}
.content {
    min-width: 300px;
    max-width: 660px;
    padding: 1em 1em 1em 1em;
}

.box {
    background-color: var(--white);
    padding: 2em;
}
.impressum {
    padding: 1em 0 1em 0;
	text-align: center;
	opacity: 0.5;
}

.download .impressum a:link {
    color: var(--white);
}
.download .impressum a:hover {
    color: var(--akzent2);
}

.header {
    position: fixed;
	top: 0;
	z-index: 100;
background-color: var(--white);
width: 100%;
    display: grid;
    padding: 1em;
    height: var(--headerheight);
	border-bottom: 1px solid var(--akzent2);
}
.logo {
    width: 100%;
	height: auto;
}

.clientlogo {
	text-align: right;
	margin-bottom: 1.5em;

}
.clientlogo img {
	width: 100px;
	height: auto;
	display: inline-block;
}

h1 {
	color: var(--akzent);
	font-size: 1.5em;
	font-weight: 600;
}

.form form {
	display: grid;
	gap: 1em;
}

.form label {
	font-size: 0.9em;
	color: var(--label);
	width: 100%;
	display: block;
}
.form input, .form select {
	width: 100%;
	border: 1px solid var(--black);
	border-radius: 4px;
	padding: 0.3em;
	font-size: 1.1em;
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	background-color: var(--white);
	min-width: 250px;
}
.form select option {
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
}
.form button {
	padding: 0.6em;
	background-color: var(--akzent2);
	border-radius: 4px;
	font-family: "Source Sans Pro", Arial, Verdana, sans-serif;
	color: var(--white);
	border: none;
	font-size: 1.1em;
	margin-top: 1em;
	cursor: pointer;
}
.form button:hover {
	background-color: var(--akzent);
}
a.btn:link {
	padding: 0.6em;
	background-color: var(--akzent2);
	border-radius: 4px;
	color: var(--white);
	border: none;
	font-size: 1.1em;
	margin-top: 1em;
	display: inline-block;
	text-decoration: none;
}
a.btn:hover {
	background-color: var(--akzent);
}

.formitemgroup {
	display: flex;
	gap: 1em;
    padding: 1em; /* inner padding for groups */
}
.form .formitemgroup input, .form .formitemgroup select {
	min-width: 100px;
}
.s-formularitemcontainer {
	width: 100%;
}

/* Make the se-scale container a column and push options to bottom */
.s-formularitemcontainer--se-scale {
    display: flex; flex-direction: column;
}
.s-formularitemcontainer--se-scale .se-scale-options {
    margin-top: auto; padding-top: 0.5em;
}

fieldset.svgAll {
	margin: 1em;
	border-radius: 4px;
  border: 1px solid var(--black);
}
fieldset legend {
	padding-left: 10px;
  padding-right: 10px;
	font-size: 0.9em;
	color: var(--label);
}

.svgAll .s-formularitemcontainer {
	padding: 1em;
	background-color: rgba(0, 155, 163, 0.15);
	border-radius: 4px;
}
.svgAll .se-scale-options {
	border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin-top: 1em;

}