.fz_page-loader {
	display:none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: rgba(0,0,0,.9);
	height: 100%;
	z-index: 2600;
}
.loading-container {
	width: 100%;
	max-width: 520px;
	text-align: center;
	font-size:70px;
	color: #fff;
	position: absolute;
	margin: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.loading-container:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 3px;
	background-color: #fff;
	bottom: 0;
	left: 0;
	border-radius: 10px;
	-webkit-animation: movingLine 2.4s infinite ease-in-out;
    animation: movingLine 2.4s infinite ease-in-out;
}

@-webkit-keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }
  33.3%, 66% {
    opacity: 0.8;
    width: 100%;
  }
  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}

@keyframes movingLine {
  0% {
    opacity: 0;
    width: 0;
  }
  33.3%, 66% {
    opacity: 0.8;
    width: 100%;
  }
  85% {
    width: 0;
    left: initial;
    right: 0;
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
.loading-text {
  font-size: 5vw;
  line-height: 64px;
  letter-spacing: 10px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-evenly;
}
.loading-text span {
  -webkit-animation: moveLetters 2.4s infinite ease-in-out;
          animation: moveLetters 2.4s infinite ease-in-out;
  transform: translatex(0);
  position: relative;
  display: inline-block;
  opacity: 0;
  text-shadow: 0px 2px 10px rgba(46, 74, 81, 0.3);
}

@-webkit-keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
	}
  33.3%, 66% {
    transform: translateX(0);
    opacity: 1;
	}
  100% {
    transform: translateX(15vw);
    opacity: 0;
	}
}

@keyframes moveLetters {
  0% {
    transform: translateX(-15vw);
    opacity: 0;
	}
  33.3%, 66% {
    transform: translateX(0);
    opacity: 1;
	}
  100% {
    transform: translateX(15vw);
    opacity: 0;
	}
}