@charset "utf-8";

.pages {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.dli-loading {
  display: inline-block;
  vertical-align: middle;
  color: #666;
  line-height: 1;
  width: 100px;
  height: 100px;
  border: 5px solid currentColor;
  border-top-color: rgba(102, 102, 102, 0.3);
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotate 1s linear infinite;
}

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