.loader-wrapper {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	background: #FFFFFF;
	width: 100%;
	height: 100%;
	text-align: center;
}

.loader, .pulser, .pulser2, .pulser3 {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}



.loaded .loader-wrapper, 
.loaded .loader {
	opacity: 0;
	-webkit-transition: ease-out 0.8s;
	-moz-transition: ease-out 0.8s;
	-o-transition: ease-out 0.8s;
	transition: ease-out 0.8s;

}

.loaded .loader-wrapper {
  visibility: hidden;
}


.pulser {
	border-radius: 100%;
	background: rgba(154, 115, 51, .5);
	width: 50px;
	height: 50px;
	mix-blend-mode: multiply;
	-webkit-animation: pulse 1s ease infinite;
			animation: pulse 1s ease infinite;
}

@keyframes pulse {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(1);
		opacity: 0;
	}
}


.pulser2 {
	border: 2px solid rgba(154, 115, 51, .35);
	background: rgba(154, 115, 51, 0);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	mix-blend-mode: multiply;
	-webkit-animation: pulse2 1.5s ease infinite;
			animation: pulse2 1.5s ease infinite;
}

@keyframes pulse2 {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(1.5);
		opacity: 0;
	}
}


.pulser3 {
	border: 1px solid rgba(154, 115, 51, .35);
	background: rgba(154, 115, 51, 0);
	width: 50px;
	height: 50px;
	border-radius: 100%;
	mix-blend-mode: multiply;
	-webkit-animation: pulse3 2s ease infinite;
			animation: pulse3 2s ease infinite;
}

@keyframes pulse3 {
	0% {
		transform: scale(0);
		opacity: 1;
	}
	100% {
		transform: scale(2);
		opacity: 0;
	}
}