.anmeldeformularmain {
	width: 100%;
	margin: 0;
	background-color: white;
	border-radius: 8px;
	box-sizing: border-box;
}

.anmeldeformularwrap {
	width: 100%;
	margin: 0;
	padding: 10px 0;
	position: relative;
}

.anmeldeformularwrap > h3 {
	margin: 0;
	padding: 10px 0 10px 20px;
	font-size: 1.25em;
	line-height: 1em;
	font-weight: 400;
	color: white;
	width: 100%;
	background-color: #80b33d;
	border-top-left-radius: 8px;
  	border-top-right-radius: 8px;
}

::placeholder {
  color: #bbb;
  opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
  color: #bbb;
}

.anmeldeformularwrap > form > div > input[type=text] {
	width: 100%;
	height: 50px;
	border: 2px solid #80b33d;
	border-radius: 6px;
	font-size: 1em;
	margin: 10px 0;
	padding-left:20px;
	background-repeat: no-repeat;
	background-position:right;
}

.anmeldeformularwrap > form > div > input[type=number] {
width: 100%;
height: 50px;
border: 2px solid #80b33d;
border-radius: 6px;
font-size: 1em;
margin: 10px 0;
padding-left:20px;
background-repeat: no-repeat;
background-position:right;
}

.anmeldeformularwrap > form > div > input[type=tel] {
width: 100%;
height: 50px;
border: 2px solid #80b33d;
border-radius: 6px;
font-size: 1em;
margin: 10px 0;
padding-left:20px;
background-repeat: no-repeat;
background-position:right;
}

.anmeldeformularwrap > form > div > input[type=email] {
width: 100%;
height: 50px;
border: 2px solid #80b33d;
border-radius: 6px;
font-size: 1em;
margin: 10px 0;
padding-left:20px;
background-repeat: no-repeat;
background-position:right;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
  -webkit-appearance: none; 
  margin: 0; 
}

.anmeldeformularwrap > form > div > textarea {
width: 100%;
height: 100px;
border: 2px solid #80b33d;
border-radius: 6px;
font-family: inherit;
color: inherit;
font-size: 1em;
margin: 10px 0;
padding:20px 0 20px 20px;
background-repeat: no-repeat;
background-position:right;
outline:none;
resize: none;
}

#erlaeuterung > p {
	margin:0 0 10px 0;
	padding:0;
	font-size:13px;
	line-height: 13px;
}

.anmeldeformularwrap > form > input[type=submit] {
width:100%;
height:50px;
background-color:#80b33d;
border: 2px solid #80b33d;
color:#FFFFFF;
cursor:pointer;
font-size:1em;
margin: 10px 0;
padding:0 20px;
}

.anmeldeformularwrap > form > button {
width:100%;
height:50px;
background-color:#80b33d;
border: 2px solid #80b33d;
border-radius: 6px;
color:#FFFFFF;
cursor:pointer;
font-size:1em;
margin: 10px 0;
padding:0 20px;
}

.anmeldeformularwrap > form > button:hover {
	background-color: red;
}

#anrede_wrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	width: 100%;
	gap: 10px;
}

/* CUSTOM RADIOBUTTON */
/* Customize the Radiolabel (the container) */
.radiocontainer {
  display: block;
  position: relative;
  padding: 0 0 0 35px;
  /* margin-bottom: 12px; */
  cursor: pointer;
  font-size: 13px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.radiocontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom radio button */
.radiocheckmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 50%;
  border: 1px solid  #80b33d;
}

/* On mouse-over, add a grey background color */
.radiocontainer:hover input ~ .radiocheckmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a green background */
.radiocontainer input:checked ~ .radiocheckmark {
  background-color: #80b33d;
}

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

/* Show the indicator (dot/circle) when checked */
.radiocontainer input:checked ~ .radiocheckmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.radiocontainer .radiocheckmark:after {
  top: 8px;
  left: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
} 


/* CUSTOM CHECKBOX */
/* Customize the checkbox label (the container) */
.checkboxcontainer {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  line-height: 16px;
}

/* Hide the browser's default checkbox */
.checkboxcontainer input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: -5px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 2px;
  border: 1px solid  #80b33d;
}

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

/* When the checkbox is checked, add a green background */
.checkboxcontainer input:checked ~ .checkmark {
  background-color: #80b33d;
}

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

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

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

.datenschutzerklaerung_header {
	display: block;
}

#formfeedback {
	color: white;
	background-color: orange;
	padding: 20px;
	margin: 0;
	border-radius: 10px;
	display: none;
}

#loading {
	display: none;
}

.erfolgreichuebertragen, .fehleruebertragen {
	width: 100%;
	background-color: #80b33d;
	border-radius: 8px;
	margin: 0;
	padding:10px;
}

.fehleruebertragen {
	background-color: orange;
}

.erfolgreichuebertragen h2, .fehleruebertragen h2 {
	margin-top: 0;
	color: white;
}

.erfolgreichuebertragen p, .fehleruebertragen p {
	color: white;
}

.uebertragensymbol {
	margin-top: 20px;
	width: 100%;
	text-align: center;
}

.uebertragensymbol > img {
	width: 150px;
}

#datenschutzlink {
	font-weight: 700;
	text-decoration:underline;
}

#wirdgesendet {
	display:none;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	position: absolute;
	z-index: 1;
	width: calc(100% - 20px);
	height: 700px;
	background-color: #555;
	border-radius: 8px;
	margin: 0;
	padding:10px;
	color: white;
	font-size: 22px;
	opacity: 0.75; 
}

#wirdgesendet > div > img {
	margin-top: 10px;
	width: 100px;
	opacity: 0.75;
}

#datenschutzerklaerung_wrapper {
	display:none;
	position: absolute;
	z-index: 2;
	width: calc(100% - 20px);
	height: 80vh;
	background-color: #555;
	border-radius: 8px;
	margin: 0;
	padding:0 10px 10px 10px;
	color: white;
	font-size: 0.75em;
	opacity: 0.90;
	overflow-y: scroll; 
}

#datenschutzerklaerung_wrapper strong {
	color: white;
}

.datenschutzerklaerung_close {
	position: -webkit-sticky; /* Safari */
  	position: sticky;
  	top: 0;
  	width: 100%;
  	height: 40px;
  	background-color: #555;
  	text-align: right;
  	opacity: 1;
}

.datenschutzerklaerung_close > div {
	position: absolute;
	top:0;
	right:0;
	height: 30px;
	width: 30px;
	font-size: 30px;
  	transform: rotate(45deg);
  	cursor:pointer;

}

.datenschutzerklaerung_close > div:hover {
	color: #ccc;
}

@media screen and (max-width:1120px) {
	
}

@media screen and (max-width:915px) {
	
}

@media screen and (max-width:890px) {
	
}

@media screen and (max-width:725px) {
	
}

@media screen and (max-width:550px) {
	
	
	
}