.inn-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 9999;
}

.inn-loader img {
	animation: displaying-text 1000ms ease-in-out infinite;
	filter: brightness(0) saturate(100%) invert(29%) sepia(58%) saturate(1957%) hue-rotate(327deg) brightness(78%) contrast(86%);
}

@keyframes displaying-text {
	0% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}