:root {
  --white: 255, 255, 255;
  --black: 0, 0, 0;
  --dark-text: 61, 61, 61;
  --content-color: 116, 116, 116;
  --box-bg: 249, 249, 249;
  --auth-bg: 240, 242, 241;
  --success-color: 39, 125, 42;
  --error-color: 245, 58, 58;
  --rate-color: 255, 185, 49;
  --secondary-color: 250, 177, 69;
  --dashed-line: 232, 232, 232;
}

.xt-loading {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  z-index: 99;
  background-color: rgb(var(--white));
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: all 250ms ease;
}
.xt-loading.true {
  opacity: 1;
  pointer-events: all;
}
.xt-loading .loading-container .loading-icon i {
  font-size: 2rem;
  color: rgb(var(--black));
}/*# sourceMappingURL=style.css.map */