.ss-container-008834b7 {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: #000;
	border-radius: 10px;
}

.ss-sun-008834b7 {
	position: absolute;
	border-radius: 50%;
	z-index: 10;
}

.ss-orbit-008834b7 {
	position: absolute;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.1);
	animation: ss-spin-008834b7 linear infinite;
	z-index: 5;
}

.ss-planet-008834b7 {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 50%;
}

@keyframes ss-spin-008834b7 {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}