body {
  margin: 0;
}

html {
  overflow: hidden scroll;
}

#loading-bg {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--initial-loader-bg, #fff);
  block-size: 100%;
  inline-size: 100%;
}

.loading {
  position: relative;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  block-size: 60px;
  inline-size: 60px;
}

.spinner-ring {
  position: absolute;
  border: 4px solid rgba(0, 0, 0, 6%);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  border-inline-start-color: var(--initial-loader-color, #00477a);
  inset: 0;
}

.spinner-icon {
  border-radius: 50%;
  block-size: 28px;
  inline-size: 28px;
}

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