/*
---------------------------------------------
General specifications
---------------------------------------------
*/
#formular h2 {
  font-size: 36px;
  font-weight: bold;
  line-height: 200%;
}
#formular h3 {
  font-size: 24px;
  font-weight: bold;
}
#formular * {
  box-sizing: border-box;
  font-family: Arial;
}
/*
---------------------------------------------
Form
---------------------------------------------
*/
#formular form {
  border-radius: 10px;
  box-shadow: 0 0 10px #ebebeb;
  width: 100%;
  max-width: 835px;
  margin: 0 auto;
}
#form-content {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
}
#form-content > * {
  width: 100%;
}
.daten-item {
  margin: 10px auto;
}
.daten-item input {
  font-size: 1rem;
  padding: 10px;
  display: block;
  width: 100%;
  border: 1px solid #C8C8C8;
  border-radius: 3px;
}
.input-item-empty-plc::placeholder {
  color:red;
}
.input-item-empty {
  border: 1px solid red !important;
}
.input-item-empty-lbl-hidden {
  font-size: 0.9rem;
  visibility: hidden !important;
  color: red;
}
.input-item-empty-lbl-visible {
  font-size: 0.9rem;
  visibility: visible !important;
  color: red;
}
.upload-item {
  box-shadow: 0 0 10px #F3F3F3;
  border-radius: 10px;
  /*border: 1px solid green;*/
  padding: 20px;
  margin: 0 auto 30px auto;
}
.wrapper {
  border: 2px dashed rgb(165, 165, 165);
  border-radius: 10px;
  text-align: center;
  background-color: rgb(245, 245, 245);
  padding: 20px;
}
.wrapper * {
  display: block;
  padding: 10px;
}
.wrapper input {
  margin: 0 auto;
}
.upload-start {
  font-size: 0.8rem;
}
.wrapper label {
  font-weight: bold;
}
input[type="file"] {
  display: none;
}
#upload-state_1, #upload-state_2 {
  font-size: 0.8rem;
  font-weight: normal;
}
.dummy_button {
  color: #054b39;
  font-size: 4rem;
  font-weight: normal;
}
.wrapper div {
  font-weight: normal;
}
#text {
  display: block;
  margin: 20px auto;
}
#formular textarea {
  resize: none;
  height: 100px;
  border: 1px solid #C8C8C8;
  border-radius: 3px;
}
#btn-send {
  width: 20%;
  max-width: 160px;
  display: block;
  background-color: #076850;
  color: #fff;
  border-radius: 10px;
  border: none;
  font-size: 1.2rem;
  padding: 10px;
}
#btn-send:hover {
  background-color: #054b39;
  cursor: pointer;
}
h1.entry-title.main_title {
  display: none;
}
/*
---------------------------------------------
Mobile Design
---------------------------------------------
*/
@media screen and (max-width: 850px){
  #btn-send {
    width: 100%;
    max-width: 850px;
  }
  .wrapper * {
    display: block;
    padding: 10px 0;
  }
  .wrapper {
    padding: 5px 0;
  }
}
/*
---------------------------------------------
Spam Protection

sm = Spam
---------------------------------------------
*/
#sm-terms {
  margin-bottom: 20px;
  display: none;
}
#sm-mail {
  display: none;
}