
/* ############################################################
	320 - FORMULAR: ANMELDEFORMULAR
############################################################ */

/* Anker */
a.form-anchor[name] {
	display: block;
	width: 0;
	height: 0;
	position: relative;
	top: -260px !important;
	visibility: hidden;
}
@media (min-width: 1020px) {
	a.form-anchor[name] {
		top: -320px !important;
	}
}


/* Formularfelder */
.mdl320-form input,
.mdl320-form select {
	position: relative;
	width: 100%;
	height: 37px;
	margin-bottom: 2px;
	padding: 0 17px;
	border: none;
	border-radius: 0;
	background-color: var(--main-color-white);
	font-family: "Poppins";
	font-weight: 400;
	font-style: normal;
	font-size: 0.875rem; /* 14px */
	line-height: 37px;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.mdl320-form input:focus,
.mdl320-form input:active,
.mdl320-form select:focus,
.mdl320-form select:active {
	outline: none;
}
@media (min-width: 1020px) {
	.mdl320-form input,
	.mdl320-form select {
		height: 54px;
		padding: 0 24px;
		font-size: 1.1875rem; /* 19px */
		line-height: 54px;
		letter-spacing: 0.19px;
	}
}


/* Placeholder */
.mdl320-form input::-webkit-input-placeholder {
	color: var(--main-color-1-50);
	transition: all 0.3s ease;
}
.mdl320-form input::-moz-placeholder {
	color: var(--main-color-1-50);
	transition: all 0.3s ease;
}
.mdl320-form input:-ms-input-placeholder {
	color: var(--main-color-1-50);
	transition: all 0.3s ease;
}
.mdl320-form input:-moz-placeholder {
	color: var(--main-color-1-50);
	transition: all 0.3s ease;
}


/* Dropdown */
.mdl320-form select {
	display: block;
	cursor: pointer;
	padding-right: 61px;
	background-image: url("../../fctriesenberg/Images/Elemente/Icon_Arrow_Down_13x8.svg");
	background-position: right 24px center;
	background-repeat: no-repeat;
	background-size: 13px 8px;
}
.mdl320-form select option {
	font-weight: 400;
	color: var(--main-color-1);
}
.mdl320-form select.first-child:invalid,
.mdl320-form select.first-child option[value=""] {
	color: var(--main-color-1-50);
}
.mdl320-form select::-ms-expand {
	display: none;
}
.mdl320-form select:focus::-ms-value {
	background-color: transparent;
}


/* Checkbox, Radio */
.mdl320-multiline {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	margin: 18px 0 21px;
}
.mdl320-multiline.wrap {
	position: relative;
	display: block;
	/*flex-wrap: wrap;*/
}
.mdl320-multiline.wrap input[type='radio'] + label {
	margin-bottom: 9px;
}
.mdl320-multiline input[type='text'] {
	margin-top: 9px;
}
.mdl320-form input[type='radio'] {
	float: left;
	width: auto;
	height: auto;
	background: transparent;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.mdl320-form input[type='radio']:checked,
.mdl320-form input[type='radio']:not(:checked)  {
	background: transparent;
	position: relative;
	visibility: hidden;
	margin: 0;
	padding: 0;
}
.mdl320-form input[type='radio'] + label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	/*margin-right: 20px;*/
	padding-left: 36px;
	font-size: 0.875rem; /* 14px */
	line-height: 26px;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
}
.mdl320-form input[type='radio'] + label.mdl320-label-abstand {
	margin-right: 20px;
}
.mdl320-form input[type='radio']:checked + label::before,
.mdl320-form input[type='radio']:not(:checked) + label::before,
.mdl320-form input[type='radio']:checked + label::after,
.mdl320-form input[type='radio']:not(:checked) + label::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background-clip: content-box;
	background-color: transparent;
}
.mdl320-form input[type='radio']:checked + label::before,
.mdl320-form input[type='radio']:not(:checked) + label::before {
	width: 26px;
	height: 26px;
	background-color: var(--main-color-white);
}
.mdl320-form input[type='radio']:checked + label::after,
.mdl320-form input[type='radio']:not(:checked) + label::after {
	z-index: 2;
	top: 6px;
	left: 6px;
	width: 14px;
	height: 14px;
	padding: 2px;
	border-radius: 50%;
	border: 1px solid var(--main-color-1-75);
}
.mdl320-form input[type='radio']:checked + label {
}
.mdl320-form input[type='radio']:checked + label::after {
	background-color: var(--main-color-1);
}
.mdl320-form input[type='radio']:not(:checked):hover + label::after {
}
@media (min-width: 760px) {
	.mdl320-multiline {
		flex-wrap: nowrap;
	}
	.mdl320-multiline input[type='text'] {
		margin-top: 0;
	}
}
@media (min-width: 1020px) {
	.mdl320-multiline {
		margin: 24px 0 40px;
	}
	.mdl320-multiline.wrap {
		margin-bottom: 31px;
	}
	.mdl320-form input[type='radio'] + label {
		/*margin-right: 40px;*/
		padding-left: 48px;
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
		line-height: 32px;
	}
	.mdl320-form input[type='radio'] + label.mdl320-label-abstand {
		margin-right: 40px;
	}
	.mdl320-form input[type='radio']:checked + label::before,
	.mdl320-form input[type='radio']:not(:checked) + label::before {
		width: 32px;
		height: 32px;
	}
	.mdl320-form input[type='radio']:checked + label::after,
	.mdl320-form input[type='radio']:not(:checked) + label::after {
		top: 8px;
		left: 8px;
		width: 16px;
		height: 16px;
		padding: 2px;
	}
}


/* Button */
.mdl320-form .send-button {
	cursor: pointer;
	position: relative;
	display: inline-flex;
	align-items: center;
	width: auto;
	height: 37px;
	margin-top: 27px;
	padding-left: 17px;
	padding-right: 12px;
	border: none;
	border-radius: 0;
	background-color: var(--main-color-1);
	font-size: 0.875rem; /* 14px */
	line-height: 37px;
	letter-spacing: 0.14px;
	color: var(--main-color-white);
	text-decoration: none;
}
.mdl320-form .send-button:after {
	content: "";
	display: inline-block;
	width: 16px;
	height: 13px;
	margin-left: 17px;
	background-position: center right 8px;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../../fctriesenberg/Images/Elemente/Icon_Arrow_Right_Negativ_9x15.svg");
	-o-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.mdl320-form .send-button:hover:after {
	background-position: center right;
}
@media (min-width: 1020px) {
	.mdl320-form .send-button {
		margin-top: 37px;
		padding-left: 24px;
		padding-right: 18px;
		height: 53px;
		font-size: 1.1875rem; /* 19px */
		line-height: 53px;
		letter-spacing: 0.19px;
	}
	.mdl320-form .send-button:after {
		width: 19px;
		height: 15px;
		margin-left: 24px;
		background-position: center right 10px;
	}
}


/* Fehler: */
/* Dropdown */
.mdl320-form select.first-child.touched {
	color: var(--main-color-error);
}
.mdl320-form select.first-child:required option[value=""] {
	color: var(--main-color-1-50);
}
.mdl320-form select.first-child:required:valid {
	color: var(--main-color-1);
}


/* Radio */
.mdl320-form input[type='radio'].touched:not(:checked) + label::after {
	border-color: var(--main-color-error);
}
.mdl320-form input[type='radio']:required:valid:not(:checked) + label::after {
	border-color: var(--main-color-1-75);
}
.mdl320-form input[type='radio'].touched + label {
	color: var(--main-color-error);
}
.mdl320-form input[type='radio']:required:valid + label {
	color: var(--main-color-1);
}

/* Input */
.mdl320-form input.touched {
	color: var(--main-color-error);
}
.mdl320-form input:required:valid {
	color: var(--main-color-1);
}
.mdl320-form input.touched::-webkit-input-placeholder {
	color: var(--main-color-error);
}
.mdl320-form input.touched::-moz-placeholder {
	color: var(--main-color-error);
}
.mdl320-form input.touched:-ms-input-placeholder {
	color: var(--main-color-error);
}
.mdl320-form input.touched:-moz-placeholder {
	color: var(--main-color-error);
}
.mdl320-form input:required:valid::-webkit-input-placeholder {
	color: var(--main-color-1-50);
}
.mdl320-form input:required:valid::-moz-placeholder {
	color: var(--main-color-1-50);
}
.mdl320-form input:required:valid:-ms-input-placeholder {
	color: var(--main-color-1-50);
}
.mdl320-form input:required:valid:-moz-placeholder {
	color: var(--main-color-1-50);
}



/* Hinweis-Box */
.mdl320-hinweis-box {
	margin-bottom: 27px;
}
@media (min-width: 1020px) {
	.mdl320-hinweis-box {
		margin-bottom: 37px;
	}
}


/* Zwischenabstand */
.mdl320-abstand {
	margin-top: 27px;
}
@media (min-width: 1020px) {
	.mdl320-abstand {
		margin-top: 37px;
	}
}


/* Mitgliederbeiträge */
/* Box */
.mdl320-table-box {
	width: 100%;
	overflow-y: auto;
	margin: 0;
	padding-bottom: 7px;
}
.mdl320-table-box::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 5px; /* Mostly for vertical scrollbars */
	height: 5px; /* Mostly for horizontal scrollbars */
}
.mdl320-table-box::-webkit-scrollbar-thumb { /* Fordergrund */
	border-radius: 5px;
	background-color: var(--main-color-1-50);
}
.mdl320-table-box::-webkit-scrollbar-track { /* Hintergrund */
	border-radius: 5px;
	background-color: var(--main-color-1-8);
}

/* Tabelle */
table.mdl320-table {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	min-width: 365px; /* 240px, 125px (Spalten) */
	color: var(--main-color-1);
}
	table.mdl320-table tr {
		vertical-align: top;
	}
	table.mdl320-table tr:first-of-type {
		font-weight: 600;
		color: var(--main-color-1);
	}
		table.mdl320-table td {
			display: table-cell;
			vertical-align: top;
			text-align: left;
			width: 125px;
			padding-top: 4px;
			padding-bottom: 4px;
		}
		table.mdl320-table td:nth-child(1) {
			/*display: block;*/
			width: auto;
			padding-right: 10px;
		}
		table.mdl320-table tr:first-of-type td {
			vertical-align: bottom;
			padding-top: 0;
			padding-bottom: 10px;
		}
		table.mdl320-table tr:first-of-type td:nth-child(1) {
			font-size: 1.0625rem; /* 17px */
			letter-spacing: 0.17px;
		}
		table.mdl320-table tr:last-of-type td {
			padding-bottom: 0;
		}
@media (min-width: 760px) {
	table.mdl320-table td {
		width: 150px;
	}
	table.mdl320-table td:nth-child(1) {
		width: auto;
	}
}
@media (min-width: 1020px) {
	table.mdl320-table td {
		padding-top: 5px;
		padding-bottom: 5px;
	}
	table.mdl320-table td:nth-child(1) {
		padding-right: 12px;
	}
	table.mdl320-table tr:first-of-type td {
		padding-bottom: 14px;
	}
	table.mdl320-table tr:first-of-type td:nth-child(1) {
		font-size: 1.375rem; /* 22px */
		letter-spacing: 0.22px;
	}
}


/* Hinweise */
.mdl320-hinweise {
	padding-left: 36px;
}
.mdl320-hinweise:before {
	content: "*";
	position: absolute;
	margin-left: -12px;
}
@media (min-width: 1020px) {
	.mdl320-hinweise {
		padding-left: 48px;
	}
	.mdl320-hinweise:before {
		margin-left: -14px;
	}
}

