@import url('https://fonts.googleapis.com/css2?family=BenchNine&display=swap');

*,
*::before,
*::after{box-sizing:border-box;}
*:focus{outline: none;}
a{text-decoration:none; color:inherit; cursor:pointer;}
button{background-color:transparent; color:inherit; border-width:0; padding:0; cursor:pointer;}
figure{margin:0;}
input::-moz-focus-inner {border:0; padding:0; margin:0;}
ul, ol, dd{margin:0; padding:0; list-style:none;}
h1, h2, h3, h4, h5, h6{margin:0; font-size:inherit; font-weight:inherit;}
p{margin:0;}
cite {font-style:normal;}
fieldset{border-width:0; padding:0; margin:0;}

html, body{
	min-height: 100%;
	margin: 0;
	padding: 0;
}

body{
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	align-items: center;
	background: url(img/pattern.png) repeat;
	background-size: 7%;
	box-sizing: border-box;
	color: #000;
	display: flex;
	flex-direction: column;
	font-family: 'BenchNine', sans-serif;
	font-size: 16px;
	justify-content: center;
	letter-spacing: 0.05em;
	padding: 7%;
	text-align: center;
}

p{
	border-bottom: 1px solid #42AD4A;
	font-size: 1.4em;
	margin: 5px 0;
	padding:  5px 0;
	text-transform: uppercase;
}

a{
	text-decoration: underline;
}

p:last-child{
	border:none;
}

p.corona{
	background-color: #c41a0e;
	border:  none;
	color:  #FFF;
}

p.kultur{
	background-color: #42AD4A;
	color:  #FFF;
}

.red{
	color: #CC2027;
}

.btn{
	border:  1px solid #FFF;
	border-radius:  3px;
	display:  inline-block;
	font-size: .8em;
	margin-left: 10px;
	padding: 0px 10px;
	position: relative;
	top:  -2px;
}

#seasonalclosing{
	align-items: center;
    background-color: #42AD4A;
    color: #FFF;
    display: flex;
    justify-content: center;
    position: fixed;
    padding: 40px 0 20px;
    width: 200%;
    z-index: 20000;
    transform: rotate(-45deg);
    opacity: .9;
}

@media(min-width: 768px){
	#seasonalclosing p{
		font-size: 3em;
	}
}

#hero{
	align-items: center;
	background: #EBEBEB;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	/*overflow: scroll;*/
	  overflow-y: auto;

	min-height: 100%;
	justify-content: space-between;
	position: relative;
	width: 100%;
}


#maincontent{
	max-width: 750px;
	padding: 20px 0;
	width: 80%;
}

h1.logocontainer{
	position:relative;
}

#logo{
	max-width: 800px;
	width: 100%;
}

#roller{
	left: 16%;
    max-width: 48px;
    position: absolute;
    top: 16%;
    width: 6.2%;
    z-index: 100;
    animation: rolling 2s linear infinite;
}

@keyframes rolling {
	0%		{ transform: rotate(0deg); }
	100%	{ transform: rotate(360deg); }
}

.trash-container{
	display: flex;
	flex: 1 0 auto;
	flex-direction: column;
	min-height: 200px;
	width: 100%;
}

.trash{
	display: flex;
	height: 200px;
	min-height: 200px;
	justify-content: center;
	overflow: hidden;
	position: relative;
}

.trash img{
	object-fit: stretch;
	width: 50%;
}

#trash-top{
	/*animation: trashtopmobile 15s linear infinite;*/
}

#trash-top:hover {
	animation-play-state: paused 
}

@keyframes trashtopmobile {
	0%		{ left: 0; }
	50%		{ left: -200%; }
	100%	{ left: 0; }
}

#trash-bottom{
	border-top: 10px solid #42AD4A;
}

@media(min-width: 768px){
	body{
		background-size: 3%;
		padding: 3%;
	}

	p{
		font-size: 2em;
	}

	.trash-container{
		flex: 0 0 auto;
	}

	.trash{
		max-height:15vh;
	}

	.trash img{
		width: 16.666%;
	}

	#trash-top{
		animation: none;
	}
}

.hide-mobile{
	display: none;
}

.hide-desktop{
	display: initial;
}

@media(min-width: 768px){
	.hide-mobile{
		display: initial;
	}

	.hide-desktop{
		display: none;
	}

}

#footer-nav ul{
	display: flex;
	justify-content: center;
}

#footer-nav ul li{
	line-height: 45px;
}
#footer-nav ul li a{

	padding: 5px 15px;
}

#sticker{
	display: block;
	position:fixed;
	top: 0;
	right: 0;
	transform: rotate(23deg);
	min-width: 150px;
	max-width: 250px;
	width: 25vw;
}

.marquee {
	background-color: #42AD4A;
	color: #FFF;
	font-size: 1.3em;
	width: 100%;
	max-width: 100vw;
	white-space: nowrap;
	overflow: hidden;
}

.marquee span {
	display: inline-block;
	padding-left: 100%;
	animation: marquee 15s linear infinite;
	line-height: 30px;
	vertical-align: middle;
}

.marquee span img{
	max-width: 20px;
	vertical-align: middle;
	animation: rotatepizza 3s linear infinite;
}

.marquee span:hover {
	animation-play-state: paused 
}

@keyframes marquee {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

@keyframes rotatepizza  {
	0%   { transform: rotate(0); }
	100% { transform: rotate(-360deg); }
}

.modal {
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}
.modal.open {
    visibility: visible;
    opacity: 1;
    transition-delay: 0s;
}
.modal-bg {
    position: absolute;
    background: #42AD4A;
    width: 100%;
    height: 100%;
    opacity: 0.9;
  }
.modal-container {
    border-radius: 10px;
    background: #fff;
    font-size: 1.4em;
    position: relative;
    padding: 30px;
  }
.modal-close {
    position: absolute;
    right: 15px;
    top: 15px;
    outline: none;
    appearance: none;
    color: #42AD4A;
    background: none;
    border: 0px;
    font-weight: bold;
    cursor: pointer;
  }

  .modal h1{
  	font-size: 2em;
  }

  .modal ul{
  	list-style: disc;
  	padding-left:  20px;
  	text-align: left;
  }