@-webkit-keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  50% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  100% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
}

@keyframes line-scale-pulse-out {
  0% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }

  50% {
    -webkit-transform: scaley(1);
    transform: scaley(1);
  }

  100% {
    -webkit-transform: scaley(0.4);
    transform: scaley(0.4);
  }
}
.loaders {
  display: flex;
  justify-content: center;
  align-items: center;
}
.line-scale-pulse-out > div {
  float: left;
  margin: 2px;
  width: 2px;
  height: 19px;
  border-radius: 2px;
  background-color: #ea5947;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: line-scale-pulse-out 0.8s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
  animation: line-scale-pulse-out 0.8s -0.6s infinite cubic-bezier(0.85, 0.25, 0.37, 0.85);
}
.line-scale-pulse-out > div:nth-child(2),
.line-scale-pulse-out > div:nth-child(4) {
  -webkit-animation-delay: -0.2s !important;
  animation-delay: -0.2s !important;
}
.line-scale-pulse-out > div:nth-child(1),
.line-scale-pulse-out > div:nth-child(5) {
  -webkit-animation-delay: -0.4s !important;
  animation-delay: -0.4s !important;
}

.line-scale-pulse-out,
.ball-clip-rotate {
  text-align: center;
}
.page-loading {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999999;
  background: #ffffff;
}
.page-loading .line-scale-pulse-out>div {
  width: 3px;
  height: 40px;
  background-color: #444444;
} 
.page-loading .loader {
  background-color: transparent;
}