.custom-spinner {
	font-size: 4em;
	margin-top: 78px;
	margin-bottom: 20px;
	color: #2CB98D;
}

.custom-spinner-backdrop {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1020;
	background: rgba(0, 0, 0, 0.5) no-repeat center center fixed;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	outline: 0;
}

.custom-spinner-containter {
	background: transparent;
	border: none;
	box-shadow: none;
	padding: 0;
}

.custom-spinner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.image-container {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 120px;
	height: 120px;
}

.image-container::before {
	content: '';
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 3px solid rgba(0, 226, 114, 0.25);
	border-top-color: #00e272;
	animation: spinner-ring 1s linear infinite;
}

.image-loading {
	width: 72px;
	height: 72px;
	object-fit: contain;
	animation: spinner-pulse 1.4s ease-in-out infinite;
}

@keyframes spinner-ring {
	to {
		transform: rotate(360deg);
	}
}

@keyframes spinner-pulse {
	0%, 100% {
		opacity: 0.6;
		transform: scale(0.92);
	}
	50% {
		opacity: 1;
		transform: scale(1);
	}
}

.spinner p {
	font-size: 22px;
	color: #2CB98D;
}
