/* BEGIN  CSS für Radio-Buttons und Checkboxen  ----------------------------------------------- */

/*  ALLE ausser Firefox */
	.radiodiv {
		clear: both;
		margin: 0px 20px 50px 0px;
	}
	#zahlungen_alles {
		margin-right: 20px;
	}
	#zahlungen_offen {
		margin-right: 20px;
	}
	#zahlungen_erledigt {
		margin-right: 20px;
	}
	
	#mitarbeit_alles {
		margin-right: 20px;
	}
	#mitarbeit_nichts {
		margin-right: 20px;
	}
	#mitarbeit_einmal{
		margin-right: 20px;
	}
	#mitarbeit_mehrfach{
		margin-right: 0px;
	}


/* Firefox */
@-moz-document url-prefix() { 
	.radiodiv {
		clear: both;
		margin: 0px 300px 40px 0px;
	}

	#zahlungen_alles {
		margin-right: 150px;
	}
	#zahlungen_offen {
		margin-right: 230px;
	}
	#zahlungen_erledigt {
		margin-right: 0px;
	}

	#mitarbeit_alles {
		margin-right: 150px;
	}
	#mitarbeit_nichts {
		margin-right: 186px;
	}
	#mitarbeit_einmal{
		margin-right: 140px;
	}
	#mitarbeit_mehrfach{
		margin-right: 0px;
	}
}



.radiolabel {
  border-radius: 2px;
  border: 1px solid #D1D3D4;
  //height: 46px;
  padding-top: 10px;
  padding-bottom: 10px;
}



/* CSS für Radio-Buttons ----------------------------------------------- */

/* hide input */
input.radio:empty {
	margin-left: -9999px;
}

/* style label */
input.radio:empty ~ .radiolabel {
	position: relative;
	float: left;
	lixne-height: 2.5em;
	line-height: 1.9em;
	txext-indent: 3.25em;
	text-indent: 4.0em;
	mxargin-top: 2em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	font-size: 0.95em;
}

input.radio:empty ~ .radiolabel:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	wixdth: 2.5em;
	background: #D1D3D4;
	border-radius: 2px 0 0 2px;
}

/* toggle hover */
input.radio:hover:not(:checked) ~ .radiolabel:before {
	content:'\2714';
	texxt-indent: .9em;
	text-indent: .6em;
	color: #C2C2C2;
}

input.radio:hover:not(:checked) ~ .radiolabel {
	color: #888;
}

/* toggle on */
input.radio:checked ~ .radiolabel:before {
	content:'\2714';
	txext-indent: .9em;
	text-indent: .6em;
	color: #FFF;
	background-color: #3498DB;
}

input.radio:checked ~ .radiolabel {
	color: #777;
}

/* radio focus */
input.radio:focus ~ .radiolabel:before {
	box-shadow: 0 0 0 3px #999;
}

/* CSS für Check-Boxen ----------------------------------------------- */

/* hide input */
input.checkbox:empty {
	margin-left: -9999px;
}

/* style label */
input.checkbox:empty ~ .radiolabel {
	position: relative;
	float: left;
	lixne-height: 2.5em;
	line-height: 1.9em;
	txext-indent: 3.25em;
	text-indent: 4.0em;
	mxargin-top: 2em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input.checkbox:empty ~ .radiolabel:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 0;
	content: '';
	wixdth: 2.5em;
	width: 3.2em;
	background: #D1D3D4;
	border-radius: 4px 0 0 4px;
}

/* toggle hover */
input.checkbox:hover:not(:checked) ~ .radiolabel:before {
	content:'\2718';
	texxt-indent: .9em;
	text-indent: 1.2em;
	padding-top: .6em;
	color: #C2C2C2;
}

input.checkbox:hover:not(:checked) ~ .radiolabel {
	color: #2387CA;
}

/* toggle on */
input.checkbox:checked ~ .radiolabel:before {
	content:'\2718';
	txext-indent:.9em;
	text-indent: 1.2em;
	padding-top: .6em;
	color: #FFF;
	background-color: #3498DB;
}

input.checkbox:checked ~ .radiolabel {
	//color: #777;
}

/* radio focus */
input.checkbox:focus ~ .radiolabel:before {
	box-shadow: 0 0 0 3px #999;
}

/* CSS für MINI Check-Boxen ----------------------------------------------- */

/* hide input */
input.checkboxmini:empty {
	margin-left: -9999px;
}

/* style label */
input.checkboxmini:empty ~ .radiolabelmini {
	position: relative;
	float: left;
	lixne-height: 2.5em;
	line-height: 1.8em;
	text-indent: 1.8em;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

input.checkboxmini:empty ~ .radiolabelmini:before {
	position: absolute;
	display: block;
	top: 0;
	bottom: 0;
	left: 1px; /* früher 14px */
	content: '';
	width: 1.8em;
	background: #D1D3D4;
	border-radius: 4px 4px 4px 4px;
}

/* toggle hover */
input.checkboxmini:hover:not(:checked) ~ .radiolabelmini:before {
	content:'\2718';
	texxt-indent: .9em;
	text-indent: .5em;
	color: #C2C2C2;
}

input.checkboxmini:hover:not(:checked) ~ .radiolabelmini {
	color: #888;
}

/* toggle on */
input.checkboxmini:checked ~ .radiolabelmini:before {
	content:'\2718';
	txext-indent:.9em;
	text-indent: .5em;
	color: #FFF;
	background-color: #3498DB;
}

input.checkboxmini:checked ~ .radiolabelmini {
	color: #777;
}

/* radio focus */
input.checkboxmini:focus ~ .radiolabelmini:before {
	box-shadow: 0 0 0 3px #999;
}

/* ENDE CSS Radio- und Checkbox Buttons ------------------------------------------------------------------- */






/*General */
html{    
  background:url('images/evening-3784443_2.jpg') repeat;
  background-size: auto;
  height:100%;
}
body
{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	color: white;
}

#feedback-page{
	text-align:center;
}

#form-main{
	width:100%;
	float:left;
	padding-top:0px;
}

#form-div {
	background-color:rgba(72,72,72,0.4);
	padding-left:35px;
	padding-right:35px;
	padding-top:15px;
	padding-bottom:15px;
	width: 650px;
	float: left;
	left: 50%;
	position: absolute;
	margin-top:10px;
	margin-left: -260px;
	border-radius: 7px;
  
}

.myfrom .form-input {
	color:#3c3c3c;
	font-family: Helvetica, Arial, sans-serif;
    font-weight:500;
	font-size: 18px;
	border-radius: 0;
	line-height: 22px;
	background-color: #fbfbfb;
	padding: 13px 13px 13px 54px;
	margin-bottom: 2px;
	width:100%;
	box-sizing: border-box;
	border: 3px solid rgba(0,0,0,0);

}
/*Inputs styles*/
.myfrom .form-input:focus{
	background: #fff;
	border: 3px solid #3498db;
	color: #3498db;
	outline: none;
  padding: 13px 13px 13px 54px;
}


/* Icons ---------------------------------- */
/* http://www.ibdb.gr/css/foundation-icons/svgs/  */

.myfrom  #name{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
/*.myfrom  #name:focus{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-address-book.svg);
	background-size: 30px 30px;
	background-position: 8px 5px;
	background-repeat: no-repeat;
}
*/
.myfrom  #mailadresse{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-mail.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #telefon{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-telephone.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #mitgliedsnummer{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-link.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #klasse{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-thumbnails.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #adresse{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-marker.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #lagenord1{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-compass.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #lageost1{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-compass.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #seehoehe{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-mountains.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #zvrnummer{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-key.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #bundesland{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-map.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #verein{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torsos-all.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}


.myfrom  #mannschaftsname{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torsos-all.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}

.myfrom  #teilnehmer1{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #teilnehmer2{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #teilnehmer3{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}
.myfrom  #teilnehmer4{
	background-image: url(https://cdnjs.cloudflare.com/ajax/libs/foundicons/3.0.0/svgs/fi-torso.svg);
	background-size: 30px 30px;
	background-position: 11px 8px;
	background-repeat: no-repeat;
}




.myfrom  textarea {
    width: 100%;
    height: 150px;
    line-height: 150%;
    resize:vertical;
}

.myfrom  input:hover, .myfrom  textarea:hover,
.myfrom  input:focus, .myfrom  textarea:focus {
	background-color:#e6e6e6;
}

.button-blue{
	font-family: 'Montserrat', Arial, Helvetica, sans-serif;
	float:left;
	width: 100%;
	border: #fbfbfb solid 4px;
	cursor:pointer;
	background-color: #3498db;
	color:white;
	font-size:24px;
	padding-top:22px;
	padding-bottom:22px;
	transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
}

.button-blue:hover{
	background-color: rgba(0,0,0,0);
	color: #0493bd;
}
	
.myfrom  .submit:hover {
	color: #3498db;
}
	
.ease {
	width: 0px;
	height: 74px;
	background-color: #fbfbfb;
	transition: .3s ease;
}

.submit:hover .ease{
  width:100%;
  background-color:white;
}

.pflichtfeld {
	color: lightblue;
	font-style: italic;
}


/*Styles for small screens*/

@media  only screen and (max-width: 580px) {
	#form-div{
		left: 3%;
		margin-right: 3%;
		width: 88%;
		margin-left: 0;
		padding-left: 3%;
		padding-right: 3%;
	}
}

.subtext {
	padding-bottom: 2px;
	font-size:12px;
	color: white;
}

.lagefeld {
	width: 180px;
}


/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}



