.iwContactForm {
	.infobox-text {
		padding: 30px;
		background-image: url('../Images/ContactForm/contactForm_background.svg');
		background-repeat: no-repeat;
		background-position: right bottom;
		
		@media(min-width: 992px) {
			padding: 40px;
		}
		
		@media(min-width: 1400px) {
			padding: 60px;
		}
		
		a {
			color: #FFF;
			transition: all .3s;
			background-image: linear-gradient(white, white);
			background-position: 0% 100%;
			background-repeat: no-repeat;
			background-size: 100% 1px;
			padding-bottom: 2px;
			margin-bottom: -2px;
			text-decoration: none;
			
			&:hover {
				background-size: 0% 1px;
				opacity: .85;
			}
		}
		
		ul {
			color: white;
		}

		select.error, input.error, textarea.error {
			background: #F3F3F3;
			/*border: none;*/
			/*border-bottom: 2px solid #ea2c2c;*/
			color: #ea2c2c;
			
			border-color: #ea2c2c;
			
			+ .placeholder {
				color: #ea2c2c;
			}
		}
		
		.form-wrapper.has-error {
			select, input, textarea {
				background: #F3F3F3;
				/*border: none;*/
				/*border-bottom: 2px solid #ea2c2c;*/
				color: #ea2c2c;

				border-color: #ea2c2c;

				+ .placeholder {
					color: #ea2c2c;
				}
			}
		}
	}
	
	.iwTextBlock__headline {
		margin-bottom: 25px;
	}
	
	p {
		margin: 0;
		
		+ p {
			margin: 5px 0 0 0;

			@media(min-width: 992px) {
				margin: 10px 0 0 0;
			}
		}
	}
	
	.form-navigation {
		margin-top: 20px;
		
		@media(min-width: 1200px) {
			margin-top: 30px;
		}
	}
}