.material-symbols-rounded {
  font-variation-settings: "FILL" 1, "wght" 400, "GRAD" 0, "opsz" 24;
}

.loading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.loading-box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.loading-text {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  border-radius: 4px;
  padding: 12px 16px;
  color: #666;
  box-shadow: 0 0 1px 0 rgba(33, 33, 33, 0.16);
}

.spinner {
  position: relative;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  transform-origin: center;
}
.spinner.small {
  height: 20px;
  width: 20px;
}
.spinner.large {
  height: 60px;
  width: 60px;
}
.spinner .spinner-circle {
  transform-origin: center;
}

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