<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#loading-area {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 9999999999;
	display: none;
	cursor: default;
}
#loading-area&gt;div {
	text-align: center;
	margin-top: 50vh;
	transform: translateY(-50%);
}
#loading-area&gt;div&gt;div:not(.lds-default) {
	display: block;
	color: white;
	font-weight: 600;
	margin-top: -83px;
}
#loading-area&gt;div .lds-default {
	position: relative;
	width: 128px;
	height: 128px;
	display: inline-block;
}
#loading-area&gt;div .lds-default div {
	position: absolute;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	animation: lds-default 1.2s linear infinite;
}
#loading-area&gt;div .lds-default div:nth-child(1) {
	animation-delay: 0s;
	top: 58px;
	left: 106px;
}
#loading-area&gt;div .lds-default div:nth-child(2) {
	animation-delay: -0.1s;
	top: 36px;
	left: 100px;
}
#loading-area&gt;div .lds-default div:nth-child(3) {
	animation-delay: -0.2s;
	top: 18px;
	left: 82px;
}
#loading-area&gt;div .lds-default div:nth-child(4) {
	animation-delay: -0.3s;
	top: 12px;
	left: 58px;
}
#loading-area&gt;div .lds-default div:nth-child(5) {
	animation-delay: -0.4s;
	top: 18px;
	left: 36px;
}
#loading-area&gt;div .lds-default div:nth-child(6) {
	animation-delay: -0.5s;
	top: 36px;
	left: 18px;
}
#loading-area&gt;div .lds-default div:nth-child(7) {
	animation-delay: -0.6s;
	top: 58px;
	left: 12px;
}
#loading-area&gt;div .lds-default div:nth-child(8) {
	animation-delay: -0.7s;
	top: 82px;
	left: 18px;
}
#loading-area&gt;div .lds-default div:nth-child(9) {
	animation-delay: -0.8s;
	top: 100px;
	left: 36px;
}
#loading-area&gt;div .lds-default div:nth-child(10) {
	animation-delay: -0.9s;
	top: 106px;
	left: 58px;
}
#loading-area&gt;div .lds-default div:nth-child(11) {
	animation-delay: -1s;
	top: 100px;
	left: 82px;
}
#loading-area&gt;div .lds-default div:nth-child(12) {
	animation-delay: -1.1s;
	top: 82px;
	left: 100px;
}
@keyframes lds-default {
	0%, 20%, 80%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.7);
	}
}

#loading-area.show {
	display: block;
}
</pre></body></html>