@font-face {
	font-family: 'Tamanegi';
	src: url('/fonts/tamanegi_v7.woff2') format('woff2'),
		url('/fonts/tamanegi_v7.eot') format('eot'),
		url('/fonts/tamanegi_v7.ttf') format('truetype');
	font-style: normal;
	font-weight: normal;
}



html body * {
	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 300;
	font-style: normal;
	font-variation-settings: "wdth" 100;
	color: #333;
}
html body h1{
	margin: 10px auto;
	text-align: center;
	font-weight: 900;
}
html body{
	margin: 0;
	min-height: initial;
}
.reslut{
	font-family: "Tamanegi";
	font-size: 24px;
	font-weight: 300;
}
#container{
	width: 1080px;
	margin: 0 auto;
}

#kanjiOptionsContainer label {
	margin: 20px 0;
	position: relative;
	padding: 0 0 0 30px;
	display: block;
}
#kanjiOptionsContainer label input {
	position: absolute;
	left: 4px;
	top: 15px;
}

#loadingLayer{
	display: none;
	position: fixed;
	top: 0; left: 0; width: 100%; height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 9999;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 1.5em;
}

.loader::after {
	content: '';
	width: 40px;
	height: 40px;
	border: 4px solid #fff;
	border-top: 4px solid transparent;
	border-radius: 50%;
	display: inline-block;
	animation: spin 1s linear infinite;
	margin-left: 10px;
	vertical-align: middle;
}

@keyframes spin {
	0%   { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}