#global-loader .loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; 
}

#global-loader .loader {
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

#global-loader .loader-wrapper.over-top {
  z-index: 1000;
}

#global-loader .stripes {
  width: 50px;
  text-align: center;
}

#global-loader .stripes span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #001dff;
  margin-right: 3px;
}

#global-loader .stripes span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}

#global-loader .stripes span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}

#global-loader .stripes span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}

#global-loader .stripes span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}

.global-hide {
  display: none;
}

@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}