.loadingBox {
  position: fixed;
  top: 0px;
  left: 0px;
  right:0px;
  bottom:0px;
  width: 100%;
  height: 100%;
  z-index: 1500;
  background-color: rgba(0, 0, 0, 0.3);
  display: hide;
}

.loadingBoxContent {
  position: relative;
  padding: 10px 10px 0;
  display: inline-block;
  /*background-color: rgba(255, 255, 255, 0.8);*/
  background-color: white;
  /* margin: 200px auto; */
  margin: calc(50vh - 100px) auto;
  border-radius: 15px;
  /*border: 1px solid #666;*/
  box-shadow: 0px 0px 10px -2px black;
}

.loadingBoxContent p {
  font-size:1em;
  margin-top: 5px;
  color: #333;
}

.loadingBoxContent img {
  vertical-align: middle;
}
