body {
	margin: 0;
	padding: 0;
}

.animation-area {
	background: linear-gradient(rgb(176, 208, 211), rgb(209, 233, 235));
	width: 100vw;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.box-area {
	position: absolute;
	top: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
}

	.box-area li {
		position: absolute;
		display: block;
		list-style: none;
		width: 600px;
		height: 150px;
		right: -600px;
		border-radius: 150px 150px 0 0;
		background: rgba(255,255,255,0.2);
		animation: animate 40s linear infinite;
		background: linear-gradient(180deg,rgba(255,255,255,0.35) 0,rgba(255,255,255,0) 100%);
	}

	.box-area.level1 li:nth-child(1) {
		top: 8%;
		animation-duration: 50s;
		width: 380px;
		height: 60px;
		right: -380px;
		border-radius: 60px 60px 0 0;
	}

	.box-area.level1 li:nth-child(2) {
		top: 13%;
		animation-duration: 52s;
		animation-delay: 10.4s;
		width: 180px;
		height: 60px;
		right: -180px;
		border-radius: 60px 60px 0 0;
	}

	.box-area.level1 li:nth-child(3) {
		top: 27%;
		animation-duration: 36s;
		animation-delay: 4s;
		width: 200px;
		height: 66px;
		right: -200px;
		border-radius: 66px 66px 0 0;
	}

	.box-area.level1 li:nth-child(4) {
		top: 33%;
		animation-duration: 30s;
		animation-delay: 2s;
		width: 210px;
		height: 70px;
		right: -210px;
		border-radius: 70px 70px 0 0;
	}

	.box-area.level1 li:nth-child(5) {
		top: 42%;
		animation-duration: 28s;
		animation-delay: 4s;
		width: 560px;
		height: 90px;
		right: -560px;
		border-radius: 90px 90px 0 0;
	}

	.box-area.level1 li:nth-child(6) {
		top: 48%;
		animation-duration: 32s;
		animation-delay: 12s;
		width: 380px;
		height: 94px;
		right: -380px;
		border-radius: 94px 94px 0 0;
	}

	.box-area.level1 li:nth-child(7) {
		top: 57%;
		animation-duration: 24s;
		width: 400px;
		height: 100px;
		right: -400px;
		border-radius: 100px 100px 0 0;
	}

	.box-area.level1 li:nth-child(8) {
		top: 59%;
		animation-duration: 30s;
		animation-delay: 8s;
		width: 440px;
		height: 110px;
		right: -440px;
		border-radius: 110px 110px 0 0;
	}

	.box-area.level1 li:nth-child(9) {
		top: 78%;
		animation-duration: 20s;
	}

	.box-area.level1 li:nth-child(10) {
		top: 88%;
		animation-duration: 18s;
		animation-delay: 12s;
	}


/* cerberus Overrides */
body.external-page .external-page-body {
	border-radius: 44px;
	box-shadow: 0 0 0 0 transparent;
	background-color: #fff;
	background-color: rgba(255, 255, 255, 1);
	margin-bottom: 12px;
	overflow: hidden;
}

body.external-page .copyright {
	color: #454545;
	text-shadow: none;
}

body.external-page .footer-links {
	color: #454545;
	text-shadow: none;
}

	body.external-page .footer-links a {
		color: inherit;
		text-shadow: inherit;
		opacity: 0.6;
	}

		body.external-page .footer-links a:hover {
			text-decoration: underline;
		}


@keyframes animate {
	0% {
		transform: translateX(0);
	}

	100% {
		transform: translateX(-3000px);
	}
}
