/* Einstellungen für Kopf */
.kopf {
	display:none;
}

.kopf-klein {
	display: block;
	background-color: white;
}

.kopf-klein div.logo {
	position: relative;
	display: block;
	padding: 2rem;
	text-align: center;
}
	
.kopf-klein div.logo img {
	width: auto !important;
	height: auto;
	max-width: 90%;
}

.kopf .firma {
	display: none;
}

@supports (display: grid) {
	.hinweis {
		display: none;
	}
}

@media (min-width: 992px){
	.kopf-klein {
		display: none;
	}
	
	.kopf .mail {
		line-height: 0.8rem;
	}
	
	.kopf .mail::after {
		content: " \f16d";
		font-family: "foundation-icons";		
	}

	/* Einstellungen für Internet Explorer bis 11 */
	.hinweis {
		display: block;
		padding: .3rem;
		top: 0;
		width: auto;
		z-index: 5000;
		height: auto;
		text-align: center;
		background-color: #d00000;
		color: white;
	}
	
	.kopf {
		display: block;
		background-size: 100% 100%;
		width: 100%;
	}
	.kopf img {
		max-width: 100%;
	}
	
	.kopf div.logo {
		padding-left: 1rem;
		display: block;
		top: 2rem;
	}
	
	.kopf div.logo img {
		width: auto;
		height: auto;
		max-width: 300px;
	}
	
	.kopf .firma {
		display: block;
		min-width: 250px;
		right: 1rem;
		font-size: 0.9rem;
	}
	.kopf .firma .firmendaten_l, .kopf .firma .firmendaten_r {
		display: block;
		line-height: 1.1rem;
	}
	
	.kopf .firma .firmendaten_l {
		margin-right: 0.5rem;
		float: left;
	}
	
/* Einstellungen für ordentliche Browser */

	@supports (display: grid) {
		.hinweis {
			display: none;
		}
		
		.kopf {
			display: grid;
			position: relative;
			background-size: 100% 100%;
			width: 100%;
		}
		
		.kopf img {
			max-width: 100%;
		}
		
		.kopf div.logo {
			padding-left: 1rem;
			align-self: center;
			position: absolute;
		}
		
		.kopf div.logo img {
			width: auto;
			height: auto;
			max-width: 300px;
		}
		
		.kopf .firma {
			display: flex;
			position: absolute;
			right: 1rem;
			bottom: 1rem;
			font-size: 0.9rem;
			align-self: center;
		}
		.kopf .firma .firmendaten_l, .kopf .firma .firmendaten_r {
			display: block;
			line-height: 1.1rem;
		}
		
		.kopf .firma .firmendaten_l {
			margin-right: 0.5rem;
		}		
	}
}