.loading-progress {
  top: 0;
  left: 0;
  position: fixed;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: RGBA(60, 60, 60, 0.25);
}

.progress-div {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  z-index: 9999;
  width: 320px;
  height: 140px;
  margin: -70px 0 0 -160px;
  background-color: white;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.3);
}

#uploading-title,
#uploading-progress-status {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 1rem;
}

/* Mobile (991px and down) */
@media only screen and (max-width: 991px) {
  .mobile-loading {
    position: fixed !important;
    z-index: 999999999 !important;
    height: 100% !important;
    width: 100% !important;
    background-color: white !important;
  }

  .hide-overflow {
    overflow: hidden !important;
  }

  .zero-padding {
    padding: 0 !important;
  }
}
