body {
	padding-top: 3.5rem;
}

html, body {
	height: 100%;
	width: 100vw;
	margin: 0;
}

.leaflet-container {
	height: 100%;
	width: 100%;
	max-width: 100%;
	max-height: 100%;
}

div#search {
	background-color: white;
  	position: absolute;
  	border: 1px solid black;
  	padding: 5px;
  	top: 4.2rem;
  	right: 70px;
  	width: auto;
  	height: auto;  	
  	z-index: 99999998;
  	display: none;
}

div#results {
  	font-style: sans-serif;
  	color: black;
  	font-size: 75%; 
}

.contentarea {
	font-size: 16px;
	font-family: Arial;
	text-align: center;
}
    
#myImg, .myImg {
	border: 1px solid black;
	max-width: 90px;
	max-height: 90px;
}

.fullscreen-container {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(90, 90, 90, 0.5);
  z-index: 9999;
}

.loading-state {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 10px solid #ddd;
  border-top-color: orange;
  animation: loading 1s linear infinite;
}

.hide-loader{
  display:none;
}

@keyframes loading {
  to {
    transform: rotate(360deg);
  }
}
