/*####################################################################*/
/*##################### Formular Stuff ###############################*/
/*####################################################################*/


form{  width: 100%; }

form input, 
form select{
  height: 50px;
  background-color: #EFEFEF;
  padding: 10px;
  color: #262626;
  float: left;
  width: 100%;
  transition: .4s;
  margin-bottom: 8px;
}

form textarea{
  background-color: #EFEFEF;
  padding: 10px;
  width: 100%;
  min-height: 150px;
  color: #262626;
  transition: .7s;
}


form input:focus, form textarea:focus, form select:focus{
  border: 1px solid #dedede;
  background-color: #fefefe;
}


form input[type="submit"]{
  background-color: #0080c9;
  color: #fff;
  font-size: 1em;
  text-transform: uppercase;
  max-width: 300px;
  text-align: left;
  padding-left: 25px;
}


form input[type="submit"]:before{
  /*content: 'sad';*/
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #ff00ff;
}


form button#submit{
  background-color: #0080c9;
  color: #fff;
  position: relative;
  font-size: 1em;
  text-transform: uppercase;
  width: 100%;
  max-width: 300px;
  letter-spacing: .3px;
  height: 50px;
  text-align: left;
  padding-left: 25px;
}


form button#submit:hover{
  cursor:pointer;
}



form button#submit:after{
  content: '';
  background-image: url('../layout/submit.svg');
  background-repeat: no-repeat;
  display: block;
  width: 36px;
  height: 25px;
  position: absolute;
  right: 20px;
  top:13px;
}


form button#submit:hover:after{
  animation: pfeilPulse 2s ease-in-out .2s infinite;
}

@keyframes pfeilPulse {
  0%   { right: 20px; }
  50%  { right: 27px; }
  100% { right: 20px  }
}






form .inputhalf1{
  width: calc(50% - 4px );
  margin-right: 4px;
}

form .inputhalf2{
  width: calc(50% - 4px );
  margin-left: 4px;
}

form .inputSmall{
  width: 250px;
}

form .inputWide{
  width: calc( 100% - 258px);
  margin-left: 8px;
}


.form_field_dsgvo{
  margin-top: 20px;
  margin-bottom: 30px;
}


/*Checkbox*/

.cbx{
  display: block;
  margin-bottom: 12px;
  height: 22px;
}

input[type="checkbox"]{
  /*border: 1px solid #ff00ff;*/
  /*width: 20px;*/
  /*height: 20px;*/
  display: none;
}
  


.form_field_dsgvo input[type="checkbox"]{
  display: none;

}



.checkmark {
  display: block;
  position: relative;
  float: left;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  margin-bottom: 14px;
  margin-right: 20px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  
}

/* On mouse-over, add a grey background color */
.cbx_container:hover input ~ .checkmark {
  background-color: #fff5c8;
}

/* When the checkbox is checked, add a blue background */
.cbx_container input:checked ~ .checkmark {
  background-color: #005aaa;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.cbx_container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.cbx_container .checkmark:after {
  left: 6px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}







/*

.form-field{
  position: relative;
  margin: 0 0 15px 0;
  width: 100%;
  height: auto;
  background-color: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; 
}
.form-field.form-s{
  width: calc(30% - 10px );
  float: left;
}
.form-field.form-m{
  width: 70%;
  margin-left: 10px;
  float: left;
}

.form-field.form-50{
  width: calc(50% - 5px);
  margin-right: 10px;
  float: left;
}
.form-field.form-50-2{
  width: calc(50% - 5px);
  float: left;
}

.form-field input, .form-field textarea, .form-field select{
  border: 1px solid rgba(0,0,0,0.2);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; 
  background-color: transparent;
  height: 50px;
  width: 100%;
  padding:10px 10px 6px 10px;
  display: block;
  position: relative; 
  font-size: 1.2em;
  z-index: 2;
}





.form-field select {
  -webkit-appearance: none; -moz-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
  background-origin: content-box;
  background-position: right 2px center;
  background-repeat: no-repeat;
  background-size: 9px 6px;
  }
 



.form-field textarea{
  min-height: 350px;

}

.form-field input:focus, .form-field textarea:focus, .form-field select:focus{
  border: 1px solid rgba(0,0,0,1);
}

.form-field label{
  font-size: 0.6em;
  color: rgba(0,0,0,0.6);
  position: absolute;
  top:4px;
  left:10px;
  width: auto;
  -moz-opacity:1;
  opacity: 1;
  transition: .3s;
  z-index: 1;
}

.form-field :placeholder,
.form-field :-webkit-input-placeholder,
.form-field :-ms-input-placeholder{
  color: #000;
}

.form-field :placeholder-shown + label{
  filter: alpha(opacity=0);
  -moz-opacity:0;
  opacity: 0;
  font-size: .01em;
  color: #000fff;
  z-index: 3;

}

*/


.nl{
  width: 70%;
  
}

.nlBTN{
  width: 20%;
  cursor: pointer;
}

.resultNL{
  display: none;
  color:#0080c9;
}