@keyframes lds-cube {
  0% {
    -webkit-transform: scale(1.27);
    transform: scale(1.27);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes lds-cube {
  0% {
    -webkit-transform: scale(1.27);
    transform: scale(1.27);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.loader-cube {
	width: 60px;
	margin: 0 auto;
}
.loader-image {
  width: 120px;
  margin: 10px auto 0 auto;
}
.lds-cube {
  position: relative;
}
.lds-cube div {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50px;
  top: 10px;
  left: 10px;
  background: #59b057;
  -webkit-animation: lds-cube 1.3s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  animation: lds-cube 1.3s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  -webkit-animation-delay: -0.39s;
  animation-delay: -0.39s;
}
.lds-cube div:nth-child(2) {
  top: 10px;
  left: 110px;
  background: #90ea8b;
  -webkit-animation-delay: -0.26s;
  animation-delay: -0.26s;
}
.lds-cube div:nth-child(3) {
  top: 110px;
  left: 110px;
  background: #59b057;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}
.lds-cube div:nth-child(4) {
  top: 110px;
  left: 10px;
  background: #90ea8b;
  -webkit-animation-delay: -0.13s;
  animation-delay: -0.13s;
}
.lds-cube {
  width: 60px !important;
  height: 60px !important;
  -webkit-transform: translate(-30px, -30px) scale(0.3) translate(30px, 30px);
  transform: translate(-30px, -30px) scale(0.3) translate(30px, 30px);
}

/* PRE LOADER */
.preloader {
	display: flex;
	align-items: center;
  justify-content: center;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fefefe;
	z-index: 99999;
	height: 100%;
	width: 100%;
	overflow: hidden !important;
}
.preloader-inner {
	width: 50%;
	height: 50%;
	text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}