#root_loading .circle,
* {
  box-sizing: border-box;
}
#root_loading {
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #f4f5f7;
}
#root_loading .loader-div {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}
#root_loading .circle {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background: conic-gradient(#f4f5f7 6deg, #006df5 354deg);
  padding: 5px;
  animation: 1s infinite forwards fpb_rotate;
}
#root_loading .center {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #f4f5f7;
}
#root_loading p {
  font-size: 24px;
}
@keyframes fpb_rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  #root_loading .loader-div {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  #root_loading .circle {
    min-width: 25px;
    height: 25px;
    padding: 3px;
  }
  #root_loading p {
    font-size: 14px;
  }
}
