@import "../../helpers/index.scss";

@keyframes loaderRotation {
  0% { transform: rotateZ(0deg); }
  100% { transform: rotateZ(360deg); }
}

.loader {
  display: inline-block;
  width: 80px;
  height: 80px;
  animation: loaderRotation 0.5s linear infinite;
  animation-delay: 0s;
}

.loader__container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: white;
}