@charset "utf-8";

/* ANGEBOTE.CSS */
/* letzte Aenderung am 9.7.2022 um 11:00 Uhr CC*/

/* ~ iPhone8 plus: 414 x 736 ---------------- 1 -- */
@media only screen and (min-width: 380px) and (max-width: 991px) {
.i-bild-mittel {
	width: 100%;
	height: auto;
	border-radius: 5px;
	}
}

/* ~ Huawei P20: 360 x 760px ---------------- 2 -- */
@media only screen and (min-width: 331px) and (max-width : 379px) {
.i-bild-mittel {
	width: 100%;
	height: auto;
	border-radius: 5px;
	}
}

/* ~ iPhone SE und 5s: 320 x 568 ------------ 3 -- */
@media only screen and (max-width : 330px) {
.i-bild-mittel {
	width: 100%;
	height: auto;
	border-radius: 5px;
	}
}

/* ~ Tablet --------------------------------- 4 -- */
/* Pre-Design: 1112px, (iPad Pro) */
@media only screen and (min-width: 992px) and (max-width : 1499px) {
.i-bild-mittel {
	width: 60%;
	height: auto;
	border-radius: 5px;
	}
}

/* ~ Desktop -------------------------------- 5 -- */
/* 3 Spalten, Pull-Down-Menü */
/* Pre-Design: 1680px (mein Bildschirm) */
@media only screen and (min-width: 1500px) and (max-width: 1919px) {
.i-bild-mittel {
	width: 60%;
	height: auto;
	border-radius: 5px;
	}
}
	
/* ~ Widescreen ----------------------------- 6 -- */
/* Menü-Zeile, fixes Layout */
/* Heike: HD = 1920x1080px */
@media (min-width: 1920px) {
.i-bild-mittel {
	width: 60%;
	height: auto;
	border-radius: 5px;
	}
}