.mcto-spinner-container {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5); /* or your desired overlay */
}

.mcto-spinner {
	display: flex;
	flex-direction: column;
	align-items: center;
	z-index: 1050;
}

.mcto-spinner-ring {
	position: relative;
	width: 60px;
	height: 60px;
}

	.mcto-spinner-ring::before {
		content: '';
		position: absolute;
		width: 100%;
		height: 100%;
		border-radius: 50%;
		border: 2px solid white;
		border-right-color: transparent; /* transparent slice */
		animation: spin 1s linear infinite;
		box-sizing: border-box;
	}

.mcto-logo {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 17px;
	height: 38px;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.mcto-text {
	margin-top: 12px;
	color: white;
	font-size: 14px;
	font-weight: normal;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}
