﻿.loader-interstitial {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;	
}

.loader-interstitial > p {
	margin-top: 32px;
	font-size: 20px;
	line-height: 30px;
	color: #212529;
	text-align: center;
}

	.loader-interstitial > svg path:nth-child(3),
	.loader-interstitial > svg path:nth-child(4),
	.loader-interstitial > svg path:nth-child(5) {
		fill: #21CE99;
		fill: var(--primary-color);
	}

@media(min-width: 733px) {
	.loader-interstitial > p {
		margin-top: 48px;
	}
}

.rotate {
	animation: rotation 2s infinite ease;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(359deg);
	}
}
