head, foot {
	display: none;
}

.loading-spinner {
	position: relative;
	display: inline-block;
	width: 64px;
	height: 64px;
	vertical-align: middle;
	background: url(../img/loader.png) 50% 50%/100% 100% no-repeat transparent;
	animation: spin-loader1 1s linear infinite;
}
.loading-spinner:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 8px;
	display: block;
	width: 48px;
	height: 48px;
	vertical-align: middle;
	background: url(../img/loader-reverse.png) 50% 50%/100% 100% no-repeat transparent;
	animation: spin-loader2 1s linear infinite;
}
.loading-spinner:after {
	content: '';
	position: absolute;
	top: 15px;
	left: 15px;
	display: block;
	width: 34px;
	height: 34px;
	vertical-align: middle;
	background: url(../img/loader.png) 50% 50%/100% 100% no-repeat transparent;
	transform: rotate(180deg);
}
.loading-spinner.loading-spinner-2x {
	width: 128px;
	height: 128px;
}
.loading-spinner.loading-spinner-2x:before {
	top: 16px;
	left: 16px;
	width: 96px;
	height: 96px;
}
.loading-spinner.loading-spinner-2x:after {
	top: 32px;
	left: 32px;
	width: 64px;
	height: 64px;
}
.loading-spinner.loading-spinner-light {
	filter: invert(100%);
}

@keyframes spin-loader1 {
	0% { transform: rotate(0); }
	100% { transform: rotate(360deg); }
}
@keyframes spin-loader2 {
	0% { transform: rotate(90deg); }
	100% { transform: rotate(-630deg); }
}

.shc-title, .shc-debug-title > span:first-child {
	font-family: "Vipnagorgialla";
	font-weight: 400 !important;
	font-size: 1.333rem !important;
}
.shc-title {
	line-height: 1rem !important;
	position: relative;
}
.shc-debug-title {
	line-height: 0.5rem !important;
	text-align: center;
	position: relative;
}
.shc-title::before, .shc-debug-title::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/menu.png) 50% 50%/auto 100% no-repeat;
	opacity: 0.6667;
}
.shc-debug-title > span:first-child {
	position: relative;
	top: -0.25rem;
}
.shc-debug-title > span:last-child {
	position: relative;
	top: 0.25rem;
	letter-spacing: 0.333px;
}
.shc-font {
	font-family: "Vipnagorgialla";
}
.shc-font-thin {
	font-family: "Vipnagorgialla Condensed";
}
body {
	position: relative;
	min-height: 100vh;
}
footer {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 6px;
	background: var(--shc-sonic);
	color: white;
	font-size: 11px;
	text-align: center;
}
footer a {
	color: white !important;
}
