@charset "utf-8";
/* default - mobile */

/*-----------------Global-----------------*/
@font-face {
  font-family: 'Source Sans Pro';
  src: url('../font/SourceSansPro-Light.ttf');
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #4F4F4F;
}
html {
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: 20px;
  line-height: 29px;
}
a {
  color: #545659;
  text-decoration: none;
  border-bottom: 1px solid #969799;
}
a:hover{
  color:#000;
  border-bottom-color: #000;
}

/*-----------------Header-----------------*/
#header {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  height: 74px;
  width: 100%;
  padding: 16px 15px;
  background:rgba(250,250,250,0.9);
  justify-content: space-between;
  align-items: center;
  display: flex;
}
#header-left {
  display: block;
  height: 100%;
  border: none;
}
#header-left>img {
  display: block;
  height: 100%;
}
#header-right {
  display: flex;
  gap: 20px;
}
#header-right>a {
  display: block;
  text-decoration: none;
  font-size: .8rem;
  height: 100%;
  line-height: 42px;
  border: none;
}
#header-right>a:hover {
  text-decoration: underline;
  text-underline-position: under; 
}
#shorty {
  height: 2rem;
  width: 2rem;
  color: #fff;
  background-image: url(../img/sprites.svg);
  background-size: auto 200%;
  background-position: 84.5% 100%;
  text-indent: 2rem;
  overflow: hidden;
  display: block;
  cursor: pointer;
}
#submenu {
  display: none;
  position: absolute;
  right: 10px;
  top: 10px;
  background-color: #545659;
  width: 360px;
  padding: 80px 20px 20px 20px;
  font-size: .9rem;
}
#close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #545659;
  line-height: 2rem;
  border-width: 0;
  width: 2rem;
  height: 2rem;
  text-indent: 2rem;
  overflow: hidden;
  background-image: url(../img/sprites.svg);
  background-size: auto 200%;
  background-repeat: no-repeat;
  background-position: 46% 105%;
}
#submenu p, #submenu h4 {
  color: #fff;
}

/*-----------------Wrapper-----------------*/
#wrapper{
  margin: 100px 15px 50px 15px;
}
#headline{
  font-size: 1.5rem;
}
#teaser{
  margin: 20px 0 0 0;
  font-size: .9rem;
}
#filelink{
  display: inline-block;
  margin: 20px 0 0 0;
}
#anmeldung-form{
  margin: 30px auto 0 auto;
  padding: 20px;
  background-color: #f0f0f0;
}
#form-wrapper{
  background-color: #f0f0f0;
}
.t-headline{
  font-size: 1.2rem;
  color:#900683;
  margin: 0 0 20px 0;
}
.t-headline-2{
  margin: 50px 0 0 0;
}
.flex-form{
  margin:10px 0 0 0;
}
.flex-rechnung{
  margin:20px 0 0 0;
  display: flex;
  justify-content:space-between;
  align-items: center;
  gap:20px;
}
label, input{
  display:block;
}
input {
  height: 2rem;
  padding: 5px 10px;
  font-size: 1.1rem;
  border: 1px solid #4F4F4F;
  border-radius: 8px;
  width: 100%;
}
#label-rechnung{
  color:#CB585A;
}
.checkbox{
  width: 2rem;
  accent-color: #900683;
}
.flex-form-modul{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap:20px;
  margin: 20px 0 0 0;
}
.flex-form-modul>label{
  width: calc(100% - 60px);
}
.trenner{
  height: 1px;
  margin: 30px 0;
  background-color: #000;
}
/*#gebuehr, #gebuehr>span{
  color:#CB585A;
  font-size: 1.2rem;
}*/
#gebuehr-flex{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
#gebuehr, #sum{
  color:#CB585A;
  font-size: 1.2rem;
}
#sum{
  width: 40px;
  height: 29px;
  border:none;
  padding: 0;
  border-radius: 0;
  outline-width: 0;
  text-align: right;
  background: rgba(0,0,0,0);
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
}
#datenschutz-link{
  text-decoration: none;
  font-style: italic;
  color: #CB585A;
  border:none;
}
#captcha-wrapper{
  display: flex;
}
#captcha-box{
  margin: 20px 0 0 0;
  width: 70%;
}
#captchatext{
  border-radius: 0;
}
#module{
  margin: 10px 0;
  font-size: 1.2rem;
  text-align: center;
  color: #CB585A;
  display:none;
}
.button {
  display: block;
  font-family: "Source Sans Pro", Helvetica, Arial, sans-serif;
  width: 100%;
  height: 60px;
  line-height: 20px;
  margin: auto;
  text-align: center;
  background-color: #900683;
  color: #fff;
  font-size: 1.1rem;
  padding: 10px;
  cursor: grab;
  border-radius: 5px;
}
.button:hover{
  transform: scale(1.02);
  transition: transform .1s;
}

/*-----------------Footer-----------------*/
#footer{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  background-color: #fff;
  height: 50px;
  justify-content: center;
  align-items: center;
  gap:10px;
}
.f-link{
  text-decoration: none;
  font-size: .6rem;
  border:none;
}
.f-link:hover{
  text-decoration: underline;
  text-underline-position: under; 
}
.sep{
  display: none;
}