

/* LOADER */
.custom-loader-backdrop {
	background: rgba(255,255,255,0.15) !important;
	backdrop-filter: blur(8px) !important;
	-webkit-backdrop-filter: blur(8px) !important;
}
.custom-loader-popup {
	background: rgba(255,255,255,0.3) !important;
	backdrop-filter: blur(16px) !important;
	-webkit-backdrop-filter: blur(16px) !important;
	border: 1px solid rgba(255,255,255,0.3) !important;
	border-radius: 20px !important;
	box-shadow: 0 8px 32px rgba(0,0,0,0.1), 0 2px 8px rgba(0,0,0,0.05) !important;
}
.custom-loader-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
}
.custom-loader-container {
	position: relative;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.custom-loader-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	animation: pulse-scale 2s ease-in-out infinite;
	z-index: 2;
	background: white;
	padding: 5px;
	box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}
.custom-loader-ring {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #e8e8e8;
}
.custom-loader-ring::before {
	content: '';
	position: absolute;
	top: -3px;
	left: -3px;
	right: -3px;
	bottom: -3px;
	border-radius: 50%;
	border: 3px solid transparent;
	border-top-color: #00b4d8;
	border-right-color: #0077b6;
	animation: spin 1s linear infinite;
}
.custom-loader-progress {
	display: flex;
	gap: 5px;
	margin-top: 18px;
}
.custom-loader-bar {
	width: 6px;
	height: 20px;
	background: linear-gradient(180deg, #00b4d8, #0077b6);
	border-radius: 3px;
	animation: bar-bounce 1s ease-in-out infinite;
}
.custom-loader-bar:nth-child(1) { animation-delay: 0s; }
.custom-loader-bar:nth-child(2) { animation-delay: 0.1s; }
.custom-loader-bar:nth-child(3) { animation-delay: 0.2s; }
.custom-loader-bar:nth-child(4) { animation-delay: 0.3s; }
.custom-loader-bar:nth-child(5) { animation-delay: 0.4s; }
.custom-loader-text {
	color: #555;
	font-size: 13px;
	margin-top: 12px;
	font-weight: 500;
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}
@keyframes pulse-scale {
	0%, 100% { transform: scale(1); }
	50% { transform: scale(1.08); }
}
@keyframes bar-bounce {
	0%, 100% { transform: scaleY(0.5); opacity: 0.5; }
	50% { transform: scaleY(1); opacity: 1; }
}
