@keyframes hideLoader {
	0% {
		width: 100%;
		height: 100%
	}
	100% {
		width: 0;
		height: 0
	}
}

body>div.loader {
	position: fixed;
	background: #fff;
	width: 100%;
	height: 100%;
	z-index: 1071;
	opacity: 0;
	transition: opacity .5s ease;
	overflow: hidden;
	pointer-events: none;
	display: flex;
	align-items: center;
	justify-content: center
}

body:not(.loaded)>div.loader {
	opacity: 1
}

body:not(.loaded) {
	overflow: hidden
}

body.loaded>div.loader {
	animation: hideLoader .5s linear .5s forwards
}

.loading-animation {
  margin: 100px auto 0;
  width: 70px;
  text-align: center;
}

.loading-animation > div {
  width: 18px;
  height: 18px;
  background-color: #E45F6B;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.loading-animation .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #E45F6B;
}

.loading-animation .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #1B1F3B;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% {
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}
