.loader {
  align-items: center;
  background: #f6f1eb;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}
.loader::after {
  content: "";
  animation: loader 0.5s linear infinite;
  border: 1px solid #c39b62;
  border-radius: 50%;
  border-right: 1px solid rgba(161, 161, 161, 0.2);
  border-top: 1px solid rgba(161, 161, 161, 0.2);
  height: 70px;
  width: 70px;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}/*# sourceMappingURL=loader.css.map */