.LoadingWrapper {
  height: 100vh;
  position: relative;
  width: 100vw;
}

.LoadingWrapper::before {
  background-color: #fff;
  content: "";
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 1000;
}

.LoadingWrapper__content {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1001;
}

.LoadingWrapper__title {
  color: #525252;
  font-size: 42px;
  margin: 0;
  margin-bottom: 42px;
  padding: 0;
  position: relative;
}

.LoadingWrapper__title::before {
  border-bottom: 1px var(--basic-color) solid;
  content: "";
  max-width: 75vw;
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 75%;
}

.LoadingWrapper__description * {
  font-size: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
/*# sourceMappingURL=style.css.map */