#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20000;
  width: 100%;
  height: 100%;
  overflow: visible;
  background-color: rgba(255, 255, 255, 1);
  text-align: center;
}

body {
	overflow-x: hidden;
}

#preloaderBefore {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 30000;
  width: 100%;
  height: 100%;
  overflow: visible;
  background-color: #FFFFFF;
  text-align: center;
}

#preloaderBefore::before {
  position: absolute;
  font-family: FontAwesome;
  animation: spinner 1s linear 0s infinite;
  -webkit-animation: spinner 1s linear 0s infinite;
  background-image: url(ico-loading.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  width: 42px;
  height: 42px;
  content: "";
  color: red;
  top: 47%;
  margin: 0 auto;
  left: 0px;
  right: 0px;
}
