body {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
	background: #ffffff;
}
.loader-circle-9 {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 700px;
	height: 700px;
	background: transparent;
	border: 3px solid #f9e365;
	border-radius: 50%;
	text-align: center;
	line-height: 70px;
	font-family: sans-serif;
	font-size: 12px;
	color: #00eaff;
	text-transform: uppercase;
	box-shadow: 0 0 20px rgba(0, 0, 0, .5);
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.loader-circle-9 img {
	max-width: 600px;
	max-height: 600px;
	object-fit: contain;
	display: block;
	margin: 0 auto;
}
.loader-circle-9:before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	width: 100%;
	height: 100%;
	border: 3px solid transparent;
	border-top: 3px solid #45bbdd;
	border-right: 3px solid #fb628d;
	border-radius: 50%;
	animation: animateC 2s linear infinite;
}
.loader-circle-9 span {
	display: block;
	position: absolute;
	top: calc(50% - 2px);
	left: 50%;
	width: 50%;
	height: 4px;
	background: transparent;
	transform-origin: left;
	animation: animate 2s linear infinite;
}
.loader-circle-9 span:before {
	content: '';
	position: absolute;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: #00eaff;
	top: -6px;
	right: -8px;
	box-shadow: 0 0 20px #00eaff;
}
@keyframes animateC {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes animate {
	0% {
		transform: rotate(45deg);
	}
	100% {
		transform: rotate(405deg);
	}
}

/* Add CSS to hide content initially */
.content {
	display: none;
}

/* Mobile view adjustments */
@media (max-width: 600px) {
	.loader-circle-9 {
		width: 320px;
		height: 320px;
		border-width: 2px;
		line-height: 30px;
		font-size: 10px;
		box-shadow: 0 0 10px rgba(0, 0, 0, .3);
		border-color: red; /* debug border color to visually see if applied */
	}

	.loader-circle-9 img {
		max-width: 270px;
		max-height: 270px;
	}

	.loader-circle-9:before {
		border-width: 2px;
	}

	.loader-circle-9 span {
		height: 3px;
	}

	.loader-circle-9 span:before {
		width: 12px;
		height: 12px;
		top: -4px;
		right: -6px;
		box-shadow: 0 0 12px #00eaff;
	}
}
