body {
  margin: 0;
  /* zoom: 75%; */
  padding: 0;
}

.progress-bar.circular {
  position:relative;
  width:120px;
  height:120px;
  border-radius:50%;
  outline:1px solid rgb(186 186 186 / 50%);
  outline-offset:-1px;
}

.progress-bar.circular .infi-svg-circle{
      stroke-dasharray:346;
      /* stroke-dashoffset:410; */
      transform:rotate(-90deg);
      /* animation:bar-fill 8s linear forwards; */
}

.progress-bar.circular::after,
.inner-circle{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}
.progress-bar.circular::after{
  content:'';
  width:99px;
  height:99px;
  border-radius:inherit;
  outline:inherit;
}

@keyframes bar-fill{
  100%{
      stroke-dashoffset:0;
  }
}

.splash-screen {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #f2f3f8;
  color: #5E6278;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
}

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

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

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

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


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