:root {
}

html,
body {
  margin: 0;
  padding: 0;
}

html.loading,
body.loading {
  overflow: hidden;
}

#global-loader {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
}

.preloader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
}

.load {
  position: absolute;
  width: 100px;
  height: 80px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.gear {
  position: absolute;
  z-index: -10;
  width: 40px;
  height: 40px;
}

.one {
  animation: spin 3s infinite;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.two {
  left: 36px;
  top: -10px;
  width: 76px;
  height: 76px;
  animation: spin-reverse 3s infinite;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.three {
  top: 34px;
  left: -20px;
  width: 60px;
  height: 60px;
  animation: spin-reverse 3s infinite;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes spin-reverse {
  100% {
    transform: rotate(-360deg);
  }
}
