body {
  margin: 0;
  padding: 0;
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: Helvetica, "sans-serif";
  background-color: #343a40;
  color: #5e6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

.splash-screen span {
  color: #ddd;
  transition: none !important;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: larger;
}

.splash-screen img {
  margin-left: calc(100vw - 100%);
  margin-bottom: 30px;
  height: 50px !important;
}

[data-theme="dark"] .splash-screen {
  background-color: #151521;
  color: #92929f;
}

[data-theme="dark"] .splash-screen span {
  color: #92929f;
}

#root {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}


.loader-icon {
  width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: 
    radial-gradient(farthest-side,#63b76a 94%,#0000) top/6px 6px no-repeat,
    conic-gradient(#0000 30%,#63b76a);
  -webkit-mask: radial-gradient(farthest-side,#0000 calc(100% - 6px),#000 0);
  animation: loadericon2022 1s infinite linear;
}
@keyframes loadericon2022 { 
  100%{transform: rotate(1turn)}
}