/* Splash screen loader styles */
.spinner-container {
	display: inline-block;
	text-align: center;
}

.bounce-dot {
	width: 15px;
	height: 15px;
	background-color: #f15a2e;
	border-radius: 100%;
	display: inline-block;
	animation: sk-bouncedelay 1.6s infinite ease-in-out both;
	margin: 0 0.1rem;
}

.bounce1 {
	animation-delay: -0.5s;
}

.bounce2 {
	animation-delay: -0.3s;
}

.bounce3 {
	animation-delay: -0.1s;
}

@keyframes sk-bouncedelay {
	0%,
	80%,
	100% {
		transform: scale(0);
	}
	40% {
		transform: scale(1);
	}
}

/* Fade out animation for splash screen */
.splash-fadeout {
	animation: fadeOut 1s ease-out forwards;
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
