@charset "UTF-8";
/* CSS Document */
.loading{
	z-index: 6;
	position: fixed;
	top: 0;
	left: 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	min-height: 80px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fff;
}
.loading_right{
	position: fixed;
	right: 0;
	top: 56px;
	display: none;
	width: 33.33%;
	height: calc(100% - 56px);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #fff;
}
.icon_load{
	display: block;
	width: 32px;
	height: 32px;
	background-image: url('../../assets/images/icon_load.svg');
	background-size: 32px 32px;
	background-repeat: no-repeat;
	animation: loading-animate 1s linear infinite both;
	-webkit-animation: loading-animate 1s linear infinite both;
}

/*loading*/
.loading_start{
	opacity: 0;
}

.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;
}

.iconLoadingL{
	display: block;
}
.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);
	}
}