.loading-wrapper{
  display: none;
  justify-content: center;
  align-items: center;
  position : fixed;
  width : 100%;
  height: 100%;
  z-index: 100;
}

.loading{
  display: inline-block;
  position : fixed;
  width : 250px;
  height: 250px;
  box-sizing: border-box;
  transition : all ease-in-out 600ms;
  font-size: 0.85rem;
  box-sizing: border-box;
  line-height: 2rem;
  border-radius: 10px;
  background: #fefefe;
  color: black;
  text-align: center;
  z-index: 100;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

@media only screen and (max-width: 1000px) {
  .loading{
    width : 40%;
    height: auto;
    padding: 0px 20px 50px 20px;
  }
}

.loading-img{
  width: calc(100% - 160px);
  height: calc(100% - 160px);
  margin: 80px 80px 0px 80px;
}

@media only screen and (max-width: 1000px) {
  .loading-img{
    margin: 30px 80px 0px 80px;
  }
}

.loading-text{
  width: 100%;
  font-size: 0.85rem;
  font-weight: bold;
}

@media only screen and (max-width: 1000px) {
  .loading-text{
    font-size: 0.85rem;
  }
}