@charset "UTF-8";

/* CSS Document */

body {
	font-size: 14px;
	line-height: 1.85em;
}

/*====================================

	#app_top

====================================*/

#app_top {
	width: 100%;
	margin: 0 auto;
	padding: 50px 0 0 0;
}

/*====================================

	#app_sd

====================================*/

#app_sd {
	width: 100%;
	margin: 0 auto;
}

/*====================================

	loading

====================================*/

.spinner {
	width: 40px;
	height: 40px;
}

/*====================================

	header

====================================*/

header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100!important;
}
header .inner {
	width: 100%;
	margin: 0 auto;
	position: relative;
	background: #0f0;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	padding: 12px;
}
header .logo {
	width: 120px;
}
header .nav-container {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: -1;
	background: #1f2227;
	opacity: 0;
	transition: all 0.2s ease;
}
header .nav-container ul {
	width: 100%;
	padding: 0;
}
header .nav-container ul li {

}
header .nav-container ul li:nth-child(1) a {
	transition-delay: 0.2s;
}
header .nav-container ul li:nth-child(2) a {
	transition-delay: 0.3s;
}
header .nav-container ul li:nth-child(3) a {
	transition-delay: 0.4s;
}
header .nav-container ul li:nth-child(4) a {
	transition-delay: 0.5s;
}
header .nav-container ul li:nth-child(5) a {
	transition-delay: 0.6s;
}
header .nav-container ul li:nth-child(6) a {
	transition-delay: 0.7s;
}
header .nav-container ul li:nth-child(7) a {
	transition-delay: 0.8s;
}
header .nav-container ul li:not(:first-child) {
	margin-left: 0;
}
header .nav-container ul li a {
	opacity: 0;
	color: #fff;
	font-weight: 600;
	transition: all 0.2s ease;
}
header .nav-open {
	position: fixed;
	right: 8px;
	top: 8px;
	display: block;
	width: 48px;
	height: 48px;
	cursor: pointer;
	z-index: 9999;
	border-radius: 50%;
	background: #00f;
}
header .nav-open i {
	display: block;
	width: 20px;
	height: 2px;
	background: #1f2227;
	border-radius: 2px;
	margin-left: 14px;
}
header .nav-open i:nth-child(1) {
	margin-top: 18px;
}
header .nav-open i:nth-child(2) {
	margin-top: 4px;
	opacity: 1;
}
header .nav-open i:nth-child(3) {
	margin-top: 4px;
}
header #nav:checked + .nav-open {
	transform: rotate(45deg);
}
header #nav:checked + .nav-open i {
	background: #fff;
	transition: transform 0.2s ease;
}
header #nav:checked + .nav-open i:nth-child(1) {
	transform: translateY(6px) rotate(180deg);
}
header #nav:checked + .nav-open i:nth-child(2) {
	opacity: 0;
}
header #nav:checked + .nav-open i:nth-child(3) {
	transform: translateY(-6px) rotate(90deg);
}
header #nav:checked ~ .nav-container {
	z-index: 9990;
	opacity: 1;
}
header #nav:checked ~ .nav-container ul li a {
	opacity: 1;
	transform: translateY(0);
}
header nav .hidden {
	display: none;
}

/*====================================

	breadcrumbs

====================================*/

.breadcrumbs {
	background: #098;
}
.breadcrumbs ol {
	display: flex;
	flex-wrap:wrap;
	gap: .25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.breadcrumbs li+li::before {
	content: "›";
	margin: 0 .25rem;
	opacity: .6;
}
.breadcrumbs a,
.breadcrumbs p {
	text-decoration: none;
	font-size: 80%;
	display: inline-block;
}
.breadcrumbs [aria-current="page"] {
	font-weight: 600;
}

/*====================================

	footer

====================================*/

footer {
	background: #333;
	padding: 20px 12px;
}
footer small {
	color: #fff;
	width: 100%;
	text-align: center;
	font-size: 80%;
	display: block;
}

