/*Loading Start*/
.LightBox.LoadingBox {
	/*width: 100%;*/
	padding: 0;
	background: transparent;
	top: 50%;
	left: 50%;
	margin: -44px 0 0 -44px;
}
.LightBox.LoadingBox.Active{
	display: block;
}
.LightBox.LoadingBox > .LoadingText{
	color: #fff;
	text-indent: 6px;
}
/*====================loading====================*/
.loading{
	position: relative;
	cursor: default;
	/*pointer-events: none;*/
}
.loading:before {
	position: fixed;
	content: '';
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100%;
	z-index: 100;
	background: rgba(0, 0, 0, 0.1);
}

.loading:after {
	position: absolute;
	content: '';
	top: 50%;
	left: 50%;
	margin: -1.5em 0em 0em -1.5em;
	width: 2em;
	height: 2em;
	-webkit-animation: form-spin 0.4s linear;
	animation: form-spin 0.4s linear;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	border-radius: 500rem;
	border-color: #767676 rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1);
	border-style: solid;
	border-width: 0.2em;
	box-shadow: 0px 0px 0px 1px transparent;
	visibility: visible;
	z-index: 101;
}
/* 載入更多 */
.load-more{
	text-align: center;
	margin-top: 20px;
	min-height: 30px;
	opacity: 0;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-ms-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.load-more--active{
	opacity: 1;
}
/* 載入更多-文字 */
.load-more__text{
	display: none;
	text-indent: 100%;
	white-space: nowrap;
	overflow: none;
}
@-webkit-keyframes form-spin {
	from {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	}

	to {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}

@keyframes form-spin {
	from {
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	}

	to {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
	}
}