/* Main Stylesheer für KannFinden.at */

body {
	margin: 0;
	}
* {box-sizing: border-box;}

html {
  scroll-behavior: smooth;
}

/* ======================== Resolution independent ======================== */

/* ---------- Header ----------*/
h1 {
	color: #fff;  
	background-color: #bbb;
	font-family: Literata; 
	font-weight: 600;
	text-align: center;
	margin-top: -5px;
	margin-bottom: 2px;
}

/* ---------- Menu: Responsive Top-Navigation ----------*/
.topnav {
	background-color: #666;
	overflow: hidden;
	margin-bottom: 20px;
}

.topnav a {
	float: left;
	display: block;
	font-family: Literata; 
	text-align: center;
	padding: 8px 10px;
	text-decoration: none;
	font-size: 16px;
	color: #fff;
}
.topnav a:hover {
	background-color: #ddd;
	color: #000;
}

.topnav  .active {
  background-color: orange;
  color: #fff;
}

.topnav .icon {
  display: none;
  color: #fff;
}
.topnav a:link {
	color: #fff;
}
.topnav a:hover a:link {
	color: #000;
}

/* ============== Form: Radio-Buttons for Type ============== */


/* The container */
.container {
	font-family: Literata; 
	display: block;
	position: relative;
	padding-left: 35px;
	margin-bottom: 6px;
	cursor: pointer;
	font-size: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

/* Hide the browser's default radio button */
.container input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
	position: absolute;
	top: 2px;
	left: 0;
	height: 23px;
	width: 23px;
	background-color: #ddd;
	border-radius: 50%;
}


/* On mouse-over, add a grey background color */
.container:hover input ~ .checkmark {
	background-color: #999;
}

/* When the radio button is checked, add a orange background */
.container input:checked ~ .checkmark {
	background-color: orange;
	/*background-color: #2196F3;*/
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the indicator (dot/circle) when checked */
.container input:checked ~ .checkmark:after {
	display: block;
}

/* Style the indicator (dot/circle) */
.container .checkmark:after {
	top: 8px;
	left: 8px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}

/* Style the submit button */
input[type=submit] {
	font-family: Literata;
	font-size: 17px;
	font-weight: 300;
	background-color: #ddd;
	color: #666;
	padding: 7px 10px;
	border: 2px solid Orange;
	border-radius: 4px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
	cursor: pointer;
	display: block;
	width: 170px;
    margin-left: auto;
    margin-right: auto;
	margin-top: 8px;	
	margin-bottom: 4px;	
}
/* Style the submit button */
input[type=submit]:hover {
  background-color: DarkOrange;
  color: white;
}



/* ---------- Scroll-Up Button ---------- */
#myUpBtn {
	display: none;
	border: 3px solid #666;
	position: fixed;
	bottom: 15px;
	right: 15px;
	z-index: 999;
	font-size: 1.6em;
	font-weight: 300;
	outline: none;
	background-color: #ddd;
	color: #666;
	border: 3px solid Orange;
	border-radius: 5px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
	cursor: pointer;
	padding-top: 0px;
	padding-bottom: 3px;
	padding-left: 12px;
	padding-right: 12px;
}



/* ============================= Handy Auflösung ============================= */
@media screen and (max-width: 750px) {

	h1 {
		text-shadow: 2px 2px 8px #555;
		font-size: 1.9em; 
		padding: 10px;
	}

	/* ----------------- Menu ----------------- */
	/*.topnav a:not(:first-child) {display: none;}*/
	.topnav a {display: none;}
	.topnav a.icon {
		float: right;
		display: block;
	}

	.topnav.responsive {position: relative;}
	.topnav.responsive .icon {
		position: absolute;
		right: 0;
		top: 0;
	}
	.topnav.responsive a {
		float: none;
		display: block;
		text-align: left;
		color: #fff;
	}
	.topnav.responsive a:hover {
		color: #000;
	}

/* ---------- Category Selection Form ---------- */
	form {
		padding-left: 10px;
		padding-right: 5px;
		}

	.form-tiles {
		margin-top: 0px;
		margin-left: 0%;
		margin-right: 0%;
		column-count: 1;
		}

	.container {
		margin-bottom: 12px;
		font-size: 15px;
	}
	.checkmark {
		position: absolute;
		top: 2px;
		left: 0;
		height: 20px;
		width: 20px;
		background-color: #ddd;
		border-radius: 50%;
	}
	/* Style the indicator (dot/circle) */
	.container .checkmark:after {
		top: 6px;
		left: 6px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}

	/* ----------------- Tiles ----------------- */
	.tiles {
		margin-left: 0px;
		margin-right: 0px;
		column-count: 1;
		}

	.line {
		color: #fff;  
		background-color: #777;
		font-family: Literata; 
		font-size: 5.3vw; 
		line-height: normal; 
		font-weight: 300;
		text-align: center;
		margin-bottom: 25px;
		padding-top: 3px;
		padding-bottom: 7px;
		padding-left: 3px;
		padding-right: 3px;
		}

	.headline {
		color: #666;  
		font-family: Oswald; 
		font-size: 5.8vw; 
		line-height: 6.7vw;
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 5px;
	}

	.tile_info{
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 15px;
		padding-left: 0px;
	}
	.cat_info {
		column-count: 1;
		margin-left: 5px;
		margin-right: 5px;
		margin-bottom: 3px;
		padding-bottom: 3px;
	}
	.cat_description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 1px;
		margin-bottom: 3px;
		hyphens: auto;
	}	

	.box{
		box-sizing: border-box;
		width: 100%;
		padding-right: 0px;
		padding-top: 6px;
		color: #000;
		float: left;
		}

	.tile-img{
		width: 100%;
		margin-bottom: 3px;
		border: 1px solid #ccc;
		}

	.credit{
		position: relative;
		color: #555;
		font-family: Arial;
		font-size: 9px;
		top: -2px;
		padding-left: 5px;
	}

	.description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 10px;
		hyphens: auto;
	}	
	.address {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		font-weight: 300;
		padding-left: 5px;
		text-align: left;
		}	

	.navi-block{
		position: relative;
		margin-top: 10px;
		padding-left: 5px;
		margin-bottom: 60px;
	}
	
	.link {
		font-family: Oswald; 
		font-size: 4.1vw; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 20px;
		padding-top: 2px;
		float: left;
		}
	
	.distance {
		color: #777;  
		font-family: Oswald; 
		font-size: 4.1vw; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 25px;
		padding-top: 2px;
		float: left;
	}
	
	.tripix-link {
		font-family: Oswald; 
		font-size: 4.1vw; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 25px;
		padding-top: 2px;
		float: left;
		}


	.map-marker {
		width: 13px;
		height: 19px;
	}
	.map-link{
		font-family: Oswald; 
		font-size: 3.9vw;
	}
	.rating-img{
		width: 80px;
		height: 16px;
		float: right;
		padding-right: 5px;
		margin-top: 3px;	
	}

	a:link {
		color: #777;
		text-decoration: none;
	}
	
	a:hover {
		color: red;
		background-color: transparent;
	}
	
	a:active {
		color: red;
		background-color: transparent;
	}
		
	a:visited {
		color: #c00;
		background-color: transparent;
	}

	.front-image-container {
		margin-top: 25%;
		display: flex;
		justify-content: center;
	}
	.front-image {
		width: 40%;
	}
	
	.front-title {
		font-family: Oswald, Sans Serif;
		max-width: 700px;
		font-size: 5.5vw;
		color: #888;
		text-align: center;
		margin: auto;	
	}
}


/* ======================== Small Tablet Auflösung ======================== */
@media screen and (min-width: 751px) and (max-width: 1000px){
	h1 {
		text-shadow: 2px 2px 8px #555;
		font-size: 3.7em; 
		padding: 10px;
	}

	.tiles {
		margin-left: 10px;
		margin-right: 10px;
		column-count: 1;
		column-gap: 20px;	
		}
	
/* ---------- Category Selection Form ---------- */
	form {
		padding-left: 10px;
		padding-right: 5px;
		}

	.form-tiles {
		margin-top: 3px;
		margin-left: 5%;
		margin-right: 0%;
		column-count: 3;
		column-gap: 30px;	
		}

	.container {
		margin-bottom: 2px;
		font-size: 14px;
	}
	.checkmark {
		position: absolute;
		top: 2px;
		left: 0;
		height: 20px;
		width: 20px;
		background-color: #ddd;
		border-radius: 50%;
	}
	/* Style the indicator (dot/circle) */
	.container .checkmark:after {
		top: 6px;
		left: 6px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}

	/* --- (1) Alle Sehenswürdigkeit --- */
	.tile_1 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(245,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (2) Die schönsten Burgen & Schlösser --- */
	.tile_2 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(139,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (3) Die schönstern Gärten & Parks --- */
	.tile_3 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(154,205,50);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (4)  Nationalparks & Naturdenkmäler --- */
	.tile_4 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(34,128,34);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (5) Die besten Museen & Ausstellungen --- */
	.tile_5	{
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,165,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (6) Die schönsten Kirchen & Klöster --- */
	.tile_6 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (7) Die schönsten Skulpturenparks --- */
	.tile_7 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,163);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (8) Wohnmobil-Stellplätze  --- */
	.tile_8 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,192,203);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (9) Campingplätze --- */
	.tile_9 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,112,147);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (10) Restaurants & Gaststätten --- */
	.tile_10 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(238,130,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (11) Ausgewählte Hotels & Pensionen --- */
	.tile_11 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,122,187);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (12) Thermen, Freibäder & Wasserparks --- */
	.tile_12 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(100,149,237);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (13) Sport & Freizeit --- */
	.tile_13 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(135,206,250);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (14) Manufakturen --- */
	.tile_14 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(32,178,170);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (15) Traditionsgeschäfte --- */
	.tile_15 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(0,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	/* --- (16) Messen, Veranstaltungen & Dorffeste --- */
	.tile_16 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(215,215,215);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (17) Werksbesichtigung & Werksverkauf --- */
	.tile_17 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(182,182,182);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (18) Wissenschaft --- */
	.tile_18 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(128,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (19) Heuriger, Buschenschank --- */
	.tile_19 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(189,215,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (20) Kaffeehaus, Konditorei --- */
	.tile_20 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(198,89,17);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (21) Hofladen, Abhof-Verkauf --- */
	.tile_21 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,173,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (22) Atelier, Galerie --- */
	.tile_22 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,143,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (23) Kurse --- */
	.tile_23 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(35,35,35);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (24) Yachthafen, Marina --- */
	.tile_24 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(95,65,205);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	.tile_info{
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 25px;
		padding-left: 0px;
	}
	.cat_info {
		column-count: 3;
		column-gap: 30px;	
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 3px;
		padding-left: 0px;
	}
	.cat_description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 1px;
		margin-bottom: 3px;
		hyphens: auto;
	}	

	
	.box{
		box-sizing: border-box;
		width: 100%;
		padding-right: 10px;
		padding-top: 6px;
		color: #000;
		float: left;
		}
	.tile-img{
		width: 100%;
		float: left;
		top: -2px;
		margin-bottom: 3px;
		border: 1px solid #ddd;
		}
	.credit{
		position: relative;
		color: #555;
		font-family: Arial;
		font-size: 10px;
		padding-bottom: 15px;
	}
	.line {
		color: #fff;  
		background-color: #777;
		font-family: Literata; 
		font-size: 22px; 
		line-height: normal; 
		font-weight: 300;
		text-align: center;
		margin-bottom: 25px;
		padding-top: 3px;
		padding-bottom: 7px;
		padding-left: 3px;
		padding-right: 3px;
	}
	.headline {
		color: #666;  
		font-family: Oswald; 
		font-size: 22px; 
		line-height: 30px;
		font-weight: 300;
		text-align: left;
		padding-top: 3px;
		padding-bottom: 8px;
	}
	
	.description {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-bottom: 15px;
		hyphens: auto;
	}	
	.address {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		font-weight: 300;
		text-align: left;
		}	

	.navi-block{
		position: relative;
		margin-top: 15px;
	}

	.link {
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 10px;
		float: left;
		}
	
	.distance {
		color: #777;  
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 10px;
		float: left;
	}
	
	.tripix-link {
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 10px;
		float: left;
		}
	
	.map-marker {
		width: 13px;
		height: 19px;
		margin-top: -9px;
	}
	
	.map-link{
		font-family: Oswald; 
		font-size: 16px;
	}
		
	.rating-img{
		width: 80px;
		height: 16px;
		float: right;
		padding-right: 5px;
		margin-top: 3px;	
	}
	
		
	a:link {
		color: #777;
		text-decoration: none;
	}
	
	a:hover {
		color: red;
		background-color: transparent;
	}
	
	a:active {
		color: red;
		background-color: transparent;
	}
		
	a:visited {
		color: #c00;
		background-color: transparent;
	}
	
	.topnav a:link {
		color: #fff;
		text-decoration: none;
	}
	
	.topnav a:hover {
		color: #fff;
		background-color: orange;
	}
	
	.topnav a:active {
		color: #fff;
		background-color: transparent;
	}
		
	.topnav a:visited {
		color: #fff;
		background-color: transparent;
	}
	
	
	.iwh-button {
		width: 50%;
		height: 50px;
		margin-top: 5px;
		border-top: 3px solid #ddd;
		border-left: 3px solid #ddd;
		border-bottom: 3px solid #333;
		border-right: 3px solid #333;
	}
	
	.iwh-link a{
		margin-top: 10px;
		font-family: Oswald, Sans Serif;
		font-size: 1.3em;
		color: #c00;
	}
	.iwh-link a:hover {
		color: #f00;
	}
	
	.front-image-container {
		margin-top: 5%;
		display: flex;
		justify-content: center;
	}
	
	.front-image {
	width: 10%;
	}
	
	.front-title {
		font-family: Oswald, Sans Serif;
		max-width: 700px;
		font-size: 1.5vw;
		color: #888;
		text-align: center;
		margin: auto;	
	}

}


/* ======================== Tablet Auflösung ======================== */
@media screen and (min-width: 1001px) and (max-width: 1400px){
	h1 {
		text-shadow: 2px 2px 8px #555;
		font-size: 3.7em; 
		padding: 10px;
	}

	.tiles {
		margin-left: 7%;
		margin-right: 7%;
		column-count: 1;
		column-gap: 90px;	
		}

/* ---------- Category Selection Form ---------- */
	form {
		padding-left: 10px;
		padding-right: 5px;
		}

	.form-tiles {
		margin-top: 3px;
		margin-left: 14%;
		margin-right: 3%;
		column-count: 3;
		column-gap: 30px;	
		}

	.container {
		margin-bottom: 3px;
		font-size: 15px;
	}
	.checkmark {
		position: absolute;
		top: 2px;
		left: 0;
		height: 20px;
		width: 20px;
		background-color: #ddd;
		border-radius: 50%;
	}
	/* Style the indicator (dot/circle) */
	.container .checkmark:after {
		top: 6px;
		left: 6px;
		width: 8px;
		height: 8px;
		border-radius: 50%;
		background: white;
	}

	/* --- (1) Alle Sehenswürdigkeit --- */
	.tile_1 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(245,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (2) Die schönsten Burgen & Schlösser --- */
	.tile_2 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(139,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (3) Die schönstern Gärten & Parks --- */
	.tile_3 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(154,205,50);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (4)  Nationalparks & Naturdenkmäler --- */
	.tile_4 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(34,128,34);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (5) Die besten Museen & Ausstellungen --- */
	.tile_5	{
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,165,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (6) Die schönsten Kirchen & Klöster --- */
	.tile_6 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (7) Die schönsten Skulpturenparks --- */
	.tile_7 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,163);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (8) Wohnmobil-Stellplätze  --- */
	.tile_8 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,192,203);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (9) Campingplätze --- */
	.tile_9 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,112,147);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (10) Restaurants & Gaststätten --- */
	.tile_10 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(238,130,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (11) Ausgewählte Hotels & Pensionen --- */
	.tile_11 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,122,187);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (12) Thermen, Freibäder & Wasserparks --- */
	.tile_12 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(100,149,237);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (13) Sport & Freizeit --- */
	.tile_13 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(135,206,250);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (14) Manufakturen --- */
	.tile_14 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(32,178,170);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (15) Traditionsgeschäfte --- */
	.tile_15 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(0,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	/* --- (16) Messen, Veranstaltungen & Dorffeste --- */
	.tile_16 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(215,215,215);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (17) Werksbesichtigung & Werksverkauf --- */
	.tile_17 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(182,182,182);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (18) Wissenschaft --- */
	.tile_18 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(128,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (19) Heuriger, Buschenschank --- */
	.tile_19 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(189,215,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (20) Kaffeehaus, Konditorei --- */
	.tile_20 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(198,89,17);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (21) Hofladen, Abhof-Verkauf --- */
	.tile_21 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,173,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (22) Atelier, Galerie --- */
	.tile_22 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,143,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (23) Kurse --- */
	.tile_23 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(35,35,35);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (24) Yachthafen, Marina --- */
	.tile_24 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(95,65,205);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	.tile_info{
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 25px;
		padding-left: 0px;
	}
	.cat_info {
		column-count: 3;
		column-gap: 30px;	
		margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 3px;
		padding-left: 0px;
	}
	.cat_description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 1px;
		margin-bottom: 3px;
		hyphens: auto;
	}	

	
	.box{
		box-sizing: border-box;
		width: 100%;
		padding-right: 10px;
		padding-top: 6px;
		color: #000;
		float: left;
		}
	.tile-img{
		width: 100%;
		float: left;
		top: -2px;
		margin-bottom: 3px;
		border: 1px solid #ddd;
		}
	.credit{
		position: relative;
		color: #555;
		font-family: Arial;
		font-size: 10px;
		padding-bottom: 15px;
	}
	.line {
		color: #fff;  
		background-color: #777;
		font-family: Literata; 
		font-size: 22px; 
		line-height: normal; 
		font-weight: 300;
		text-align: center;
		margin-bottom: 25px;
		padding-top: 3px;
		padding-bottom: 7px;
		padding-left: 3px;
		padding-right: 3px;
	}
	.headline {
		color: #666;  
		font-family: Oswald; 
		font-size: 22px; 
		line-height: 30px;
		font-weight: 300;
		text-align: left;
		padding-top: 3px;
		padding-bottom: 8px;
	}
	
	.description {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-bottom: 15px;
		hyphens: auto;
	}	
	.address {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		font-weight: 300;
		text-align: left;
		}	

	.navi-block{
		position: relative;
		margin-top: 15px;
	}

	.link {
		font-family: Oswald; 
		font-size: 15px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 8px;
		float: left;
		}
	
	.distance {
		color: #777;  
		font-family: Oswald; 
		font-size: 15px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 8px;
		float: left;
	}
	
	.tripix-link {
		font-family: Oswald; 
		font-size: 15px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 8px;
		float: left;
		}
	
	.map-marker {
		width: 13px;
		height: 19px;
		margin-top: -9px;
	}
	
	.map-link{
		font-family: Oswald; 
		font-size: 16px;
	}
		
	.rating-img{
		width: 80px;
		height: 16px;
		float: right;
		padding-right: 5px;
		margin-top: 3px;	
	}
	
		
	a:link {
		color: #777;
		text-decoration: none;
	}
	
	a:hover {
		color: red;
		background-color: transparent;
	}
	
	a:active {
		color: red;
		background-color: transparent;
	}
		
	a:visited {
		color: #c00;
		background-color: transparent;
	}
	
	.topnav a:link {
		color: #fff;
		text-decoration: none;
	}
	
	.topnav a:hover {
		color: #fff;
		background-color: orange;
	}
	
	.topnav a:active {
		color: #fff;
		background-color: transparent;
	}
		
	.topnav a:visited {
		color: #fff;
		background-color: transparent;
	}
	
	
	.iwh-button {
		width: 50%;
		height: 50px;
		margin-top: 5px;
		border-top: 3px solid #ddd;
		border-left: 3px solid #ddd;
		border-bottom: 3px solid #333;
		border-right: 3px solid #333;
	}
	
	.iwh-link a{
		margin-top: 10px;
		font-family: Oswald, Sans Serif;
		font-size: 1.3em;
		color: #c00;
	}
	.iwh-link a:hover {
		color: #f00;
	}
	
	.front-image-container {
		margin-top: 5%;
		display: flex;
		justify-content: center;
	}
	
	.front-image {
	width: 10%;
	}
	
	.front-title {
		font-family: Oswald, Sans Serif;
		max-width: 700px;
		font-size: 1.5vw;
		color: #888;
		text-align: center;
		margin: auto;	
	}

}


/* ===================================== Small PC Auflösung ===================================== */
@media screen and (min-width: 1401px) and (max-width: 1700px){
	h1 {
		text-shadow: 2px 2px 8px #555;
		font-size: 4.0em; 
		padding: 10px;
	}
	.tiles {
		margin-left: 10%;
		margin-right: 10%;
		column-count: 1;
		column-gap: 90px;	
		}
	
	.form-tiles {
		margin-top: 3px;
		margin-left: 14%;
		margin-right: 3%;
		column-count: 3;
		column-gap: 30px;	
		}


	/* --- (1) Alle Sehenswürdigkeit --- */
	.tile_1 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(245,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (2) Die schönsten Burgen & Schlösser --- */
	.tile_2 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(139,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (3) Die schönstern Gärten & Parks --- */
	.tile_3 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(154,205,50);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (4)  Nationalparks & Naturdenkmäler --- */
	.tile_4 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(34,128,34);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (5) Die besten Museen & Ausstellungen --- */
	.tile_5	{
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,165,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (6) Die schönsten Kirchen & Klöster --- */
	.tile_6 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (7) Die schönsten Skulpturenparks --- */
	.tile_7 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,163);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (8) Wohnmobil-Stellplätze  --- */
	.tile_8 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,192,203);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (9) Campingplätze --- */
	.tile_9 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,112,147);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (10) Restaurants & Gaststätten --- */
	.tile_10 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(238,130,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (11) Ausgewählte Hotels & Pensionen --- */
	.tile_11 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,122,187);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (12) Thermen, Freibäder & Wasserparks --- */
	.tile_12 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(100,149,237);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (13) Sport & Freizeit --- */
	.tile_13 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(135,206,250);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (14) Manufakturen --- */
	.tile_14 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(32,178,170);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (15) Traditionsgeschäfte --- */
	.tile_15 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(0,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	/* --- (16) Messen, Veranstaltungen & Dorffeste --- */
	.tile_16 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(215,215,215);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (17) Werksbesichtigung & Werksverkauf --- */
	.tile_17 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(182,182,182);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (18) Wissenschaft --- */
	.tile_18 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(128,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (19) Heuriger, Buschenschank --- */
	.tile_19 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(189,215,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (20) Kaffeehaus, Konditorei --- */
	.tile_20 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(198,89,17);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (21) Hofladen, Abhof-Verkauf --- */
	.tile_21 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,173,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (22) Atelier, Galerie --- */
	.tile_22 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,143,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (23) Kurse --- */
	.tile_23 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(35,35,35);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (24) Yachthafen, Marina --- */
	.tile_24 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(95,65,205);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	.tile_info{
		margin-left: 10%;
		margin-right: 10%;
		margin-bottom: 25px;
		padding-left: 0px;
	}
	.cat_info {
		column-count: 3;
		column-gap: 30px;	
		margin-left: 10%;
		margin-right: 10%;
		margin-bottom: 3px;
		padding-left: 0px;
	}
	.cat_description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 1px;
		margin-bottom: 3px;
		hyphens: auto;
	}	
	
	.box{
		box-sizing: border-box;
		width: 100%;
		padding-right: 10px;
		padding-top: 6px;
		color: #000;
		float: left;
		}
	.tile-img{
		width: 100%;
		float: left;
		top: -2px;
		margin-bottom: 3px;
		border: 1px solid #ddd;
		}
	.credit{
		position: relative;
		color: #555;
		font-family: Arial;
		font-size: 10px;
		padding-bottom: 15px;
	}
	.line {
		color: #fff;  
		background-color: #777;
		font-family: Literata; 
		font-size: 22px; 
		line-height: normal; 
		font-weight: 300;
		text-align: center;
		margin-bottom: 25px;
		padding-top: 3px;
		padding-bottom: 7px;
		padding-left: 3px;
		padding-right: 3px;
	}
	.headline {
		color: #666;  
		font-family: Oswald; 
		font-size: 22px; 
		line-height: 30px;
		font-weight: 300;
		text-align: left;
		padding-top: 3px;
		padding-bottom: 8px;
	}
	
	.description {
		color: #555;  
		font-family: Literata; 
		font-size: 15px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-bottom: 15px;
		hyphens: auto;
	}	
	.address {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		font-weight: 300;
		text-align: left;
		}	

	.navi-block{
		position: relative;
		margin-top: 15px;
	}

	.link {
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 11px;
		float: left;
		}
	
	.distance {
		color: #777;  
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 11px;
		float: left;
	}
	
	.tripix-link {
		font-family: Oswald; 
		font-size: 16px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 11px;
		float: left;
		}
	
	.map-marker {
		width: 15px;
		height: 20px;
		margin-top: -9px;
	}
	
	.map-link{
		font-family: Oswald; 
		font-size: 16px;
	}
		
	.rating-img{
		width: 80px;
		height: 16px;
		float: right;
		padding-right: 5px;
		margin-top: 3px;	
	}
	
		
	a:link {
		color: #777;
		text-decoration: none;
	}
	
	a:hover {
		color: red;
		background-color: transparent;
	}
	
	a:active {
		color: red;
		background-color: transparent;
	}
		
	a:visited {
		color: #c00;
		background-color: transparent;
	}
	
	.topnav a:link {
		color: #fff;
		text-decoration: none;
	}
	
	.topnav a:hover {
		color: #fff;
		background-color: orange;
	}
	
	.topnav a:active {
		color: #fff;
		background-color: transparent;
	}
		
	.topnav a:visited {
		color: #fff;
		background-color: transparent;
	}
	
	
	.iwh-button {
		width: 50%;
		height: 50px;
		margin-top: 5px;
		border-top: 3px solid #ddd;
		border-left: 3px solid #ddd;
		border-bottom: 3px solid #333;
		border-right: 3px solid #333;
	}
	
	.iwh-link a{
		margin-top: 10px;
		font-family: Oswald, Sans Serif;
		font-size: 1.3em;
		color: #c00;
	}
	.iwh-link a:hover {
		color: #f00;
	}
	
	.front-image-container {
		margin-top: 5%;
		display: flex;
		justify-content: center;
	}
	
	.front-image {
	width: 10%;
	}
	
	.front-title {
		font-family: Oswald, Sans Serif;
		max-width: 700px;
		font-size: 1.5vw;
		color: #888;
		text-align: center;
		margin: auto;	
	}

}



/* ===================================== Large PC Auflösung ===================================== */
@media screen and (min-width: 1701px){
	h1 {
		text-shadow: 4px 4px 12px #555;
		font-size: 4.1em; 
		padding: 10px;
	}

	.tiles {
		margin-left: 20%;
		margin-right: 20%;
		column-count: 1;
		column-gap: 120px;	
		}
	
	.form-tiles {
		margin-top: 3px;
		margin-left: 17%;
		margin-right: 3%;
		column-count: 3;
		column-gap: 30px;	
		}

	/* --- (1) Alle Sehenswürdigkeit --- */
	.tile_1 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(245,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (2) Die schönsten Burgen & Schlösser --- */
	.tile_2 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(139,0,0);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (3) Die schönstern Gärten & Parks --- */
	.tile_3 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		/*border-left: 8px solid rgb(154,205,50);*/
		border-left: 1px solid #ccc;
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (4)  Nationalparks & Naturdenkmäler --- */
	.tile_4 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(34,128,34);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (5) Die besten Museen & Ausstellungen --- */
	.tile_5	{
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,165,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (6) Die schönsten Kirchen & Klöster --- */
	.tile_6 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (7) Die schönsten Skulpturenparks --- */
	.tile_7 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,205,163);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (8) Wohnmobil-Stellplätze  --- */
	.tile_8 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(255,192,203);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (9) Campingplätze --- */
	.tile_9 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,112,147);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (10) Restaurants & Gaststätten --- */
	.tile_10 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(238,130,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (11) Ausgewählte Hotels & Pensionen --- */
	.tile_11 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(219,122,187);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (12) Thermen, Freibäder & Wasserparks --- */
	.tile_12 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid rgb(100,149,237);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (13) Sport & Freizeit --- */
	.tile_13 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(135,206,250);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (14) Manufakturen --- */
	.tile_14 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(32,178,170);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	
	/* --- (15) Traditionsgeschäfte --- */
	.tile_15 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(0,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	/* --- (16) Messen, Veranstaltungen & Dorffeste --- */
	.tile_16 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(215,215,215);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (17) Werksbesichtigung & Werksverkauf --- */
	.tile_17 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(182,182,182);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (18) Wissenschaft --- */
	.tile_18 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(128,128,128);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (19) Heuriger, Buschenschank --- */
	.tile_19 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(189,215,238);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (20) Kaffeehaus, Konditorei --- */
	.tile_20 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(198,89,17);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (21) Hofladen, Abhof-Verkauf --- */
	.tile_21 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,173,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (22) Atelier, Galerie --- */
	.tile_22 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(191,143,0);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (23) Kurse --- */
	.tile_23 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(35,35,35);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}
	/* --- (24) Yachthafen, Marina --- */
	.tile_24 {
		page-break-inside: avoid;
		margin-bottom: 35px;
		border-left: 8px solid RGB(95,65,205);
		border-top: 1px solid #ccc;
		border-right: 1px solid #ccc;
		border-bottom: 1px solid #ccc;
		padding-left: 15px;
		padding-right: 10px;
		padding-top: 10px;
		padding-bottom: 20px;
		box-shadow: 2px 4px 8px 4px rgba(0, 0, 0, 0.07), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
		}

	.tile_info{
		margin-left: 13%;
		margin-right: 13%;
		margin-bottom: 15px;
		padding-left: 0px;
	}
	.cat_info {
		column-count: 3;
		column-gap: 30px;	
		margin-left: 13%;
		margin-right: 13%;
		margin-bottom: 3px;
		padding-left: 0px;
	}
	.cat_description {
		color: #555;  
		font-family: Literata; 
		font-size: 0.9em; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-left: 5px;
		padding-bottom: 1px;
		margin-bottom: 3px;
		hyphens: auto;
	}	

	.box{
		box-sizing: border-box;
		width: 100%;
		padding-right: 10px;
		padding-top: 6px;
		color: #000;
		float: left;
		}
	.tile-img{
		width: 100%;
		float: left;
		margin-bottom: 3px;
		border: 1px solid #ddd;
		}
	.credit{
		position: relative;
		color: #555;
		font-family: Arial;
		font-size: 10px;
		top: -2px;
		padding-bottom: 15px;
	}

	.line {
		color: #fff;  
		background-color: #777;
		font-family: Literata; 
		font-size: 22px; 
		line-height: normal; 
		font-weight: 300;
		text-align: center;
		margin-bottom: 25px;
		padding-top: 3px;
		padding-bottom: 7px;
		padding-left: 3px;
		padding-right: 3px;
	}
	.headline {
		color: #555;  
		font-family: Oswald; 
		font-size: 30px; 
		line-height: 35px;
		font-weight: 300;
		text-align: left;
		padding-top: 3px;
		padding-bottom: 12px;
	}
	
	.description {
		color: #555;  
		font-family: Literata; 
		font-size: 15px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-bottom: 15px;
		hyphens: auto;
	}	
	.address {
		color: #555;  
		font-family: Literata; 
		font-size: 14px; 
		font-weight: 300;
		text-align: left;
		}	
	
	.navi-block{
		position: relative;
		margin-top: 15px;
	}

	.link {
		font-family: Oswald; 
		font-size: 17px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 13px;
		float: left;
		}
	
	.distance {
		color: #777;  
		font-family: Oswald; 
		font-size: 17px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 13px;
		float: left;
	}
	
	.tripix-link {
		font-family: Oswald; 
		font-size: 17px; 
		line-height: normal; 
		font-weight: 300;
		text-align: left;
		padding-right: 11px;
		float: left;
		}
	
	.map-marker {
		width: 15px;
		height: 20px;
		margin-top: -9px;
	}
	
	.map-link{
		font-family: Oswald; 
		font-size: 16px;
	}
		
	.rating-img{
		width: 80px;
		height: 16px;
		float: right;
		padding-right: 5px;
		margin-top: 3px;	
	}
	
		
	a:link {
		color: #777;
		text-decoration: none;
	}
	
	a:hover {
		color: red;
		background-color: transparent;
	}
	
	a:active {
		color: red;
		background-color: transparent;
	}
		
	a:visited {
		color: #c00;
		background-color: transparent;
	}
	
	.topnav a:link {
		color: #fff;
		text-decoration: none;
	}
	
	.topnav a:hover {
		color: #fff;
		background-color: orange;
	}
	
	.topnav a:active {
		color: #fff;
		background-color: transparent;
	}
		
	.topnav a:visited {
		color: #fff;
		background-color: transparent;
	}
	
	
	.iwh-button {
		width: 50%;
		height: 50px;
		margin-top: 5px;
		border-top: 3px solid #ddd;
		border-left: 3px solid #ddd;
		border-bottom: 3px solid #333;
		border-right: 3px solid #333;
	}
	
	.iwh-link a{
		margin-top: 10px;
		font-family: Oswald, Sans Serif;
		font-size: 1.3em;
		color: #c00;
	}
	.iwh-link a:hover {
		color: #f00;
	}
	
	.front-image-container {
		margin-top: 5%;
		display: flex;
		justify-content: center;
	}
	
	.front-image {
	width: 10%;
	}
	
	.front-title {
		font-family: Oswald, Sans Serif;
		max-width: 700px;
		font-size: 1.5vw;
		color: #888;
		text-align: center;
		margin: auto;	
	}
	
	
}



/* ============================ ANFANG Cookie Consent ============================ */
#cookies{
	visibility: hidden;
	position: fixed;
	width: 100%;
	margin: auto;
	bottom: 5px;
}

#cookies.show {
	visibility: visible;
	-webkit-animation: fadein 2s;
	animation: fadein 2s;
	position: fixed;
}

@-webkit-keyframes fadein {
	from {bottom: -150px; opacity: 0;} 
	to {bottom: 5px; opacity: 1;}
}

@keyframes fadein {
	from {bottom: -150px; opacity: 0;}
	to {bottom: 5px; opacity: 1;}
}

.sub-title {
	color: #777;  
	font-family: Literata; 
	font-size: 1.5vw; 
	line-height: 2.5vw; 
	font-weight: 300;
	text-align: center;
	padding-left: 10%;
	padding-right: 10%;
	margin-top: -20px;
	}

.cookieContainer{
	background-color: #F0F0F0;
}
.cookieContainerTitle {
	font-family: Oswald; /*'Arial', Helvetica, Verdana; */
	font-size: 1.7em;
	text-align: center;
	color: #777;  
	padding-top: 15px;
}
.cookieContainerText {
	padding: 15px;
	font-family: Oswald; /*'Arial', Helvetica, Verdana; */
	font-size: 1.0em;
	line-height: 1.4em;
	text-align: center;
	color: #888;
}

.cookieNavbar {
	width: 500px;
	margin: auto;
	padding-top: 5px;
	/* background-color: #F3F3F3; */
	background-color: #fff;
	overflow: auto;
}
.cookieNavbar a {
	float: left;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-left: 1%;
	margin-bottom: 5px;
	background-color: white; 
	border: 3px solid rgba(154, 154, 154, 1.0);
	font-weight: 500;
	color: #888;
	text-decoration: none;
	font-family:Oswald; /*'Arial Narrow', Helvetica, Verdana; */
	font-size: 17px;
	line-height: 20px;
	width: 32%; /* 3 links of equal widths */
	text-align: center;
}

@media screen and (max-width: 800px) {

	.sub-title {
		color: #777;  
		font-family: Literata; 
		font-size: 1.0em; 
		line-height: 1.7em; 
		font-weight: 300;
		text-align: center;
		padding-left: 3%;
		padding-right: 3%;
		margin-top: -5px;
	}
	.cookieContainer{
		padding-top: 0px;
	}
	.cookieContainerTitle {
		font-family: Oswald; /*'Arial', Helvetica, Verdana; */
		font-size: 1.0em;
		text-align: center;
		color: #888;  
		padding-top: 10px;
	}
	.cookieContainerText {
		padding: 5px;
		font-family: Oswald; /*'Arial', Helvetica, Verdana; */
		font-size: 0.8em;
		font-weight: 300;
		text-align: center;
		color: #888;
	}
	.cookieNavbar {
		text-align: center;
		width: 100%;
		margin: auto;
		background-color: #FFF;
		overflow: auto;
		padding-top: 5px;
	}
	.cookieNavbar a {
		font-weight: 600;
		color: #888;
		font-size: 14px;
		line-height: 16px;
		padding-top: 5px;
		padding-bottom: 5px;
		padding-left: 5px;
		padding-right: 5px;
	}
}
/* ============================ ENDE Cookie Consent ============================ */



#first {
	border-color: rgba(154, 175, 50, 1.0);
	color: #888;
}
#second {
	border-color: rgba(84,84,84,1.0);
	color: #888;
}
#third {
	border-color: rgba(225, 0, 0, 1.0);
	color: #888;
}


#first:hover {
	background-color: rgba(154, 175, 50, 1.0);
	color: #fff;
}
#second:hover {
	background-color: rgba(84,84,84,1.0);
	color: #fff;
}
#third:hover {
	background-color: rgba(225, 0, 0, 1.0);
	color: #fff;
}

/* -------------------- Statistics Info -------------------- */

.info {
	color: #777;  
	font-family: Oswald; 
	font-size: 0.9vw; 
	line-height: normal; 
	font-weight: 300;
	text-align: left;
	}
@media screen and (max-width: 800px){
	.info {
	color: #777;  
	font-family: Oswald; 
	font-size: 2.1vw; 
	line-height: normal;
	font-weight: 300;
	text-align: left;
	}
}




