@charset "utf-8";
#fixedMessage{
  display: none;
  position: fixed;
  top:0;
  left:0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0,0,0,.9);
  z-index: 100;
}
#innerDiv{
  position: absolute;
  top:0;
  bottom: 0;
  left:0;
  right: 0;
  margin: auto;
  width: 300px;
  height: 200px;
  background-color: rgb(222,222,222);
  border-radius:10px;
}
#innerDiv>p{
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 1.4rem;
  color: #1F1F1F;
  text-align: center;
  padding: 30px 0 0 0;
}
#closeButton{
  box-sizing: border-box;
  padding:0;
  width:120px;
  height: 40px;
  line-height: 40px;
  border:1px solid #1F1F1F;
  border-radius:20px;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 20px;
  text-align: center;
  margin: 72px auto;
}
#closeButton:hover{
  transform: scale(1.03);
}
.sectionKontakt{
  padding:30px 20px 0 20px;
  margin:0 0 50px 0;
  max-width: 780px;
}
#formWrapper{
  border:1px solid rgb(190,190,190);
  border-radius: 10px;
  background-color:rgb(220,220,220);
  padding:10px;
}
.headLine{
  color: #1F1F1F;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 2rem;
  margin: 0 0 30px 0;
}
label, input, textarea, button{
  display:block;
  color: #1F1F1F;
}
label{
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 1.4rem;
}
input, textarea{
  margin:0 0 25px 0;
}
input{
  box-sizing: border-box;
  width:100%;
  max-width:500px;
  height: 40px;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 1.2rem;
  padding: 0 5px 0  5px;
  border:1px solid #1F1F1F;
  border-radius:5px;
}
textarea{
  box-sizing: border-box;
  width: 100%;
  height: 140px;
  resize: none;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 1.2rem;
  padding: 5px;
  border:1px solid #1F1F1F;
  border-radius:5px;
}
.secureDiv{
  display: flex;
  position: relative;
  height: 100px;
}
.secure:not(.answer) {
  border:0;
  border-radius:0;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  caret-color: rgb(222,222,222);
  cursor: default;
  background-color: rgb(220,220,220);
  width: 40px;
  font-family: 'Roboto Condensed Bold', sans-serif;
  font-size: 1.6rem;
  color:#DF2326;
  margin-bottom: 0;
  text-align: center;
}
.secureSpan{
  padding:0 5px;
  height: 40px;
  line-height: 40px;
  font-size: 1.6rem;
}
.answer{
  width: 60px;
  text-align: center;
  font-family: 'Roboto Condensed Bold', sans-serif;
  font-size: 1.6rem;
  color: #1F1F1F;
  margin-bottom: 0;
}
#button{
  box-sizing: border-box;
  position: absolute;
  padding:0;
  left:0;
  bottom: 0;
  width:190px;
  height: 40px;
  line-height: 40px;
  border:1px solid #1F1F1F;
  border-radius:20px;
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 20px;
  background-color: rgb(220,220,220);
}
#button:hover{
  transform: scale(1.03);
}
.allInputMessages{
  font-family: 'Roboto Condensed Light', sans-serif;
  font-size: 1.6rem;
  color:#DF2326;
  padding: 20px 0 0 0;
}


@media(min-width: 500px) {
  #button {
    left:inherit;
    right: 0;
    bottom:inherit;
    top:0;
    width: 120px;
  }
  .secureDiv{
    height: 40px;
  }
}


@media(min-width: 1013px) {
  .sectionKontakt{
    padding:0px 20px 0 20px;
  }
}