@charset "utf-8";

/* ローディングスピナー
---------------------------------------------- */
.history-load-container {
	position: fixed;
	left: 50%;
	top: 50%;
	width: 150px;
	height: 150px;
	margin-left: -75px;
	margin-top: -75px;
	text-align: center;
	z-index: 100000;
}
.history-load-speeding-wheel {
	width: 150px;
	height: 150px;
	margin: 0 auto;
	border: 10px solid #cccccc;
	border-radius: 50%;
	border-left-color: transparent;
	border-right-color: transparent;
	animation: history-load-spin 575ms infinite linear;
		-o-animation: history-load-spin 575ms infinite linear;
		-ms-animation: history-load-spin 575ms infinite linear;
		-webkit-animation: history-load-spin 575ms infinite linear;
		-moz-animation: history-load-spin 575ms infinite linear;
}
@keyframes history-load-spin {
	100%{ transform: rotate(360deg); transform: rotate(360deg); }
}

@-o-keyframes history-load-spin {
	100%{ -o-transform: rotate(360deg); transform: rotate(360deg); }
}

@-ms-keyframes history-load-spin {
	100%{ -ms-transform: rotate(360deg); transform: rotate(360deg); }
}

@-webkit-keyframes history-load-spin {
	100%{ -webkit-transform: rotate(360deg); transform: rotate(360deg); }
}

@-moz-keyframes history-load-spin {
	100%{ -moz-transform: rotate(360deg); transform: rotate(360deg); }
}