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

.inn-loader img {
	animation: displaying-text 1000ms ease-in-out infinite;
}

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

	50% {
		opacity: 0.5;
	}

	100% {
		opacity: 1;
	}
}