/* LOADING PAGE */
.loadingDiv {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 20;
  background-color: white;
}
.loading {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingGifDiv {
  height: 400px;
  width: 400px;
}
.loadingGif {
  height: 100%;
  width: 100%;
}
.loadingGif img {
  height: 100%;
  width: 100%;
}

/* LOADING SCRIPT */
#loadingScreenDiv {
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 20;
  background: rgb(14 14 14 / 0.9);
}
.loadingScreen {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loadingImgDiv {
  height: 50px;
  width: 50px;
}
.loadingImgDiv img {
  height: 100%;
  width: 100%;
}
