body,html{
	margin:0;
	padding:0;
	font-family:arial;
	overflow-x:hidden;
}
.churchIcons{
	transform-origin:center;
	transform-box:fill-box;
	cursor:pointer;
	transform:scale(2);
	pointer-events: bounding-box;
}
#mapContainer{
	max-height: fit-content;
	max-width: fit-content;
	margin-top:-20px;

	/*position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);*/
}
#mapContainer svg{
	height:auto;
	width:100vw;
	min-width: 920px;
}
#popUpContainer{
	position:absolute;
	top:0;
	left:0;
	width:100vw;
	height:100vh;
	background-color:rgba(0,0,0,0.5);
	display:none;
	z-index:99;
}
#iframe{
	width:80vw;
	height:80vh;
}
#closeIframe{
	width:30px;
	height:30px;
	position:absolute;
	top:0;
	right:-35px;
	background-color:rgba(0,0,0,0.3);
	color:white;
	cursor:pointer;
	margin:0;
	line-height:30px;
	text-align:center;
	font-weight:bold;
}
#closeIframe:hover{
	background-color: rgba(0,0,0,1);
}
#iframeContainer{
	max-width:fit-content;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
}
#showName{
	display:none;
	padding:5px;
	background-color:black;
	color:white;
	font-size:1em;
	z-index:9999;
	width:auto;
	position:absolute;
	top:0;
	left:0;
}
#banner{
	height:100px;
	width:100vw;
	background-color:rgb(63, 87, 101);position:sticky;
	top:0;
}
#banner img{
	height:90px;
	margin:5px 0 0 5px;
}
footer{
	/*position:absolute;
	bottom:0;*/
	width:100vw;
	background-color:rgb(63, 87, 101);
	color:white;
	font-family:arial;
	padding:20px 0;
}
#portal-footer{
	text-align:center;
	width:100%;
	margin-bottom:0;
}
#portal-footer a, footer a{
	text-decoration:none;
	color:white;
}
#menu{
	position:absolute;
	top:200px;
	right:50px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
}
#menuHat{
	width:200px;
	color:white;
	background-color:rgb(7, 101, 108);
	border-radius:20px 20px 0 0;
	text-align:center;
	padding:15px 50px;
	font-weight:bold;
}
#menuChurches{
	box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
	width:250px;
	border-radius:0 0 20px 20px;
	display:flex;
	flex-direction:column;
	justify-content:center;
	align-items:center;
	padding:15px 0;
	background-color:white;
}
#menuList{
	list-style-type: decimal-leading-zero;
	counter-reset:oli;
	list-style-type:none;
}
.menuItem{
	padding:5px 0;
	cursor:pointer;
	width:100%;
	text-align:left;
	font-size:0.8em;
	counter-increment:oli;
	list-style-position: outside;
	text-indent: -1em;
}
.menuItem:hover{
	box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}
.menuItem:before {
  content:counter(oli)". ";
  font-weight:bold;
  display:inline-block;
  text-align:right;
  margin-right:10px;
}

@media screen and (max-width: 1500px) {
	#menuHat{
		width:80vw;
		padding:15px 0;
	}
	#menu{
		left:50%;
		transform:translate(-50%,0);
		position:relative;
		top:5px;
	}
	#menuChurches{
		width:80vw;
		padding:0;
	}
	#menuList{
		display:flex;
		flex-wrap:wrap;
	}
	.menuItem{
		width:20%;
		margin-right:35px;
	}
}

@media screen and (max-width: 920px) {
	body{
		overflow:auto;
	}
	footer, #banner, #menu, #bigContainer{
		width:920px;
	}
	#popUpContainer{
		width:100%;
		height:100vh;
	}
}
