:root {
	font-size: 16px;
}
html{
	scroll-behavior: smooth;
}
body, html {
	height: 100%;
}
body,h1,h2,h3,h4,h5,h6 {
	font-family: "Armata", sans-serif;
}
a {
	text-decoration: none;
}
fieldset {
	border: 2px solid white;
}
legend {
	padding: 0 10px;
}
.logo {
	max-width: 90vw;
	height: auto;
}
.page {
	max-width: 100%;
	height: auto;
}
.bgimg {
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url("../img/pizza.jpg");
	min-height: 100%;
}
.myFlexBox {
	display: flex;
	align-items: center;
}
#feedback {
	max-width: 95%;
	animation: pulse2 5s infinite;
}
#map {
	position: relative;
	width: 100%;
	height: 33vw;
	padding: 0;
	margin: 0;
}
#map iframe {
	width: 100%;
	height: 100%;
}
#count {
	float: right;
	padding: 0;
	margin-top: -25px;
	margin-right: 15px;
	font-size: 0.875rem;
	color: #333;
}
#quickaccess a {
	float: right;
}
#quickaccess a i {
	margin-right: 10px;
}
#statistics {
	position: absolute; 
	right: 10px; 
	bottom: 10px; 
	color: white;
	cursor: pointer;
}
.blob {
	margin-top: 15px;
	background-color: rgba(0, 145, 64, .8);
	border-radius: 15px;
	box-shadow: 0 0 0 0 rgba(0, 145, 64, 1);
	transform: scale(1);
	animation: pulse 2s infinite;
}
#sticky{
	position: absolute;
	z-index: 999;
	display: none;
	margin-left: -55px;
	padding: 10px;
	top: 65px;
	left: 50%;
	background-color: rgba(0, 145, 64, .8);
	color: rgb(255, 255, 255);
	text-align: center;
}
#sticky:after{
	content: "";
	border-width: 0 15px 15px;
	border-style: solid;
	border-color: rgba(0, 145, 64, .8) transparent;
	position: absolute;
	top: -14px;
	left: 20px
}
@media (max-width: 980px) {
	.myFlexBox {
		display: block;
	}
	#count {
		margin-top: -25px;
		margin-right: 10px;
		font-size: 0.875rem;
		color: #333;
	}
	#sticky {
		display: inline-block;
	}
}
@media (max-width: 720px) {
	#map {
		background-size: auto 100%;
		height: 300px;
	}
	#quickaccess {
		text-align: center;
	}
	#quickaccess a {
		float: none;
		display: inline-block;
	}
	#quickaccess a span {
		display: none;
	}
	#quickaccess a i {
		margin-right: 0;
	}
}
@keyframes pulse {
	0% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 145, 64, 0.7);
	}

	70% {
		transform: scale(1);
		box-shadow: 0 0 0 10px rgba(0, 145, 64, 0);
	}

	100% {
		transform: scale(0.95);
		box-shadow: 0 0 0 0 rgba(0, 145, 64, 0);
	}
}
@keyframes pulse2 {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}