/*!
SVG Spinners
URL: https://github.com/n3r4zzurr0/spinner-wrappers
License: MIT © Utkarsh Verma
License URI: https://opensource.org/licenses/mit-license.php
*/

.svg-spinner {
	content: "";
	position: fixed;
	z-index: 9700;
	display: block;
	top: 0;
	left: 0;
	margin: auto;
	width: 100%;
	height: 100vh;
	background: var(--c-primary-150);
	transition: all 1s ease-out;
	/* クリック無効 */
	pointer-events: none;
	cursor: none;
}

/* ローディングスピナー */
.svg-spinner>img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 60px;
	height: 60px;
	transition: all 0.5s ease-out;
	/* anime : name | duration | easing | delay | count */
	/* animation: spinner-scaleout 1s ease-in-out 0s infinite; */
}

/* ロードアニメーション */
/* @keyframes spinner-scaleout {
0% {
transform: scale(0);
}

100% {
transform: scale(1.0);
opacity: 0;
}
} */

.svg-spinner.is-loaded {
	opacity: 0;
	display: none;
	visibility: hidden;
}