noscript {
  position: absolute;
  top: 10%;
  font-weight: 600;
}

/* KEYFRAMES */
@keyframes spin {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(359deg);
  }
}

/* GRID STYLING */
* {
  box-sizing: border-box;
}

body {
  background-color: var(--surface-ground, #f7f7f7);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  height: 100vh;
  margin: 0;
  padding: 0;
}

body::after {
  background: var(--dtl-logo-base64) no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 72px;
  width: 81px;
  position: absolute;
  right: 1em;
  bottom: 1em;
  opacity: 0.4;
  z-index: 1234;
}

.spinner-box {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 300px;
  position: relative;
}

.spinner-box::after {
  background: var(--tsm-logo-ghost-base64) no-repeat;
  background-size: cover;
  content: '';
  display: inline-block;
  height: 46px;
  width: 108px;
  margin: -24px -59px 0 0;
  position: absolute;
  top: 50%;
  right: 50%;
}

.circle-border {
  animation: spin 0.8s linear 0s infinite;
  background: rgb(197, 47, 51);
  background: linear-gradient(
    0deg,
    rgba(197, 47, 51, 0.1) 33%,
    rgba(197, 47, 51, 1) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  padding: 3px;
  width: 150px;
}

.circle-core {
  background-color: var(--surface-ground, #fafafa);
  border-radius: 50%;
  height: 100%;
  width: 100%;
}

.dark-theme .circle-core {
  background-color: var(--surface-ground, #121212);
}

.dark-theme .app-init-loading-wrapper {
  background-color: var(--surface-ground, #121212);
}
