html {
  overflow-x: hidden;
}
.loading-wrapper {
  position: fixed;
  z-index: 99;
  width: 70px;
  height: 70px;
  border-radius: 0.213333333333333rem;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-color: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spinner {
  box-sizing: border-box;
  border-radius: 100%;
  border: 10px solid rgba(255,255,255,0.2);
  animation: circle-2-spin 1s infinite linear;
}
@-moz-keyframes circle-2-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes circle-2-spin {
  100% {
    transform: rotate(360deg);
  }
}
@-o-keyframes circle-2-spin {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes circle-2-spin {
  100% {
    transform: rotate(360deg);
  }
}
