body, html {
  height: 100%;
  width: 100%;
  background: #dcdcdc;
  margin: 0;
  padding: 0;
  position: relative;
}

img {
  margin: 0 auto;
  display: block;
}

/*PRELOADING------------ */
#overlayer {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.8);
}

.preloader {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.preloader p {
  position: sticky;
  top: 60%;
  margin: auto 0;
  width: 100%;
  height: 90px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  z-index: 1001;
}

.loader {
  display: inline-block;
  width: 80px;
  height: 80px;
  /* position: fixed; */
  z-index: 1001;
  /* border: 2px dashed #Fff; */
  background-image: url(../assets/icons/icon.png);
  background-position: center;
  background-size: contain;
  /* border-radius: 50%;
  top: 50%;
  left: 0;
  right: 0; */
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: transparent;
  animation: loader-inner 2s infinite ease-in;
  border-radius: 50%;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}
