
/* ローディングマーク */

.mosaLoading {
	/*display      : none;*/
	position     : absolute;
	height       : 38px;
	background   : rgba(255,255,255,1);
	border       : 1px solid #00acc3b8;
	border-radius: 6px;
	z-index      : 2147483647;
}

.mosaLoadingMark {
	position  : relative;
	float     : left;
	top       : 5px;
	left      : 5px;
    width     : 30px;
	height    : 30px;
	background: rgba(255,255,255,1.0) url(/assets/mosa.plugin/mosa.loading/images/indicator.gif) no-repeat center center;
	color     : #666;
}

.mosaLoadingText {
	position   : relative;
	float      : left;
	/*margin  : 13px 0px 0px 10px;*/
	line-height: 39px;
	margin-left: 7px;
	color      : #666;
	font-size  : 140%;
}

.mosaLoadingMini {
	display      : none;
	position     : fixed;
	background   : rgba(255,255,255,1) url(/assets/mosa.plugin/mosa.loading/images/indicator.gif) no-repeat center center;
	border       : solid 1px #ddd;
	top          : 50%;
	left         : 50%;
	width        : 30px;
	height       : 30px;
	z-index      : 2147483647;
	border-radius: 6px;
}

.mosaLoadingMini img {
	position   : relative;
	float      : left;
	margin-top :  5px;
	margin-left:  5px;
    width      : 30px;
	height     : 30px;
}

#access-loading {
	position      : fixed;
	top           : 0;
	left          : 0;
	width         : 100%;
	height        : 100%;
	z-index       : 9999;
	display       : none;
	align-items   : center;
	justify-content: center;
	background    : rgba(255, 255, 255, 0.35);
}

.access-loading-spinner {
	width         : 44px;
	height        : 44px;
	border        : 4px solid #d5e0ec;
	border-top-color: #1567b3;
	border-radius : 50%;
	animation     : access-loading-rotate 0.85s linear infinite;
}

@keyframes access-loading-rotate {
	from { transform: rotate(0deg); }
	to   { transform: rotate(360deg); }
}

