#dob-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.5);
	z-index: 9999; /* High z-index to ensure it's on top */
	display: none;
	justify-content: center;
	align-items: center;
}

#dob-ajax-loader {
	text-align: center;
	background: #fff;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.dob-loader {
	width: 84px;
	height: 84px;
	position: relative;
	overflow: hidden;
	margin: 0 auto; /* Center the loader horizontally */
}

.dob-loader:before,
.dob-loader:after {
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #87009b; /* Visible color for the loader */
	transform: translate(-50%, 100%) scale(0);
	animation: push 2s infinite ease-in;
}

.dob-loader:after {
	animation-delay: 1s;
}

@keyframes push {
	0% {
		transform: translate(-50%, 100%) scale(1);
	}
	15%, 25% {
		transform: translate(-50%, 50%) scale(1);
	}
	50%, 75% {
		transform: translate(-50%, -30%) scale(0.5);
	}
	80%, 100% {
		transform: translate(-50%, -50%) scale(0);
	}
}
