@font-face {
 	font-family: 'Fira-Sans'; /* Gewünschter Name */
    src: url('../Fonts/Fira_Sans/FiraSans-Regular.ttf');
}

:root{
	--BGred: #da0900;
	--FontColor-dark: #2B2B2B;
	--FontColor-light: #f3f3f3;
	--MainFont: Fira-Sans, Verdana;
	--FontSize-Bread: 10pt;
	--LineHeight-Bread: 13.5pt;
}

/*------------------------ Navigation ----------------------*/

a:hover{
	color:var(--BGred);
}

* {
	margin: 0;
	padding: 0;
}
nav {
	width: 100%;
	background-color: white;
}
nav ul{
	list-style: none;
	float: left;
	width: 100%;
}
nav ul li{
	float: left;
	padding: 5px 15px;
	text-align: center;
}

@media (max-width: 600px) {
	nav ul li{
		width: 100%;
		padding: 15px 0px;
	}
	nav ul {
		display: none;
	}
}
.burgericon {
	width: 30px;
	height: 30px;
	display: none;
	margin-left: 15px;
}
.burgericon div {
	width: 90%;
	margin: 7px 5%;
	height: 3px;
	background-color: black;
}

.ContentWrapper{
	display:flex;
	flex-direction:column;
	border: solid 1px #cecece;
	padding: 40px;
}

@media (max-width: 600px) {
	.burgericon {
		display: block;
	}
}
#navigation {
	opacity: 0;
}
#navigation:checked ~ ul {
	display: block;
}
#navigation:checked ~ label .burgericon {
	/*margin-top: 15px;*/
}
#navigation:checked ~ label .burgericon div:first-of-type{
	rotate: 45deg;
}
#navigation:checked ~ label .burgericon div:last-child{
	rotate: -45deg;
	margin-top: -10px;
}
#navigation:checked ~ label .burgericon div:nth-child(2){
	display: none;
}

.NavLink{
	text-decoration:none;
	color:#000;
}

#NavLabel{
	height:0px;	
}
/*----------------------------------------------------------*/

html, body{
	min-height:100%;
}
body{
	font-family: var(--MainFont);
	font-size:var(--FontSize-Bread);
	line-height: var(--LineHeight-Bread);
	color:var(--FontColor-dark);
	background-color: #FFFFFF;
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin:0px;
}

.AdvertBox{
	margin: 10px;
	text-align: center;
	display: flex;
	flex-direction: column;
}

.AdvertBoxLink{
	text-decoration: none;
}

#AdvertRow{
	display: flex;
	flex-direction: row;
	max-width: 210px;
	padding: 10px;
	background-color: #e8e8e8;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: center;
	align-content: flex-start;
}
@media (max-width: 600px) {
	#AdvertRow {
		max-width: 100%;
	}
}

.AdvertRowLogo{
	max-width: 180px;
	margin-top: 10px;	
	margin-bottom:5px;
}

.AdvertRowLink{
	color: #000;
	align-items: center;
	display: flex;
	flex-direction: column;
}

.AdvertImage{
	max-width:150px;
}

#AdvertShopHeader{
	width:100%;
	text-align:center;
	margin-bottom: 10px;
}

.AdvertTitleBox{
	font-size:11pt;
	color: var(--BGred);
}

.AdvertPriceBox{
	font-size:12pt;
	font-weight:500;
}

#BusinessHoursBox{
	font-size:var(--FontSize-Bread);
}

#BodyWrapper{
	max-width:950px;
	min-height:100%;
	display:flex;
	flex-direction: column;
	justify-self: center;
}

#ContentRow{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	justify-content: space-between;
}

#Content{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	max-width: 700px;
	align-content: flex-start;
	justify-content:space-between;
	margin-top: 20px;
	margin-bottom: 20px;
}
@media (max-width: 600px) {
	#Content {
		max-width: 100%;
		justify-content:space-around;
	}
}

.Floatleft {
  float: left;
  margin-right:15px;
}

.Floatright {
  float: right;
  margin-left:15px;
}

.FullSizeImage{
	width:100%;
}

#Footer{
	display:flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	width:100%;
	background-color:var(--BGred);
	color:var(--FontColor-light);
}

.Footerbox{
	margin:15px;
}

h1{
	font-size:13.25pt;
	font-weight:bold;
	margin-bottom:10px;
	color:var(--BGred);
}
h2{
	font-size:10pt;
}

#LegalLinks{
	display:flex;
	flex-direction:column;
}

.LegalLink{
	color:#FFFFFF !important;
	font-weight:bold;
}

#LogoBox{
	display: flex;
	justify-content: center;
	text-align:center;
}
.Logo{
	width:75%;
	margin-top:10px;
	margin-bottom:10px;
}
@media (max-width: 600px) {
	.Logo {
		width:95%;
	}
}

#Navi{
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	align-items: flex-end;
	width:100%;
	background-color:#9c9c9c;
	color:var(--FontColor-dark);
}

.NaviShopLinkBox{
	margin-bottom:5px;
	margin-right:10px;
}

p{
	margin-bottom: 20px;
}

@media (min-width: 600px){
	#OutterBodyWrapper{
		padding-left: 40px;
		background-color: #FFFFFF;
		min-height: 100%;
		padding-right: 40px;
		border-right: solid 1px #4a4a4a;
		border-left: solid 1px #4a4a4a;
	}
	body{
		  background: linear-gradient(#7e0001, #1a0000);
	}
}

#QuickinfoBar{
	display:flex;
	flex-direction:row;
	flex-wrap: wrap;
	width:100%;
	/*min-height:20px;*/
	align-items:center;
	justify-content: space-around;
	background-color: var(--BGred);
	color:var(--FontColor-light);
	font-weight:bold;
	padding-top:5px;
	padding-bottom:10px;
}
@media (max-width: 600px) {
	#QuickinfoBar {
		visibility:collapse;
		height:0px;
	}
}