.starter-loader {
  top:0;
  left: 0;
  overflow: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  position: fixed;
  transition: all ease-in-out 200ms;
}

.starter-loader-icon {
  top: 50%;
  left: 50%;
  width: 85px;
  height: 85px;
  margin: -42.5px 0 0 -42.5px;
  position: fixed;
  background: url('../img/loader.svg') no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-animation: spin 2000ms infinite linear;
   animation: spin 2000ms infinite linear;
}
