/*@import url("https://fonts.googleapis.com/css?family=Roboto:100,100i,300,300i,400,400i,500,500i,700,700i,900,900i");*/

body {
  padding: 0;
  margin: 0;
}

#app-site {
  display: flex;
  width: 100%;
  height: 100vh;
}

.loader {
  position: relative;
  margin: 0 auto;
  width: 60px;
  height: 100vh;

  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;

  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.loader::before {
  content: "";
  background-color: #f8a72d;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  transform: translateX(-50%);
  top: calc(100% / 2 + 30px);
  animation: slideLoad 500ms cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}
.loader.loading::before {
  top: calc(100% / 2 + 60px);
}
@keyframes slideLoad {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 0;
  }
}

.loading {
  width: 120px;
}

/*# sourceMappingURL=loader.css.map */
