
/* ############################################################
	060 - FORMULAR-MANAGER
############################################################ */

/* Modultitel */
/*.mdl060-modultitel {
	margin-bottom: 30px;
}
@media screen and (min-width: 1200px) {
	.mdl060-modultitel {
		margin-bottom: 40px;
	}
}*/


/* Allgemeines */
.mdl060-form input,
.mdl060-form textarea {
	position: relative;
	width: 100%;
	height: 49px;
	margin: 0 0 24px;
	padding: 0 10px;
	border: none;
	border-radius: 0;
	/*border-bottom: 1px solid var(--main-color-3-45);*/
	background-color: var(--main-color-5);
	font-size: 1.125rem; /* 18px */
	line-height: 49px;
	letter-spacing: 0.36px;
	color: var(--main-color-2);
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-o-transition: all 0.3s var(--cubic-bezier);
	-ms-transition: all 0.3s var(--cubic-bezier);
	-moz-transition: all 0.3s var(--cubic-bezier);
	-webkit-transition: all 0.3s var(--cubic-bezier);
	transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form input:focus,
.mdl060-form input:active,
.mdl060-form textarea:focus,
.mdl060-form textarea:active,
.mdl060-form button.send-button:focus,
.mdl060-form button.send-button:active {
	outline: none;
}
@media screen and (min-width: 992px) {
	.mdl060-form input,
	.mdl060-form textarea {
		height: 54px;
		margin-bottom: 32px;
		padding-left: 12px;
		padding-right: 12px;
		font-size: 1.25rem; /* 20px */
		line-height: 54px;
		letter-spacing: 0.4px;
	}
	.mdl060-form textarea {
		margin-top: 0;
	}
}


/* Placeholder */
.mdl060-form input::-webkit-input-placeholder,
.mdl060-form textarea::-webkit-input-placeholder {
	color: var(--main-color-2);
	-webkit-transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form input::-moz-placeholder,
.mdl060-form textarea::-moz-placeholder {
	color: var(--main-color-2);
	-moz-transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form input::-ms-input-placeholder,
.mdl060-form textarea::-ms-input-placeholder {
	color: var(--main-color-2);
	-ms-transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form input::-o-input-placeholder,
.mdl060-form textarea::-o-input-placeholder {
	color: var(--main-color-2);
	-o-transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form input::placeholder,
.mdl060-form textarea::placeholder {
	color: var(--main-color-2);
	transition: all 0.3s var(--cubic-bezier);
}


/* Textarea */
.mdl060-form textarea {
	height: 129px;
	padding: 10px;
	line-height: 1.4;
}
.mdl060-form textarea.resize {
	height: auto;
	min-height: 129px;
	resize: none;
	-ms-overflow-style: none;
}
@media screen and (min-width: 992px) {
	.mdl060-form textarea {
		height: 129px;
		padding: 12px;
		line-height: 1.4;
	}
	.mdl060-form textarea.resize {
		min-height: 144px;
	}
}


/* Checkbox, Radio */
.mdl060-form input[type='checkbox'] {
	float: left;
	width: auto;
	height: auto;
	background: transparent;
	border: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.mdl060-form input[type='checkbox']:checked,
.mdl060-form input[type='checkbox']:not(:checked)  {
	background: transparent;
	position: relative;
	visibility: hidden;
	margin: 0;
	padding: 0;
}
.mdl060-form input[type='checkbox'] + label {
	display: inline-block;
	cursor: pointer;
	padding: 0 0 0 32px;
	font-size: 1.125rem; /* 18px */
	line-height: 1.4;
	letter-spacing: 0.36px;
}
.mdl060-form input[type='checkbox']:checked + label::before,
.mdl060-form input[type='checkbox']:not(:checked) + label::before {
	content: "";
	display: block;
	position: absolute;
	width: 20px;
	height: 20px;
	margin-top: 0;
	margin-left: -32px;
	border: none;
	background-color: var(--main-color-5);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	-o-transition: background 0.3s var(--cubic-bezier);
	-ms-transition: background 0.3s var(--cubic-bezier);
	-moz-transition: background 0.3s var(--cubic-bezier);
	-webkit-transition: background 0.3s var(--cubic-bezier);
	transition: background 0.3s var(--cubic-bezier);
}
.mdl060-form input[type='checkbox']:checked + label {
}
.mdl060-form input[type='checkbox']:checked + label::before {
	background-image: url("../../elitecag/Images/Elemente/elitecag_Form_Checkbox_Active.svg");
}
@media screen and (min-width: 992px) {
	.mdl060-form input[type='checkbox'] + label {
		padding-left: 44px;
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
	.mdl060-form input[type='checkbox']:checked + label::before,
	.mdl060-form input[type='checkbox']:not(:checked) + label::before {
		width: 24px;
		height: 24px;
		margin-top: 0;
		margin-left: -44px;
	}
}


/* Label */
.mdl060-form label {
	display: block;
	font-size: 1.125rem; /* 18px */
	line-height: 1.4;
	letter-spacing: 0.36px;
	color: var(--main-color-2);
	-o-transition: color 0.3s var(--cubic-bezier);
	-ms-transition: color 0.3s var(--cubic-bezier);
	-moz-transition: color 0.3s var(--cubic-bezier);
	-webkit-transition: color 0.3s var(--cubic-bezier);
	transition: color 0.3s var(--cubic-bezier);
}
@media screen and (min-width: 992px) {
	.mdl060-form label {
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
}


/* Fehler: Input, Textarea, Label */
.mdl060-form input.touched,
.mdl060-form textarea.touched {
}
.mdl060-form input:required:valid,
.mdl060-form textarea:required:valid {
}
.mdl060-form label.touched {
	color: var(--main-color-error);
}
.mdl060-form input:required:focus:valid {
}


/* Button: Senden */
.mdl060-form button.send-button {
	position: relative;
	cursor: pointer;
	display: inline-block;
	width: auto;
	height: 40px;
	margin-top: 48px;
	padding-left: 20px;
	padding-right: 20px;
	border: 0;
	background-color: var(--main-color-1);
	border-radius: 2px;
	font-weight: 600;
	font-size: 0.75rem; /* 12px */
	line-height: 40px;
	letter-spacing: 0.24px;
	color: var(--main-color-white);
	text-transform: uppercase;
	text-align: center;
	-o-transition: all 0.3s var(--cubic-bezier);
	-ms-transition: all 0.3s var(--cubic-bezier);
	-moz-transition: all 0.3s var(--cubic-bezier);
	-webkit-transition: all 0.3s var(--cubic-bezier);
	transition: all 0.3s var(--cubic-bezier);
}
.mdl060-form button.send-button:hover {
	background-color: var(--main-color-4);
}
@media screen and (min-width: 992px) {
	.mdl060-form button.send-button {
		margin-bottom: 64px;
		font-size: 0.875rem; /* 14px */
		letter-spacing: 0.28px;
	}
}


/* Hinweis-Box */
.mdl060-hinweis-box {
	margin-bottom: 36px;
}
.mdl060-hinweis-box h3 {
	margin-bottom: 0;
}
.mdl060-hinweis-box.color-error h3 {
	color: var(--main-color-error);
}
.mdl060-hinweis-box.color-successful h3 {
	color: var(--main-color-successful);
}
@media screen and (min-width: 1200px) {
	.mdl060-hinweis-box {
		margin-bottom: 48px;
	}
}

