/* CSS Document */

/* ================= SCHRIFTARTEN HOLEN =============== */
/*@import "https://fonts.googleapis.com/css?family=Open+Sans|Slabo+27px";*/


@import url("https://use.typekit.net/utm0ath.css"); /*fairweather*/

/* ================= STANDARD DEFINITIONEN =============== */
/* Clearfix */
* {
	padding:0px;
	margin:0px;
	box-sizing:border-box;	
}
html,body {
    height:100%;
    min-height:100%;
	padding:0.5rem 1rem;
}
body {
    background:rgba(5,13,47,1.00);
    font-family:"Open Sans", Calibri, Tahoma, sans-serif;
	font-family: 'Fairweather', Calibri, Tahoma, sans-serif;
    font-size:1.2rem;
    color:white;
}
a {
    color:white;
    font-weight:normal;
}

h1, h2, h3, h4{
    font-family:"fairweather", Calbri, Tahoma, sans-serif;
    background:rgba(5,13,47,1.00);
    padding:0.5rem;
    margin:0rem 0rem 0.5rem 0rem;
}

h1{
    font-size:1.5rem;
    border-radius:0.5rem;
	color: white;
}
h2{
    font-size:1.4rem;
	border-radius:0.5rem;
	color: white;


}
h3{
    background:white;
    font-size:1.3rem;
    margin-bottom:1rem;
}
h4{
    font-size:1.1rem;
}
p {
    padding:1rem 0rem;
}
img {
	max-width:100%;
	width:100%;
}
hr {
	border-top:none;
	border-bottom:1px dotted white;
	margin:0.4rem 0rem;
}

input:not([type=checkbox]), textarea, select {
        background:rgba(222,222,222,0.8);
        border-radius:5px;
        padding:0.5rem;
        font-family:"Open Sans", Calibri, Tahoma, sans-serif;
        font-size:1rem;
        color:black;
        width:80%;
}

ul {
    padding-left:3rem;
}


/* ================= ELEMENTE STRUKTUR =============== */
header, nav, #container, footer {
	    box-sizing:border-box;
		margin:1rem auto;	
		max-width:1200px;
        border-radius:0.5rem;
        /* border:1px solid black; */
        /* box-shadow:1px 1px 4px 3px rgba(33,33,33,0.3); */
        padding:0.5rem;
}
header  {
    font-size:2rem;
	font-weight:bold;
}
header,footer  {
        color:white;
        background:rgba(5,13,47,1.00);
}
nav {
	display: flex;
	gap: 1rem;
	color:white;
	font-size:1.6rem;
}

nav div {
	position: relative;
}

nav a:link {
	text-decoration: none;
}
nav a:hover {
	text-decoration: underline;
}
nav > span {
	position: relative;
}
.kartenkiosk_shop {
	border:1px solid rgba(150,150,150,1.00);
	max-width:1200px;
	margin:0 auto;
}

.logo {
	width: 500px;
}

.filterloeschen {
	color:darkolivegreen;
}

.subnav{
	position:absolute;
	background-color: white;
	left: 0;
	top: 32px;
	width:auto;
	white-space: nowrap;
	color: black;
	z-index: 100;
	display: none;
	flex-direction: column;
	padding: 1rem;
}
.subnav a {
	color: black;
	font-size: 1.4rem;
	padding: 0.25rem;
}
.artikelauswahl{
	background-color: lightblue;
	padding: 0.25rem;
	border-radius: 5px;
}
.subnav.aktiv{
	display: flex;
}

#container {
        min-height:70%;
        background:rgba(88,88,88,0.8);
}


/*================ Produktanzeige ===================== */
.artikel_main {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: auto;
	background-color:rgba(5,13,47,1.00);
}

.artikel_box{
	position: relative;
	display: block;
	height: auto;
	width: 200px;
	background-color: #000000;
	padding: 0.5rem;
	margin: 1rem;
	text-align: left;
}
.artikel_box img{
	width: auto;
	object-fit: contain;
	height: auto;
	margin: 0 auto;
	justify-content: center;
	display: flex;
	margin-bottom: 0.5rem;
}

.artikel_shoppingbox{
	width: auto;
	display: flex;
	object-fit: contain;
	height: auto;
	margin: 0 auto;
	padding: 0.5rem;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	background-color:rgba(5,13,47,1.00);
	color:white;
}
/* ================= EIGENE KLASSENDEFINITIONEN =============== */
.klein {
    font-size:0.8rem;
}

.rot {
	color:#FFFFFF;
}
/* Bilder designen */
/* lieber mit flexbox oder grid arbeiten */
.bildergalerie {
	float:left;
	height:150px;
	margin-right:0.5rem;
	margin-bottom:0.5rem;
}
/* Hack wegen Float */
.clearfix{
	clear:both;
}





/* Fehlermeldung ausgeben */
.fehlermeldung {
	display:block;
	background:red;
	color:yellow;
	margin:1rem 0rem;
	padding:0.5rem;
}



