html, body {
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
}
body {
	background-color: #333;
	background-image: url('../img/leaves.png'), url('../img/monkeys.png'), url('../img/forest.png');
	background-repeat: no-repeat, no-repeat, no-repeat;
	background-attachment: fixed, fixed, fixed;
	background-position: 75% 85%, 75% 35%, 50% 50%;
	background-size: cover, 145%, cover;
}
.loadie {
	z-index: 9999;
	background-color: #4acc8e;
}

.showbox {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 99999999999999999999;
	background-color: rgba(32, 32, 32, 1);
}

.loading-text {
	color: #B4B4B4;
	font-size: 16px;
}

.loader {
	position: relative;
	margin: 0 auto;
	width: 80px;
	top: 50%;
	margin-top: -40px;
	&:before {
		content: '';
		display: block;
		padding-top: 100%;
	}
}

.fond {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.contener_general {
	-webkit-animation: animball_two 1s infinite;
	-moz-animation: animball_two 1s infinite;
	-ms-animation: animball_two 1s infinite;
	animation: animball_two 1s infinite;
	width: 44px;
	height: 44px;
}

.contener_mixte {
	width: 44px;
	height: 44px;
	position: absolute;
}

.ballcolor {
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.ball_1,
.ball_2,
.ball_3,
.ball_4 {
	position: absolute;
	-webkit-animation: animball_one 1s infinite ease;
	-moz-animation: animball_one 1s infinite ease;
	-ms-animation: animball_one 1s infinite ease;
	animation: animball_one 1s infinite ease;
}

.ball_1 {
	background-color: #cb2025;
	top: 0;
	left: 0;
}

.ball_2 {
	background-color: #f8b334;
	top: 0;
	left: 24px;
}

.ball_3 {
	background-color: #00a096;
	top: 24px;
	left: 0;
}

.ball_4 {
	background-color: #97bf0d;
	top: 24px;
	left: 24px;
}

@-webkit-keyframes animball_one {
	0% {
		position: absolute;
	}
	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}
	100% {
		position: absolute;
	}
}

@keyframes animball_one {
	0% {
		position: absolute;
	}
	50% {
		top: 12px;
		left: 12px;
		position: absolute;
		opacity: 0.5;
	}
	100% {
		position: absolute;
	}
}

@-webkit-keyframes animball_two {
	0% {
		-webkit-transform: rotate(0deg) scale(1);
		transform: rotate(0deg) scale(1);
	}
	50% {
		-webkit-transform: rotate(360deg) scale(1.3);
		transform: rotate(360deg) scale(1.3);
	}
	100% {
		-webkit-transform: rotate(720deg) scale(1);
		transform: rotate(720deg) scale(1);
	}
}

@keyframes animball_two {
	0% {
		transform: rotate(0deg) scale(1);
	}
	50% {
		transform: rotate(360deg) scale(1.3);
	}
	100% {
		transform: rotate(720deg) scale(1);
	}
}
