/* styles */
#esriFullscreenBtn {
	top:70px;
	left:0;
	max-width:32px;
}
.esriMap--loading .esri-zoom, .esriMap--loading #esriFullscreenBtn{
	display:none;
}
.esri-ui-bottom-left, .esri-ui-bottom-right {
	bottom:30px;
}
#esriMapLoading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-size: 18px;
  font-weight: bold;
  color: #333;
}

#esriMapLoading .spinner {
  margin-top: 10px;
  width: 40px;
  height: 40px;
  border: 5px solid #ccc;
  border-top-color: #333;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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