.divLoading
{
  height:   100%;
  width:    100%;
  position: fixed; /* Stay in place */
  z-index:  1051; /* Sit on top */
  left:     0;
  top:      0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(0,0,0, 0.7); /* Black w/opacity */
  overflow-x:       hidden; /* Disable horizontal scroll */
  transition:       0.5s;

  flex-direction: column;
  justify-content: center;
  display: flex;
}
#imgLoading
{
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background-color: white;
  border-radius: 39px;
}

#textLoading
{
  color: white;
  font-size: 16pt;
  font-weight: bolder;
  text-align: center;
}

.alert
{
  margin: 0 auto;
  width: 70%;
}

.modal-images
{
  max-width:150px;
  margin:0 auto;
  padding-bottom:5px;
}

.accordion-no-padding
{
  padding:0px;
}

.indexThumbnail
{
  max-width:60px;
}

.img-btn-home-menu-thumbnail
{
  margin:      5px;
  min-width:   70px;
  min-height:  70px;
  max-width:   70px;
  max-height:  70px;
  background-color: #eee;
  border: 1px solid #000;
  padding: 5px;
  border-radius: 5px;
}

#expand-image
{
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

#expand-image:hover {opacity: 0.7;}

.expand-image-modal
{
  display: none;
  position: fixed;
  z-index: 1000000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.9);
}

.expand-image-modal-content
{
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}

.expand-image-modal-content
{
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s;
}

@-webkit-keyframes zoom
{
  from {-webkit-transform:scale(0)} 
  to {-webkit-transform:scale(1)}
}

@keyframes zoom
{
  from {transform:scale(0)} 
  to {transform:scale(1)}
}

.reportBtn
{
  height: 40px;
  width: 40px;
}

.close-image-modal
{
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close-image-modal:hover,
.close-image-modal:focus
{
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px)
{
  .expand-image-modal-content
  {
    width: 100%;
  }
}