html,
body,
main,
.page-host,
section {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Heebo", sans-serif;
  font-weight: 400;
  color: #464d69;
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

body,
.theme-light body {
  margin: 0;
}

/*
div.body-loader,
.theme-light div.body-loader {
  background-color: #000077;
  width: 100vw;
  height: 100vh;

  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 100pt;
  text-align: center;
  line-height: 110px;
}

@media only screen and (max-width: 480px) {

  div.body-loader,
  .theme-light div.body-loader {
    font-size: 75pt;
  }
}

@media only screen and (max-width: 320px) {

  div.body-loader,
  .theme-light div.body-loader {
    font-size: 65pt;
  }
}

.loader-container {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes wave-animation {
  0% {
    background-position: 0 bottom;
  }

  100% {
    background-position: 200px bottom;
  }
}

@keyframes shade {
  0% {
    opacitiy: 0.2;
    background-position-x: -500%;
  }

  100% {
    opacity: 1;
    background-position-x: 500%;
  }
}

.loader-loading {
  height: 170px;
  bottom: 0;
  display: block;
  background-color: #000077;
}

.loader-loading#loader-loading {
  background-image: url("/images/loader.png");
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0px 0px rgba(255, 255, 255, 0.06);
  animation: wave-animation 1s infinite linear;
  background-size: 200px 0px;
  background-repeat: repeat-x;
  opacity: 1;
}

.loader-loading-shadow {
  height: 100%;
  opacity: 0;
  display: block;
  position: absolute;
  color: #000077;
  bottom: 0;
  z-index: 1000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #000077;
  background: linear-gradient(90deg, #ffffff, #1957DB, #ffffff);
  background-size: 70% 100%;
  background-repeat: no-repeat;
  -moz-background-clip: text;
  -o-background-clip: text;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.loader-loading-shadow-animate {
  animation: shade 1.7s linear;
}

.loader-subtitle {
  color: #ffffff;
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

*/

.body-loader {
	background: linear-gradient(-45deg, #fc00ff, #fc00ff, #fc00ff, #fc00ff,#d81efa, #9757f1, #6186ea, #37aae5, #19c5e1, #06d5de, #00dbde, #00dbde, #00dbde);
	background-size: 244% 333%;
	animation: gradient 5s linear infinite;
	height: 100vh;
  overflow: hidden;
}

@keyframes gradient {
	0% {
		background-position: 50% 0%;
	}
	50% {
		background-position: 50% 100%;
	}
	100% {
		background-position: 50% 0%;
	}
}

.loader-logo {
  width: 180px;
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}