@charset "UTF-8";
/* CSS Document */
.loading{
	position: fixed;
	z-index: 100000;
	top: 0;
	left: 0;
	width: 100%;
	width: 100vw;
	height: 100%;
	height: 100vh;
	background: #FFF;

	-webkit-user-select: none;  /* Chrome all / Safari all */
	-moz-user-select: none;     /* Firefox all */
	-ms-user-select: none;      /* IE 10+ */
}

/*loading*/
.loading_start{
	opacity: 0;
	/*position: fixed;
	width:100%;
	height:100%;
 	z-index: 1000;
	box-sizing: border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	background: rgba(0,0,0,0.56);*/
}

.loading_stop{
	width:0;
	height:0;
	overflow:hidden;
}
.load_table {
	position: fixed;
	width:100%;
	height:100%;
 	z-index: 1000;
	box-sizing: border-box;
	text-align: center;
	-webkit-box-sizing:border-box;
	-moz-box-sizing: border-box;
	background: rgba(0,0,0,0.56);

	display: -webkit-box;
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;

	-webkit-box-pack: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;

	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
}

/* for ios Safari Chrome */
.loading_ios {
	position: fixed;
	z-index: 1000;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #FFF;

 	-webkit-user-select: none;
 	-moz-user-select: none;
 	-ms-user-select: none;
}
.loading_ios .load_table{
/*	position: absolute;
	top:calc(50vh - 19px);
	width: 100%;
	text-align: center;
	vertical-align: middle;*/
}
.iconLoadingL{
	display: block;
	/*margin-top: 40vh;*/
}
.iconLoadingL > svg{
	animation: loading-animate 1s linear infinite both;
	-webkit-animation: loading-animate 1s linear infinite both;
}
@keyframes loading-animate{
	0%{
		transform: rotate(0);
	}
	100%{
		transform: rotate(360deg);
	}
}
@-webkit-keyframes loading-animate{
	0%{
		-webkit-transform: rotate(0);
	}
	100%{
		-webkit-transform: rotate(360deg);
	}
}