@-webkit-keyframes cspin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes spin-logo {
	0% {
		-webkit-transform: rotate(0deg);
	}
	50% {
		-webkit-transform: rotate(360deg);
	}
	100% {
		-webkit-transform: rotate(0deg);
	}
}

@keyframes cspin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
@keyframes spin-logo {
	0% {
		transform: rotate(0deg);
	}
	50% {
		transform: rotate(360deg);
	}
	100% {
		transform: rotate(0deg);
	}
}

body {
	margin: 0;
	padding: 0;
}
.splash-screen {
	position: absolute;
	z-index: 1000;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	font-family: Poppins, Helvetica, 'sans-serif';
}

.splash-screen img {
	margin-left: calc(100vw - 100%);
	margin-bottom: 0px;
	width: 20%;
	-webkit-animation: spin-logo 1400ms linear infinite;
	animation: spin-logo 2000ms linear infinite;
	width: 32px;
	margin: auto;
}
.loader-spiner {
	position: absolute;
	border: 3px solid #10cfbd;
	border-radius: 50%;
	border-top: 3px solid #e7e7e7;
    width: 58px;
    height: 58px;
	-webkit-animation: cspin 800ms linear infinite;
	animation: cspin 800ms linear infinite;
}
.loader-spiner-folks{
	position: absolute;
	border: 3px solid #ffca09;
	border-radius: 50%;
	border-top: 3px solid #e7e7e7;
	width: 58px;
    height: 58px;
	-webkit-animation: cspin 800ms linear infinite;
	animation: cspin 800ms linear infinite;
}
.splash-screen.app {
	position: relative;
}
