.no-js .loader-wrap {
  display: none;
}

.js .loader-wrap {
  display: block;
}

/* Después de la detección JS */
.loader-wrap {
  /*background-color: #2f2f2f;*/
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  position: fixed;
  z-index: 9999;
}

.loader-wrap .loader {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  position: absolute;
}

.loader-wrap .loader-logo {
  /*Esto posicionará el logo para la animación */
  margin-bottom: 20px;
  animation-name: logo-animate;
  animation-duration: 0.8s;
  color: #fff;
  text-align: center;
}

.loader-wrap .loader-inner {
  margin: 0 auto;
  width: 76px;
}

.pulse-ball>div:nth-child(0) {
  -webkit-animation: scale 0.80s -0.48s infinite cubic-bezier(.2, .68, .18, 1.08);
  animation: scale 0.80s -0.48s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.pulse-ball>div:nth-child(1) {
  -webkit-animation: scale 0.80s -0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
  animation: scale 0.80s -0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.pulse-ball>div:nth-child(2) {
  -webkit-animation: scale 0.80s -0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
  animation: scale 0.80s -0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.pulse-ball>div:nth-child(3) {
  -webkit-animation: scale 0.80s -0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
  animation: scale 0.80s -0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.pulse-ball>div:nth-child(4) {
  -webkit-animation: scale 0.80s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
  animation: scale 0.80s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.pulse-ball>div {
  background-color: #fff;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin: 2px;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: inline-block;
}

@-webkit-keyframes logo-animate {
  0% {
    transform: translate(0px, -50px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@keyframes logo-animate {
  0% {
    transform: translate(0px, -50px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
  }
}

@-webkit-keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  45% {
    -webkit-transform: scale(0.1);
    transform: scale(0.1);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}