.loading{
	position:fixed;
	width:100vw;
	height:100vh;
  top: calc(50% - 53px);
  left: calc(50% - 53px);
	z-index:1000;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.loading-image{
	position:relative;
	width:100%;
	height:100%;
	top:0px;
	left:0px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.loading-overlay {
  overflow: auto;
  position: fixed;
  top: 0;
  bottom: 110%;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  opacity: 0;
	background: rgba(0, 0, 0, 0.8);
  transition: opacity 200ms linear, bottom 0s linear 200ms;
}

.loading-open {
  bottom: 0;
  opacity: 1;
  transition: opacity 200ms linear, bottom 0s linear;
}

.loading-view {
  overflow: hidden;
}
